/* Import Inter font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
  background-color: #FFF8F0;
  color: #5A4033;
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  padding-top: 80px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px;
}

/* Layout helpers */
.site-header,
.site-footer {
  padding: 24px 0;
}

.site-header .logo {
  display: inline-block;
  text-decoration: none;
}

.site-header .logo img {
  height: 40px;
  width: auto;
  display: block;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
}

.main-nav a {
  color: #E25822;
  text-decoration: none;
  font-weight: 500;
}

.hero {
  background: url('../assets/images/hero-bg.jpg') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #5A4033;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 248, 240, 0.7), rgba(255, 248, 240, 0.2));
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 64px;
  color: #FF6F40;
  margin-bottom: 16px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 32px;
}

.btn {
  background: #FFB347;
  color: #3B1F0F;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn:hover {
  filter: brightness(1.1);
  transform: scale(1.05);
}

.section {
  padding: 96px 0;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.card {
  background: #FFF1E5;
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 24px rgba(255, 111, 64, 0.2);
  transform: scale(1.02);
  transition: all 0.3s ease;
  cursor: pointer;
}

.card span {
  color: #C45A34;
  font-weight: 500;
}

.card img {
  max-width: 80px;
  margin-bottom: 16px;
}

.card h3 {
  color: #FF6F40;
  margin-bottom: 8px;
}

/* Header Layout */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #FFF8F0;
  color: #E25822;
  transition: all 0.3s ease-in-out;
  z-index: 1000;
  height: 80px;
}

.site-header.shrink {
  height: 64px;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
}

.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #E25822;
  margin: 5px 0;
  transition: all 0.3s ease-in-out;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
}

.main-nav a {
  color: #E25822;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.main-nav a:hover {
  text-decoration: underline;
  filter: brightness(1.1);
}

.book-demo {
  background: #FFB347;
  color: #3B1F0F;
  border-radius: 12px;
  padding: 12px 24px;
}

.whatsapp-link img,
.whatsapp-floating img {
  width: 24px;
  height: 24px;
  display: block;
}

.whatsapp-floating {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #FFB347;
  border-radius: 50%;
  padding: 12px;
  z-index: 1000;
}

/* Footer Layout */
.site-footer {
  background: #FFF8F0;
  color: #5A4033;
  padding: 48px 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-grid > div {
  flex: 1 1 250px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a,
.footer-contact a {
  color: #FF6F40;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}

.footer-links a:hover,
.footer-contact a:hover {
  text-decoration: underline;
  filter: brightness(1.1);
}

.policies {
  margin-top: 16px;
}

.policies .divider {
  margin: 0 8px;
}

.site-footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 14px;
  margin-top: 48px;
  padding-top: 24px;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -280px;
    width: 240px;
    height: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    background: #FFF8F0;
    gap: 24px;
    transition: right 0.3s ease-in-out;
  }

  body.nav-open .main-nav {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 16px;
  }

  .whatsapp-link {
    order: 3;
  }
}

@media (min-width: 769px) {
  .whatsapp-floating {
    display: none;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Placeholder for additional styling */

/* Header mobile menu styles */
#drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
}

#mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background-color: #FFF8F0;
  padding: 24px;
  font-size: 18px;
  color: #E25822;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  overflow-y: auto;
}

#mobile-drawer.open {
  transform: translateX(0);
}

body.menu-open {
  overflow: hidden;
}

.mobile-menu-icon {
  display: none;
  position: absolute;
  right: 24px;
  top: 24px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .desktop-nav { display: none !important; }
  .mobile-menu-icon { display: block !important; }
  .cta-desktop { display: none !important; }
  .logo img { height: 36px !important; }
}

.desktop-nav a {
  color: #E25822;
  text-decoration: none;
  transition: all 0.3s ease;
}

.desktop-nav a:hover {
  color: #FFB347;
  text-decoration: underline;
}

.nav-links {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.more-menu a {
  display: block;
  padding: 8px 24px;
  color: #E25822;
  text-decoration: none;
  white-space: nowrap;
}

.more-menu a:hover {
  background: #FFE6D5;
}

.more-dropdown:hover .more-menu {
  display: block;
}

#site-header.shrink .header-inner {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

