/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --primary-color: #ffb03b;
  --secondary-color: #33b6b4;
  --dark-color: #1a1a1a;
  --light-color: #f8f9fa;
  --text-color: #333;
  --gray-color: #666;
  --light-gray: #f5f5f5;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Satisfy', cursive;
  margin-top: 0;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

.section-title {
  text-align: center;
  padding-bottom: 50px;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.section-title h2 span {
  color: var(--primary-color);
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--gray-color);
  max-width: 700px;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) { .container { max-width: 540px; } }
@media (min-width: 768px) { .container { max-width: 720px; } }
@media (min-width: 992px) { .container { max-width: 960px; } }
@media (min-width: 1200px) { .container { max-width: 1140px; } }

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: rgba(26, 24, 22, 0.95);
  backdrop-filter: blur(10px);
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

#header.header-scrolled {
  padding: 10px 0;
  background: rgba(26, 24, 22, 0.95);
}

#header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#header .logo a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-primary {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 700;
  font-family: 'Satisfy', cursive;
}

.logo-secondary {
  color: var(--secondary-color);
  font-size: 24px;
  font-weight: 700;
  font-family: 'Satisfy', cursive;
}

/* Navbar */
.navbar {
  position: relative;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  gap: 5px;
}

.navbar li {
  position: relative;
}

.navbar a.nav-link {
  display: block;
  padding: 10px 12px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.3s;
  border-radius: 4px;
  position: relative;
}

.navbar a.nav-link:hover,
.navbar a.nav-link.active {
  color: var(--primary-color);
  background: rgba(255, 176, 59, 0.1);
}

.navbar a.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: all 0.3s;
  transform: translateX(-50%);
}

.navbar a.nav-link:hover::after,
.navbar a.nav-link.active::after {
  width: 80%;
}

.navbar .btn-order-now {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 10px 25px;
  border-radius: 50px;
  margin-left: 10px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.navbar .btn-order-now:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 176, 59, 0.3);
  color: white;
}

.mobile-nav-toggle {
  display: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  line-height: 0;
  transition: 0.5s;
  background: none;
  border: none;
  padding: 5px;
  z-index: 9999;
}

/*--------------------------------------------------------------
# Page Hero
--------------------------------------------------------------*/
#page-hero {
  width: 100%;
  height: 60vh;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  margin-top: 70px;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../../assets/img/about-hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #33b6b4;
}

.hero-content {
  text-align: center;
  color: white;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  animation: fadeInDown 1s ease;
  color: #ffb03b
}

.hero-content p {
  font-size: 1.5rem;
  opacity: 0.9;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease 0.3s both;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# About Intro
--------------------------------------------------------------*/
.about-intro {
  padding: 80px 0;
  background: var(--light-color);
}

.intro-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.intro-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.5s;
}

.intro-image:hover img {
  transform: scale(1.05);
}

.experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--primary-color);
  color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  min-width: 100px;
  box-shadow: 0 10px 20px rgba(255, 176, 59, 0.3);
}

.experience-badge span {
  display: block;
  font-size: 36px;
  font-weight: 700;
  font-family: 'Satisfy', cursive;
}

.experience-badge small {
  font-size: 14px;
  opacity: 0.9;
}

.intro-content {
  padding-left: 40px;
}

.intro-content h2 {
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.intro-content .lead {
  font-size: 1.3rem;
  color: var(--gray-color);
  margin-bottom: 30px;
  line-height: 1.6;
}

.intro-content p {
  color: var(--gray-color);
  line-height: 1.8;
  margin-bottom: 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 700;
}

.stat-item p {
  color: var(--gray-color);
  font-size: 14px;
  margin: 0;
}

/*--------------------------------------------------------------
# Our Values
--------------------------------------------------------------*/
.our-values {
  padding: 80px 0;
  background: white;
}

.value-card {
  text-align: center;
  padding: 40px 20px;
  background: var(--light-color);
  border-radius: 15px;
  height: 100%;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.value-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(255, 176, 59, 0.1);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.value-icon i {
  font-size: 36px;
  color: white;
}

.value-card h4 {
  font-size: 22px;
  color: var(--dark-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.value-card p {
  color: var(--gray-color);
  line-height: 1.6;
  margin: 0;
}

/*--------------------------------------------------------------
# Mission Vision
--------------------------------------------------------------*/
.mission-vision {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.mission-box, .vision-box {
  background: white;
  border-radius: 15px;
  padding: 40px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.mission-box:hover, .vision-box:hover {
  transform: translateY(-5px);
}

.box-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.box-header i {
  font-size: 32px;
  color: var(--primary-color);
}

.box-header h3 {
  font-size: 28px;
  color: var(--dark-color);
  margin: 0;
}

.mission-box p, .vision-box p {
  color: var(--gray-color);
  line-height: 1.8;
  margin-bottom: 25px;
}

.mission-list, .vision-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mission-list li, .vision-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--gray-color);
}

.mission-list i {
  color: var(--primary-color);
  font-size: 18px;
}

.vision-list i {
  color: var(--secondary-color);
  font-size: 18px;
}

.mission-box {
  border-top: 5px solid var(--primary-color);
}

.vision-box {
  border-top: 5px solid var(--secondary-color);
}

/*--------------------------------------------------------------
# Timeline
--------------------------------------------------------------*/
.timeline {
  padding: 80px 0;
  background: white;
  position: relative;
  top: 10px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
  transform: translateX(-50%);
}

.timeline-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  width: 50%;
}

.timeline-item:nth-child(odd) {
  left: 0;
  padding-right: 60px;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  padding-left: 60px;
  text-align: left;
}

.timeline-date {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 18px;
  position: absolute;
  top: 0;
}

.timeline-item:nth-child(odd) .timeline-date {
  right: -25px;
}

.timeline-item:nth-child(even) .timeline-date {
  left: -25px;
}

.timeline-content {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
}

.timeline-content h4 {
  color: var(--dark-color);
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 600;
}

.timeline-content p {
  color: var(--gray-color);
  line-height: 1.6;
  margin: 0;
}

.timeline-item:nth-child(odd) .timeline-content::after {
  content: '';
  position: absolute;
  right: -15px;
  top: 20px;
  width: 15px;
  height: 15px;
  background: var(--primary-color);
  border-radius: 50%;
}

.timeline-item:nth-child(even) .timeline-content::after {
  content: '';
  position: absolute;
  left: -15px;
  top: 20px;
  width: 15px;
  height: 15px;
  background: var(--secondary-color);
  border-radius: 50%;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  padding: 80px 0;
  background: var(--light-color);
}

.team-member {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s;
  height: 100%;
}

.team-member:hover {
  transform: translateY(-10px);
}

.member-img {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.team-member:hover .member-img img {
  transform: scale(1.1);
}

.social {
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.8);
  padding: 15px;
  display: flex;
  justify-content: center;
  gap: 15px;
  transition: bottom 0.3s;
}

.team-member:hover .social {
  bottom: 0;
}

.social a {
  color: white;
  font-size: 18px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: all 0.3s;
}

.social a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.member-info {
  padding: 25px;
  text-align: center;
}

.member-info h4 {
  font-size: 22px;
  color: var(--dark-color);
  margin-bottom: 5px;
  font-weight: 600;
}

.member-info span {
  color: var(--primary-color);
  font-weight: 500;
  display: block;
  margin-bottom: 15px;
}

.member-info p {
  color: var(--gray-color);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: white;
}

.testimonialsSwiper {
  padding: 30px;
}

.testimonial-item {
  background: var(--light-color);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.testimonial-img {
  flex-shrink: 0;
}

.testimonial-img img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-content {
  flex: 1;
}

.testimonial-content p {
  font-style: italic;
  color: var(--gray-color);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
  position: relative;
}

.testimonial-content p::before {
  content: '"';
  font-size: 60px;
  color: var(--primary-color);
  position: absolute;
  left: -30px;
  top: -20px;
  opacity: 0.3;
}

.testimonial-content h4 {
  font-size: 20px;
  color: var(--dark-color);
  margin-bottom: 5px;
  font-weight: 600;
}

.testimonial-content span {
  color: var(--gray-color);
  font-size: 14px;
  display: block;
  margin-bottom: 15px;
}

.stars {
  color: var(--primary-color);
  font-size: 16px;
}

/*--------------------------------------------------------------
# CTA
--------------------------------------------------------------*/
.cta {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
}

.cta h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin: 0;
}

.btn-cta {
  display: inline-block;
  padding: 15px 40px;
  background: white;
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s;
  border: 2px solid white;
}

.btn-cta:hover {
  background: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255,255,255,0.2);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: #1a1a1a;
  color: #fff;
  padding: 60px 0 30px;
  border-top: 4px solid var(--primary-color);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

/* Brand Section */
.footer-brand {
  text-align: left;
}

.footer-logo {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 15px;
}

.footer-tagline {
  color: #b0b0b0;
  font-size: 16px;
  line-height: 1.6;
  max-width: 300px;
  margin: 0;
}

/* Contact Section */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-item i {
  color: var(--primary-color);
  font-size: 20px;
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 14px;
  color: #b0b0b0;
  margin: 0 0 5px 0;
  font-weight: 500;
}

.contact-item a,
.contact-item p {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  margin: 0;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: var(--primary-color);
}

/* Links Section */
.footer-links h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 600;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.links-grid a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s;
  padding: 5px 0;
  display: block;
}

.links-grid a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

/* Social Media */
.footer-social h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 600;
}

.social-icons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
  background: rgba(255, 176, 59, 0.1);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.social-btn i {
  font-size: 20px;
  color: var(--primary-color);
}

.social-btn span {
  font-size: 14px;
  font-weight: 500;
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.copyright {
  color: #b0b0b0;
  font-size: 14px;
}

.copyright strong {
  color: var(--primary-color);
}

.design-credit {
  margin-top: 10px;
  font-size: 13px;
}

.design-credit a {
  color: var(--secondary-color);
  text-decoration: none;
}

.design-credit a:hover {
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.back-to-top i {
  font-size: 24px;
  color: white;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--secondary-color);
  color: white;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .hero-content h2 {
    font-size: 3rem;
  }
  
  .navbar a.nav-link {
    padding: 10px 8px;
    font-size: 13px;
  }
  
  .navbar .btn-order-now {
    padding: 8px 20px;
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Mobile Menu (991px and below)
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
    position: relative;
    z-index: 9999;
  }

  .timeline::before {
    top: 206px;
  }
  
  .mobile-nav-toggle.bi-x {
    color: var(--primary-color);
  }

  .navbar ul {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 80px 20px 40px;
    margin: 0;
    background: rgba(26, 24, 22, 0.98);
    overflow-y: auto;
    transition: all 0.3s ease-in-out;
    z-index: 9998;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
  }

  .navbar ul.mobile-nav-active {
    display: flex !important;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .navbar ul li {
    width: 100%;
    animation: fadeInUp 0.3s ease forwards;
    opacity: 0;
    transform: translateY(20px);
  }

  .navbar ul li:nth-child(1) { animation-delay: 0.1s; }
  .navbar ul li:nth-child(2) { animation-delay: 0.15s; }
  .navbar ul li:nth-child(3) { animation-delay: 0.2s; }
  .navbar ul li:nth-child(4) { animation-delay: 0.25s; }
  .navbar ul li:nth-child(5) { animation-delay: 0.3s; }
  .navbar ul li:nth-child(6) { animation-delay: 0.35s; }
  .navbar ul li:nth-child(7) { animation-delay: 0.4s; }
  .navbar ul li:nth-child(8) { animation-delay: 0.45s; }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .navbar a.nav-link {
    padding: 15px 20px;
    font-size: 16px;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    text-align: center;
    margin-bottom: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }

  .navbar a.nav-link:hover {
    background: rgba(255, 176, 59, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
  }

  .navbar .btn-order-now {
    margin: 20px auto 0;
    width: 100%;
    max-width: 250px;
    text-align: center;
    padding: 12px 25px;
    font-size: 16px;
    order: 9;
    animation: fadeInUp 0.3s ease 0.5s forwards;
    opacity: 0;
    transform: translateY(20px);
  }

  /* Prevent body scroll when menu is open */
  body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
  }

  /* Hero responsive */
  #hero {
    margin-top: 70px;
    min-height: 500px;
  }
  
  .hero-content {
    padding: 0 20px;
    text-align: center;
  }
  
  .hero-content h2 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
  
  /* Section title */
  .section-title h2 {
    font-size: 2rem;
  }
  
  .section-title p {
    font-size: 1rem;
  }
  
  /* CTA */
  .cta .row {
    text-align: center;
  }
  
  .cta .text-lg-end {
    text-align: center !important;
    margin-top: 20px;
  }
  
  .btn-cta {
    padding: 12px 30px;
    font-size: 1rem;
  }
  
  /* Footer Tablet */
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
  }
  
  .footer-tagline {
    max-width: 100%;
    margin: 0 auto 20px;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Mobile (768px and below)
--------------------------------------------------------------*/
@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .btn-hero {
    padding: 10px 25px;
    font-size: 13px;
  }
  
  .features,
  .popular,
  .cta {
    padding: 60px 0;
  }
  
  .feature-box,
  .product-card {
    margin-bottom: 20px;
  }
  
  .cta h3 {
    font-size: 2rem;
  }
  
  .cta p {
    font-size: 1rem;
  }
  
  /* Footer Mobile */
  .footer {
    padding: 40px 0 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
    margin-bottom: 30px;
  }
  
  .footer-brand {
    text-align: center;
  }
  
  .footer-tagline {
    max-width: 100%;
    margin: 0 auto 20px;
    text-align: center;
  }
  
  .footer-contact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  
  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .contact-item i {
    margin-top: 0;
    width: 50px;
    height: 50px;
    background: rgba(255, 176, 59, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
  }
  
  .contact-item h4 {
    font-size: 13px;
    margin-bottom: 8px;
  }
  
  .contact-item a,
  .contact-item p {
    font-size: 15px;
  }
  
  .footer-links {
    text-align: center;
  }
  
  .links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    justify-content: center;
  }
  
  .links-grid a {
    padding: 10px;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    min-width: auto;
  }
  
  .links-grid a:hover {
    background: rgba(255, 176, 59, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
  }
  
  .footer-social {
    text-align: center;
  }
  
  .social-icons {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .social-btn {
    min-width: auto;
    width: calc(50% - 10px);
    justify-content: center;
    padding: 10px 15px;
    flex-direction: column;
    gap: 8px;
  }
  
  .social-btn i {
    font-size: 22px;
  }
  
  .social-btn span {
    font-size: 12px;
  }
  
  .footer-bottom {
    padding-top: 20px;
    margin-top: 20px;
  }
  
  .copyright {
    font-size: 13px;
    line-height: 1.5;
  }
  
  .design-credit {
    font-size: 12px;
    margin-top: 8px;
  }
}

/*--------------------------------------------------------------
# Small Mobile (576px and below)
--------------------------------------------------------------*/
@media (max-width: 576px) {
  .hero-content h2 {
    font-size: 1.8rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .section-title p {
    font-size: 0.9rem;
  }
  
  .feature-box {
    padding: 20px;
  }
  
  .feature-box h4 {
    font-size: 18px;
  }
  
  .product-info h4 {
    font-size: 16px;
  }
  
  .price {
    font-size: 20px;
  }
  
  .cta h3 {
    font-size: 1.8rem;
  }
  
  .cta p {
    font-size: 0.9rem;
  }
  
  .btn-cta {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
  
  /* Footer Small Mobile */
  .footer-content {
    gap: 25px;
  }
  
  .contact-item {
    padding: 12px;
  }
  
  .contact-item i {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  
  .links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .links-grid a {
    padding: 8px 5px;
    font-size: 13px;
  }
  
  .social-icons {
    gap: 8px;
  }
  
  .social-btn {
    width: calc(50% - 8px);
    padding: 10px;
    gap: 5px;
  }
  
  .social-btn i {
    font-size: 20px;
  }
  
  .social-btn span {
    font-size: 11px;
  }
  
  .footer-links h4,
  .footer-contact h4,
  .footer-social h4 {
    font-size: 16px;
    margin-bottom: 15px;
  }
}

/*--------------------------------------------------------------
# Extra Small Mobile (380px and below)
--------------------------------------------------------------*/
@media (max-width: 380px) {
  .links-grid {
    grid-template-columns: 1fr;
  }
  
  .links-grid a {
    width: 100%;
  }
  
  .social-btn {
    width: 100%;
  }
  
  .hero-content h2 {
    font-size: 1.6rem;
  }
  
  .btn-hero {
    padding: 8px 20px;
    font-size: 12px;
  }
  
  .navbar a.nav-link {
    padding: 12px 15px;
    font-size: 15px;
  }
  
  .navbar .btn-order-now {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Tablet Footer Fix (991px-768px)
--------------------------------------------------------------*/
@media (min-width: 768px) and (max-width: 991px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
  }
  
  .footer-tagline {
    max-width: 80%;
    margin: 0 auto;
  }
  
  .footer-links h4,
  .footer-contact h4,
  .footer-social h4 {
    font-size: 16px;
  }
  
  .links-grid {
    gap: 8px;
  }
  
  .social-btn {
    padding: 10px 15px;
  }
}