@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-blue: #0b1c3d; /* deep dark blue */
  --accent-pink: #e91e63;
  --accent-red: #d32f2f;
  --bg-light: #f9f9f9;
  --text-dark: #333333;
  --text-light: #ffffff;
  --border-color: #eaeaea;
  --gradient: linear-gradient(135deg, var(--accent-pink), var(--accent-red));
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  background-color: var(--text-light);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* TOP BAR */
.top-bar {
  background-color: var(--primary-blue);
  color: var(--text-light);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 8px 5%;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar .info {
  display: flex;
  gap: 20px;
  margin-right: 20px;
}
.top-bar .info span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.top-bar .socials {
  display: flex;
  gap: 10px;
}
.top-bar .socials a {
  background: #fff;
  color: var(--primary-blue);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 12px;
  transition: transform 0.3s;
}
.top-bar .socials a:hover {
  transform: translateY(-2px);
  background: var(--accent-pink);
  color: #fff;
}

/* HEADER & NAVIGATION */
header {
  background-color: var(--primary-blue);
  padding: 15px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.logo-container {
  display: flex;
  align-items: center;
}
nav {
  display: flex;
  gap: 30px;
  align-items: center;
}
nav > a, .nav-dropdown > a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s;
  padding: 10px 0;
}
nav > a:hover, nav > a.active, .nav-dropdown > a:hover, .nav-dropdown > a.active {
  color: var(--accent-pink);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
  display: inline-block;
}
.nav-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 180px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
  z-index: 1;
  border-radius: 6px;
  overflow: hidden;
}
.nav-dropdown-content a {
  color: var(--text-dark);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 14px;
  transition: background 0.3s;
}
.nav-dropdown-content a:hover {
  background-color: var(--bg-light);
  color: var(--accent-pink);
}
.nav-dropdown:hover .nav-dropdown-content {
  display: block;
}

.btn-cta {
  background: var(--gradient);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
}

/* HERO */
.hero {
  height: 80vh;
  background: url('../images/hero.png') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(11, 28, 61, 0.6);
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding: 20px;
}
.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.5rem;
  margin-bottom: 40px;
  font-weight: 300;
}

/* BRAND PARTNERS */
.brands-section {
  padding: 40px 5%;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 40px;
  border-bottom: 1px solid var(--border-color);
}
.brands-section h2 {
  font-size: 24px;
  color: var(--primary-blue);
  width: 200px;
  line-height: 1.2;
}
.brands-section h2 span {
  border-bottom: 3px solid var(--accent-pink);
  padding-bottom: 5px;
}
.brands-scroll {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  overflow: hidden;
}
.brands-scroll img {
  height: 40px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.3s, opacity 0.3s;
}
.brands-scroll img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ABOUT US */
.about-section {
  padding: 80px 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--bg-light);
}
.about-content h2 {
  font-size: 36px;
  color: var(--primary-blue);
  margin-bottom: 20px;
}
.about-content h2 span {
  border-bottom: 4px solid var(--accent-pink);
  padding-bottom: 5px;
}
.about-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.8;
}
.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* SERVICES */
.services-section {
  padding: 80px 5%;
  text-align: center;
  background: #fff;
}
.services-section h2 {
  font-size: 36px;
  color: var(--primary-blue);
  margin-bottom: 10px;
}
.services-section > p {
  color: #666;
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 16px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  background: var(--bg-light);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  text-align: left;
  border: 1px solid var(--border-color);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.service-card-body {
  padding: 30px;
  text-align: center;
}
.service-card h3 {
  font-size: 22px;
  color: var(--primary-blue);
  margin-bottom: 15px;
}
.service-card p {
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
}
.service-card .icon-arrow {
  color: var(--primary-blue);
  font-size: 20px;
  transition: transform 0.3s, color 0.3s;
}
.service-card:hover .icon-arrow {
  transform: translateX(10px);
  color: var(--accent-pink);
}

/* WHY CHOOSE US */
.why-section {
  padding: 80px 5%;
  background: var(--bg-light);
  text-align: center;
}
.why-section h2 {
  font-size: 36px;
  color: var(--primary-blue);
  margin-bottom: 10px;
}
.why-section h2 span {
  color: var(--accent-pink);
}
.why-section > p {
  color: #666;
  margin-bottom: 50px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  border-color: var(--accent-pink);
}
.why-card i {
  font-size: 40px;
  color: var(--accent-pink);
  margin-bottom: 20px;
}
.why-card h3 {
  font-size: 20px;
  color: var(--primary-blue);
  margin-bottom: 15px;
}
.why-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* STATS */
.stats-section {
  padding: 80px 5%;
  background: #fff;
  border-top: 1px solid var(--border-color);
  text-align: center;
}
.stats-section h2 {
  font-size: 36px;
  color: var(--primary-blue);
  margin-bottom: 10px;
}
.stats-section > p {
  color: #666;
  margin-bottom: 40px;
}
.stats-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  flex: 1;
}
.stat-box {
  text-align: center;
  border: 1px solid var(--accent-pink);
  padding: 30px;
  border-radius: 8px;
  background: #fff;
}
.stat-box h3 {
  font-size: 48px;
  color: var(--primary-blue);
  font-weight: 800;
  margin-bottom: 10px;
}
.stat-box p {
  font-size: 14px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stats-logo img {
  max-height: 100px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: 0.3s;
}
.stats-logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: #fff !important;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  box-shadow: 2px 2px 15px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 2px 2px 20px rgba(37,211,102,0.6);
}

/* GALLERY SECTION */
.gallery-section {
  padding: 80px 5%;
  text-align: center;
  background: #fff;
}
.gallery-section h2 {
  font-size: 32px;
  color: var(--primary-blue);
  margin-bottom: 10px;
}
.gallery-line {
  width: 100px;
  height: 3px;
  background: var(--accent-pink);
  margin: 0 auto 40px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  text-decoration: none;
  display: block;
}
.gallery-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
  margin-bottom: 15px;
}
.gallery-item:hover img {
  transform: scale(1.03);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.gallery-item h3 {
  font-size: 22px;
  color: var(--primary-blue);
  font-weight: 600;
  transition: color 0.3s;
}
.gallery-item:hover h3 {
  color: var(--accent-pink);
}

/* TESTIMONIALS SECTION */
.testimonials-section {
  background: var(--primary-blue);
  padding: 80px 5%;
  text-align: center;
  color: #fff;
}
.testimonials-section h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #e3a950; 
}
.testimonials-section p {
  color: #ccc;
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 16px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: #fff;
  color: var(--text-dark);
  padding: 40px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.testimonial-card h4 {
  font-size: 18px;
  color: var(--primary-blue);
  margin-bottom: 10px;
}
.testimonial-card .stars {
  color: #f39c12; 
  margin-bottom: 15px;
}
.testimonial-card p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* FAQ SECTION */
.faq-section {
  padding: 80px 5%;
  background: #fff;
  text-align: center;
}
.faq-section h2 {
  font-size: 32px;
  color: var(--primary-blue);
  margin-bottom: 50px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}
.faq-item {
  background: var(--bg-light);
  border-radius: 8px;
  padding: 20px 25px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.faq-question {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-blue);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-question i {
  color: #666;
  transition: transform 0.3s;
}
.faq-answer {
  display: none;
  padding-top: 15px;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  border-top: 1px solid var(--border-color);
  margin-top: 15px;
}

/* CTA BANNER */
.cta-banner {
  background: var(--primary-blue);
  padding: 60px 5%;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: center;
}
.cta-content {
  border: 1px solid rgba(255,255,255,0.2);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1000px;
  border-radius: 4px;
}
.cta-content h2 {
  color: #fff;
  font-size: 28px;
  margin: 0;
  font-weight: 500;
}
.cta-content .btn-cta {
  background: #e3a950;
  color: #000 !important;
  font-weight: 600;
}
.cta-content .btn-cta:hover {
  background: #fff;
  box-shadow: 0 0 15px rgba(255,255,255,0.2);
}

/* FOOTER */
.main-footer {
  background-color: var(--primary-blue);
  color: var(--text-light);
  padding: 60px 5% 20px;
}
.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-column h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
  padding-bottom: 10px;
}
.footer-column h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--gradient);
}
.footer-logo {
  height: 60px;
  background: rgba(255,255,255,0.9);
  padding: 5px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.about-col p {
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 14px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  background: rgba(255,255,255,0.1);
  color: #fff;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}
.footer-socials a:hover {
  background: var(--accent-pink);
  transform: translateY(-3px);
}
.footer-column ul {
  list-style: none;
}
.footer-column ul li {
  margin-bottom: 12px;
}
.footer-column ul li a {
  color: #ccc;
  transition: color 0.3s;
  font-size: 15px;
}
.footer-column ul li a:hover {
  color: var(--accent-pink);
}
.contact-col ul li {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
}
.contact-col ul li i {
  color: var(--accent-pink);
  margin-top: 4px;
}
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #aaa;
  font-size: 13px;
}

/* PAGE HEADER (For Inner Pages) */
.page-header {
  background: var(--primary-blue);
  padding: 60px 5%;
  text-align: center;
  color: #fff;
}
.page-header h1 {
  font-size: 40px;
  margin-bottom: 15px;
}
.page-header p {
  font-size: 16px;
  color: #ccc;
}

/* RESPONSIVE DESIGN & MOBILE MENU */
@media (max-width: 768px) {
  .menu-toggle {
    display: block !important;
  }
  nav#nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    left: auto;
    width: 260px;
    height: 100vh;
    background-color: var(--primary-blue);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px 20px;
    gap: 20px;
    transition: right 0.3s ease;
    z-index: 9999;
    box-shadow: -2px 0 15px rgba(0,0,0,0.5);
  }
  nav#nav-menu.open {
    right: 0;
  }
  #close-menu-btn {
    display: block !important;
  }
  .nav-dropdown-content {
    position: relative;
    box-shadow: none;
    background: transparent;
    padding-left: 15px;
    border-left: 2px solid rgba(255,255,255,0.1);
    top: 0;
  }
  .nav-dropdown-content a {
    color: #fff !important;
    padding: 10px 16px;
  }
  
  /* Make page layouts responsive */
  .hero {
    height: 50vh !important;
    min-height: 400px;
  }
  .hero h1, .page-header h1 {
    font-size: 32px !important;
  }
  .footer-container,
  .about-section,
  .services-grid,
  .why-grid,
  .stats-grid,
  .gallery-grid,
  .testimonials-grid,
  .faq-grid {
    grid-template-columns: 1fr !important;
  }
  .stats-container {
    flex-direction: column;
    gap: 20px;
  }
  .cta-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .cta-content h2 {
    font-size: 22px;
  }
  section > div[style*="display:grid"] {
    grid-template-columns: 1fr !important;
  }
  .top-bar .info {
    display: none; /* Hide top bar info on very small screens for cleaner look */
  }
}
