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

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #f9f6f2;
  color: #222;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Prevent horizontal scroll */
  overflow-y: auto; /* Allow vertical scroll but hide scrollbar */
  width: 100%;
  box-sizing: border-box;
}

/* Hide scrollbar during AOS animations to prevent layout shift */
html {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}

html::-webkit-scrollbar {
  display: none; /* WebKit browsers (Chrome, Safari, Edge) */
}

body::-webkit-scrollbar {
  display: none; /* WebKit browsers */
}

/* Additional scrollbar hiding for all elements */
* {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}

*::-webkit-scrollbar {
  display: none; /* WebKit browsers */
}

/* Prevent layout shifts during AOS animations */
[data-aos] {
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Specific optimization for commitment section */
.commitment [data-aos] {
  transform: translateZ(0);
  will-change: transform, opacity;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Mobile responsive container */
@media (max-width: 768px) {
  .container {
    width: 95%;
    max-width: none;
    padding: 0 10px;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .container {
    width: 98%;
    padding: 0 5px;
  }
}

/* Announcement Bar Styles */
.announcement-bar {
  background: #000 !important;
  height: 50px !important;
  position: sticky;
  top: 0;
  overflow: hidden;
  z-index: 1002;
  width: 100%;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #333 !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3) !important;
}

/* Close button for announcement bar */
.close-announcement-btn {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1003;
  transition: background-color 0.2s ease;
}

.close-announcement-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.close-announcement-btn span {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}

.announcement-swiper {
  height: 100% !important;
  width: 100% !important;
  background: #000 !important;
}

.announcement-swiper .swiper-wrapper {
  background: #000 !important;
}

.announcement-swiper .swiper-slide-active {
  background: #000 !important;
}

.announcement-swiper .swiper-slide {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 0 !important;
  background: #000 !important;
  height: 50px !important;
  overflow: hidden !important;
  position: relative !important;
}

.announcement-text {
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 50px !important;
  white-space: nowrap !important;
  margin: 0 !important;
  padding: 0 20px !important;
  text-align: center !important;
  width: 100% !important;
  height: 50px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Simple fade effect for announcements */
.announcement-swiper .swiper-slide {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.announcement-swiper .swiper-slide-active {
  opacity: 1;
}

/* Responsive Announcement Bar */
@media (max-width: 768px) {
  .announcement-bar {
    height: auto !important;
    min-height: 40px !important;
  }
  
  .announcement-text {
    font-size: 12px !important;
    line-height: 1.4 !important;
    padding: 10px 15px !important;
    height: auto !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  .announcement-swiper .swiper-slide {
    height: auto !important;
    min-height: 40px !important;
  }
  
  header {
    /* top will be set dynamically by JavaScript */
  }
}

@media (max-width: 480px) {
  .announcement-bar {
    height: auto !important;
    min-height: 35px !important;
  }
  
  .announcement-text {
    font-size: 11px !important;
    line-height: 1.4 !important;
    padding: 8px 10px !important;
    height: auto !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  .announcement-swiper .swiper-slide {
    height: auto !important;
    min-height: 35px !important;
  }
  
  header {
    /* top will be set dynamically by JavaScript */
  }
}

header {
  background: #FFF0DA;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  padding: 0;
  margin-bottom: 16px;
  position: sticky;
  top: 50px; /* Default fallback, will be overridden by JavaScript */
  z-index: 1001;
}

/* Header when announcement bar is closed */
header.announcement-closed {
  top: 0 !important;
}

/* Modal positioning when announcement bar is closed */
body.announcement-closed .modal-content {
  margin: 90px auto 20px auto;
  max-height: calc(100vh - 130px);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  height: 70px;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}
.logo {
  font-weight: bold;
  font-size: 1.7em;
  color: #e6b800;
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1000;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #222;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

nav.nav-menu {
  display: flex;
  align-items: center;
}

nav.nav-menu a {
  margin: 0 15px;
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: color 0.2s;
}
nav.nav-menu a.faq-btn {
  background: #222;
  color: #fff;
  padding: 7px 18px;
  border-radius: 10px;
  margin-left: 10px;
}
nav.nav-menu a:hover {
  color: #e6b800;
}

.hero {
  background: #ffe066;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 60px 0 40px 0;
  box-sizing: border-box;
  overflow-x: hidden;
  position: relative;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  position: relative;
  z-index: 2;
}

.hero-text {
  width: 50%;
  box-sizing: border-box;
  overflow-x: hidden;
  position: relative;
  z-index: 3;
}

.hero-text h1 {
  font-size: clamp(1.8em, 4vw, 2.5em);
  margin-bottom: 18px;
  line-height: 1.2;
  word-wrap: break-word;
}

.hero-text p {
  font-size: clamp(1em, 2.5vw, 1.2em);
  margin-bottom: 24px;
  line-height: 1.5;
  word-wrap: break-word;
}

.hero-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
}

.hero-buttons button {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: clamp(0.9em, 2vw, 1em);
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
  min-height: 44px;
  min-width: 120px;
  box-sizing: border-box;
  white-space: normal;
}

.hero-buttons .secondary {
  background: #fff;
  color: #000;
  border: 2px solid #e6b800;
}

.hero-buttons button:hover {
  background: #d4a700;
}

.hero-image {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-product-image {
  max-width: 780px;
  height: auto;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

/* .hero-product-image:hover {
  transform: translateY(-5px);
} */

.about {
  background: #fff1db;
  padding: 50px 0 30px 0;
  text-align: center;
}
.about h2 {
  font-size: clamp(1.5em, 3vw, 2em);
  margin-bottom: 8px;
  line-height: 1.3;
}
.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 32px;
  justify-items: center;
}
.about-card {
  /* background: #fff; */
  /* border-radius: 16px; */
  /* box-shadow: 0 2px 12px rgba(0,0,0,0.04); */
  /* padding: 24px 18px; */
  /* width: 280px; */
  text-align: center;
}
.about-card img {
  width: 100%;
  max-width: 378px;
  height: auto;
  aspect-ratio: 378/458;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 16px;
}
.about-card h3 {
  margin: 10px 0 8px 0;
  color: #e6b800;
  font-size: clamp(1.1em, 2.5vw, 1.3em);
  line-height: 1.4;
}

.commitment {
    background: #FEECDB;
  padding: 50px 0 50px 0;
  text-align: center;
  overflow: hidden; /* Prevent scrollbars during animations */
}
.commitment h2 {
  font-size: clamp(1.5em, 3vw, 2em);
  margin-bottom: 8px;
  line-height: 1.3;
}
.commitment-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 32px;
}
.commitment-left, .commitment-right {
  flex: 1;
  justify-content: left;
  text-align: left;
  overflow: hidden; /* Prevent scrollbars during animations */
  /* background: #fffbe6; */
  /* border-radius: 16px; */
  /* padding: 32px 24px; */
  /* box-shadow: 0 2px 12px rgba(0,0,0,0.04); */
}
.commitment-left h2 {
  color: #e6b800;
}
.commitment-left button, .commitment-right button {
  /* margin-top: 18px; */
  background: #FEBC45;
  color: #704D27;
  border: none;
  padding: 12px 28px;
  margin: 15px 10px 0 0;
  border-radius: 25px;
  font-size: 1em;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
}

.commitment-left button:hover, .commitment-right button:hover {
  background: #704D27;
  color: #FEBC45;
}

.ghee {
  background: #FEECDB;
  padding: 50px 0;
}
.ghee-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
  gap: 40px;
}
.ghee-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  /* box-shadow: 0 4px 24px rgba(0,0,0,0.08); */
}
.ghee-text h2 {
  font-size: clamp(1.5em, 3vw, 2em);
  margin-bottom: 8px;
  line-height: 1.3;
}
.ghee-text ul {
  margin: 16px 0 18px 0;
  padding-left: 18px;
  text-align: left;
}
.ghee-text ul li {
  margin-bottom: 8px;
}
.ghee button {
  /* margin-top: 18px; */
  background: #FEBC45;
  color: #704D27;
  border: none;
  padding: 12px 28px;
  margin: 15px 10px 0 0;
  border-radius: 25px;
  font-size: 1em;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
}
.ghee button:hover {
  background: #704D27;
  color: #FEBC45;
}

/* Ghee Ordering Styles */
.ghee-ordering {
  margin-top: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.ghee-ordering h4 {
  color: #e6b800;
  margin-bottom: 20px;
  font-size: 1.3em;
}

.ghee-order-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group label {
  font-weight: 600;
  color: #333;
  font-size: 0.95em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 0.95em;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e6b800;
  box-shadow: 0 0 0 2px rgba(230, 184, 0, 0.1);
}

.total-section {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 5px;
  text-align: center;
  font-size: 1.1em;
  color: #333;
  border: 2px solid #e6b800;
}

.message {
  padding: 10px 15px;
  border-radius: 5px;
  margin-bottom: 15px;
  font-weight: 500;
}

.message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1010;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fff;
    margin: 140px auto 20px auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: calc(100vh - 180px);
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
    transition: color 0.2s;
}

.close:hover,
.close:focus {
    color: #000;
}

/* Order Form Styles */
.order-form {
    margin-top: 20px;
}

.order-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.order-form .form-group {
    margin-bottom: 20px;
    width: 100%;
}

.order-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.order-form .form-group input,
.order-form .form-group select,
.order-form .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
    background-color: #fff;
    box-sizing: border-box;
    height: 45px;
}

.order-form .form-group textarea {
    height: 80px;
    resize: vertical;
    min-height: 80px;
}

.order-form .form-group input:focus,
.order-form .form-group select:focus,
.order-form .form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

/* Order Summary Styles */
.order-summary,
.subscription-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border: 1px solid #e9ecef;
    width: 100%;
    box-sizing: border-box;
}

.order-summary h4,
.subscription-summary h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.summary-details p {
    margin: 8px 0;
    font-size: 14px;
    color: #666;
}

.summary-details strong {
    color: #333;
    font-weight: 600;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
    width: 100%;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    min-width: 120px;
}

.btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #6c757d, #545b62);
    color: white;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #545b62, #3d4449);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1010;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fff;
    margin: 140px auto 20px auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: calc(100vh - 180px);
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
    transition: color 0.2s;
}

.close:hover,
.close:focus {
    color: #000;
}

/* Success Modal Styles */
.success-content {
    text-align: center;
    padding: 20px;
}

.success-icon {
    font-size: 60px;
    color: #28a745;
    margin-bottom: 20px;
}

.success-content h2 {
    color: #28a745;
    margin-bottom: 15px;
}

.success-content p {
    color: #666;
    margin-bottom: 25px;
    font-size: 16px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    min-width: 180px;
    padding: 15px 30px;
    font-size: 18px;
}

/* Product Card Buttons */
.product-card .btn {
    width: 100%;
    margin-top: 20px;
    padding: 12px 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        padding: 20px;
        width: 95%;
    }
    
    .order-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        min-width: auto;
    }
    
    .close {
        right: 15px;
        top: 10px;
        font-size: 24px;
    }
    
    .order-form .form-group input,
    .order-form .form-group select,
    .order-form .form-group textarea {
        height: 50px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .order-form .form-group textarea {
        height: 100px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        margin: 140px auto 20px auto;
        padding: 15px;
        width: 98%;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Loading Spinner */
.loading-spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #007bff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Message Styles */
.message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Location Details Styles */
.location-details {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    border: 1px solid #e9ecef;
}

.location-details p {
    margin: 5px 0;
    font-size: 14px;
}

.location-details strong {
    color: #333;
    font-weight: 600;
}

.serviceable-area-info {
    background: #d4edda;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    border: 1px solid #c3e6cb;
}

.serviceable-area-info p {
    margin: 5px 0;
    font-size: 14px;
    color: #155724;
}

.serviceable-area-info strong {
    color: #155724;
    font-weight: 600;
}

/* Success/Error Messages in Location Modal */
.success-message {
    background: #d4edda;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #c3e6cb;
    margin: 20px 0;
}

.success-message h3 {
    color: #155724;
    margin: 0 0 10px 0;
}

.error-message {
    background: #f8d7da;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #f5c6cb;
    margin: 20px 0;
}

.error-message h3 {
    color: #721c24;
    margin: 0 0 10px 0;
}

.location-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* Location actions buttons are now styled above with the new theme */

.location-info {
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
  border-radius: 8px;
  margin: 15px 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.location-details {
  margin-top: 10px;
}

.location-details p {
  margin: 5px 0;
  font-size: 0.9em;
  color: #333;
}

.location-details strong {
  color: #555;
  font-weight: 600;
}

.serviceable-area-info {
  background: rgba(212, 237, 218, 0.8);
  border: 1px solid #c3e6cb;
  border-radius: 6px;
  padding: 10px;
  margin-top: 10px;
}

.serviceable-area-info p {
  margin: 5px 0;
  font-size: 0.9em;
  color: #155724;
}

.serviceable-area-info strong {
  color: #0f5132;
  font-weight: 600;
}
/* Testimonials Section */
.testimonials {
  background: #ffe066;
  padding: 50px 0 30px 0;
  text-align: center;
}

.testimonials h2 {
  font-size: clamp(1.5em, 3vw, 2em);
  margin-bottom: 8px;
  line-height: 1.3;
}

.testimonials p {
  font-size: 1.1em;
  margin-bottom: 32px;
  color: #333;
}

/* Testimonials Swiper */
.testimonials-swiper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  padding: 40px 30px;
  margin: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-stars {
  font-size: 1.5em;
  color: #e6b800;
  margin-bottom: 15px;
  text-align: center;
}

.testimonial-content p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
}

.testimonial-content p::before {
  content: '"';
  font-size: 3em;
  color: #e6b800;
  position: absolute;
  top: -10px;
  left: -10px;
  font-family: serif;
}

.testimonial-content p::after {
  content: '"';
  font-size: 3em;
  color: #e6b800;
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-family: serif;
}

.testimonial-author {
  margin-top: 20px;
}

.testimonial-author strong {
  display: block;
  font-size: 1.1em;
  color: #e6b800;
  margin-bottom: 5px;
}

.testimonial-author span {
  color: #666;
  font-size: 0.9em;
}

/* Testimonials Swiper Pagination */
.testimonials-swiper .swiper-pagination {
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  transform: none !important;
  margin-top: 30px !important;
  text-align: center !important;
}

.testimonials-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #ddd;
  opacity: 1;
  margin: 0 5px;
}

.testimonials-swiper .swiper-pagination-bullet-active {
  background-color: #e6b800;
}

/* Responsive Testimonials */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 30px 20px;
    margin: 10px;
  }
  
  .testimonial-content p {
    font-size: 1em;
  }
  
  .testimonial-content p::before,
  .testimonial-content p::after {
    font-size: 2em;
  }
}

.about-products {
  background: #FFEEDC;
  padding: 50px 0 30px 0;
  text-align: center;
}
.about-products h2 {
  font-size: clamp(1.5em, 3vw, 2em);
  margin-bottom: 8px;
  line-height: 1.3;
}
.about-products .about-cards {
  margin-top: 32px;
}
.about-products .about-card button {
  margin-top: 12px;
}
.faqsection{
  background: #FEECDB;
}
.faqcontent{
  display: flex;
  align-items: center;
  gap: 40px;
}
.bgspacer{
  background: #222;
  background-image: url('./images/bottomImg2.png');
  background-repeat: no-repeat;
  background-position: center;
  height: 40vh;
  width: 100%;
  background-size: cover;
  margin-bottom: 2px;
}
.get-in-touch {
  background: #222;
  background-image: url('./images/faqbg.png');
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  background-size: cover;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 60px 0 40px 0;
}
.get-in-touch-container {
  align-items: center;
  justify-content: right;
  gap: 40px;
}
.get-in-touch-faq {
  width: 50%;
  max-width: 500px;
}
.get-in-touch-image img {
  max-width: 220px;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.get-in-touch-faq h2 {
  color: #ffe066;
}
.get-in-touch-faq ul {
  margin: 18px 0 0 0;
  padding-left: 18px;
}
.get-in-touch-faq li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

footer {
  background: #FEECDB;
  padding: 40px 0 30px 0;
  text-align: center;
}
.footer-container {
  max-width: 600px;
  margin: 0 auto;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 18px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.contact-form input, .contact-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #e6b800;
  font-size: clamp(0.9em, 2vw, 1em);
  font-family: inherit;
  min-height: 44px;
}
.contact-form textarea {
  min-height: 80px;
  resize: vertical;
  font-family: inherit;
}
.contact-form button {
  align-self: center;
  background: #e6b800;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: clamp(0.9em, 2vw, 1em);
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
  min-height: 44px;
  min-width: 120px;
}
.contact-form button:hover {
  background: #d4a700;
}

/* Contact Form Message Styles */
.contact-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  animation: slideIn 0.3s ease;
}

.contact-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.contact-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* reCAPTCHA Styles */
.g-recaptcha {
  margin: 15px 0;
  display: flex;
  justify-content: center;
}

.g-recaptcha > div {
  margin: 0 auto;
}

.social-footer {
  background: #222;
  color: #fff;
  padding: 24px 0 18px 0;
  font-size: 1em;
}
.social-footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.social-links {
  display: flex;
  gap: 18px;
}
.social-icon {
  color: #ffe066;
  font-size: 1.7em;
  text-decoration: none;
  transition: color 0.2s;
}
.social-icon:hover {
  color: #e6b800;
}
.footer-address {
  color: #fff;
  font-size: 1em;
}
.footer-address a {
  color: #ffe066;
  text-decoration: underline;
}
.footer-address a:hover {
  color: #e6b800;
}

/* Responsive Styles */
@media (max-width: 900px) {
  .hero-content, .about-cards, .commitment-content, .ghee-content, .cards-row, .get-in-touch-container {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .about-card, .contact-card {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
}

/* Tablet and smaller desktop */
@media (max-width: 1024px) {
  .about-cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
  }
  
  .cards-row {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
  }
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  nav.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #FFF0DA;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 80px 25px 25px;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    z-index: 999;
    box-sizing: border-box;
  }
  
  nav.nav-menu.active {
    right: 0;
  }
  
  nav.nav-menu a {
    margin: 15px 0;
    font-size: 1.1em;
    width: 100%;
    text-align: left;
    padding: 0;
  }
  
  nav.nav-menu a.faq-btn {
    background: #222;
    color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    margin: 15px 0;
    width: 100%; /* Full width */
    text-align: center;
    font-size: 16px;
    box-sizing: border-box;
    display: block;
  }
  
  nav.nav-menu a.faq-btn:hover {
    background: #333;
    color: #fff;
  }
  
  .location-btn {
    width: 100%; /* Full width */
    margin: 15px 0;
    padding: 15px 25px;
    font-size: 16px;
    text-align: center;
    box-sizing: border-box;
    display: block;
  }
}

@media (max-width: 480px) {
  nav.nav-menu {
    width: 280px;
    padding: 70px 20px 20px;
  }
  
  nav.nav-menu a {
    font-size: 1em;
  }
  
  nav.nav-menu a.faq-btn {
    padding: 12px 20px;
    font-size: 15px;
    width: 100%; /* Full width */
  }
  
  .location-btn {
    padding: 12px 20px;
    font-size: 15px;
    width: 100%; /* Full width */
  }
}

/* Hero Section Mobile */
@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
    padding: 40px 0 20px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 224, 102, 0.3);
    z-index: 1;
  }
  
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    position: relative;
    z-index: 2;
  }
  
  .hero-text {
    width: 100%;
    padding: 30px 20px;
    color: #000;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
  }
  
  .hero-image {
    display: none;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-buttons button {
    width: 100%;
    max-width: 200px;
  }
}
@media (max-width: 600px) {
  .container {
    width: 95%;
    padding: 0 10px;
  }
  
  .header-container {
    padding: 10px 0;
  }
  
  .hero {
    padding: 30px 0 20px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 224, 102, 0.3);
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
  }
  
  .hero-text {
    padding: 25px 15px;
    color: #000;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
  }
  
  .hero-image {
    display: none;
  }
  
  .about, .commitment, .ghee, .contact-cards, .about-products, .get-in-touch, footer {
    padding: 30px 0 20px 0;
  }
  
  .about-card img, .ghee-image img, .get-in-touch-image img {
    max-width: 100%;
    height: auto;
  }
  
  .about-card, .contact-card {
    padding: 20px 15px;
  }
  
  .commitment-content, .ghee-content {
    gap: 20px;
  }
}
@media (max-width: 700px) {
  .social-footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .footer-address {
    font-size: 0.98em;
  }
}

/* Very small screens */
@media (max-width: 480px) {
  .container {
    width: 92%;
    padding: 0 15px;
  }
  
  .hero-text h1 {
    font-size: 1.6em;
  }
  
  .hero-text p {
    font-size: 0.95em;
  }
  
  .about-card, .contact-card {
    padding: 15px 10px;
  }
  
  .hero-buttons button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  
  .contact-form {
    gap: 12px;
  }
  
  .contact-form input, .contact-form textarea {
    padding: 10px;
  }
  
  /* Touch-friendly improvements */
  button, a, input, textarea {
    min-height: 44px;
  }
  
  .social-icon {
    font-size: 1.5em;
    padding: 8px;
  }
} 

/* Location Detection Styles */
.location-info {
    margin: 20px 0;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.location-info p {
    margin: 8px 0;
    color: #333;
}

.location-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

.location-actions button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.location-actions .primary {
    background-color: #007bff;
    color: white;
}

.location-actions .primary:hover {
    background-color: #0056b3;
}

.location-actions .secondary {
    background-color: #6c757d;
    color: white;
}

.location-actions .secondary:hover {
    background-color: #545b62;
}

/* Enhanced Location Detection Styles */
.manual-selection {
    margin: 20px 0;
    padding: 15px;
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
}

.manual-selection h4 {
    margin: 0 0 10px 0;
    color: #856404;
}

.manual-selection select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e6b800;
    border-radius: 8px;
    font-size: 16px;
    background-color: white;
    transition: all 0.3s ease;
}

.manual-selection select:focus {
    outline: none;
    border-color: #d4a800;
    box-shadow: 0 0 0 3px rgba(230, 184, 0, 0.1);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #e6b800;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Location button in header - matching hero section buttons */
.location-btn {
    background: linear-gradient(135deg, #e6b800 0%, #d4a800 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 184, 0, 0.3);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.location-btn:hover {
    background: linear-gradient(135deg, #d4a800 0%, #c19a00 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 184, 0, 0.4);
}

.location-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(230, 184, 0, 0.3);
}

.location-btn span {
    font-weight: 600;
}

/* Update all blue buttons in popups to yellow theme */
.location-actions .primary,
.modal .primary,
.order-form .primary,
.subscription-form .primary,
.success-message .primary {
    background: linear-gradient(135deg, #e6b800 0%, #d4a800 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 184, 0, 0.3);
}

.location-actions .primary:hover,
.modal .primary:hover,
.order-form .primary:hover,
.subscription-form .primary:hover,
.success-message .primary:hover {
    background: linear-gradient(135deg, #d4a800 0%, #c19a00 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 184, 0, 0.4);
}

.location-actions .primary:active,
.modal .primary:active,
.order-form .primary:active,
.subscription-form .primary:active,
.success-message .primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(230, 184, 0, 0.3);
}

/* Update secondary buttons to match theme */
.location-actions .secondary,
.modal .secondary,
.order-form .secondary,
.subscription-form .secondary {
    background: #6c757d;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.location-actions .secondary:hover,
.modal .secondary:hover,
.order-form .secondary:hover,
.subscription-form .secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
}

.location-actions .secondary:active,
.modal .secondary:active,
.order-form .secondary:active,
.subscription-form .secondary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(108, 117, 125, 0.3);
}

/* Update close button styling */
.modal .close {
    color: #e6b800;
    font-size: 28px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.modal .close:hover,
.modal .close:focus {
    color: #d4a800;
    text-decoration: none;
    cursor: pointer;
} 

/* Mobile Responsive Modal Styles */
@media (max-width: 768px) {
    .modal {
        padding: 5px;
        box-sizing: border-box;
        overflow-x: hidden; /* Prevent horizontal scroll */
    }
    
    .modal-content {
        margin: 120px auto 15px auto;
        padding: 15px;
        width: calc(100% - 10px); /* Account for modal padding */
        max-width: none;
        max-height: calc(100vh - 180px);
        border-radius: 10px;
        box-sizing: border-box;
        overflow-x: hidden; /* Prevent horizontal scroll */
        word-wrap: break-word; /* Break long words */
    }
    
    .close {
        font-size: 24px;
        right: 10px;
        top: 10px;
        z-index: 10;
    }
    
    /* Adjust modal content for mobile */
    .modal-content h2 {
        font-size: 18px;
        margin-bottom: 15px;
        word-wrap: break-word;
    }
    
    .modal-content p {
        font-size: 14px;
        margin-bottom: 15px;
        word-wrap: break-word;
    }
    
    /* Form adjustments for mobile */
    .modal-content .form-group {
        margin-bottom: 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .modal-content .form-group label {
        font-size: 14px;
        margin-bottom: 5px;
        display: block;
        word-wrap: break-word;
    }
    
    .modal-content .form-group input,
    .modal-content .form-group select,
    .modal-content .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px;
        width: 100%;
        box-sizing: border-box;
        max-width: 100%;
    }
    
    /* Button adjustments for mobile */
    .modal-content .btn,
    .modal-content .primary,
    .modal-content .secondary {
        width: 100%;
        padding: 15px;
        font-size: 16px;
        margin-bottom: 10px;
        box-sizing: border-box;
        white-space: normal; /* Allow text wrapping */
    }
    
    /* Success modal mobile adjustments */
    .success-content {
        padding: 10px;
        word-wrap: break-word;
    }
    
    .success-icon {
        font-size: 40px;
        margin-bottom: 15px;
    }
    
    .success-content h2 {
        font-size: 18px;
        margin-bottom: 10px;
        word-wrap: break-word;
    }
    
    .success-content p {
        font-size: 14px;
        margin-bottom: 20px;
        word-wrap: break-word;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .modal {
        padding: 2px;
    }
    
    .modal-content {
        margin: 100px auto 10px auto;
        padding: 10px;
        width: calc(100% - 4px); /* Account for modal padding */
        max-height: calc(100vh - 140px);
    }
    
    .close {
        font-size: 20px;
        right: 8px;
        top: 8px;
    }
    
    .modal-content h2 {
        font-size: 16px;
        word-wrap: break-word;
    }
    
    .modal-content p {
        font-size: 13px;
        word-wrap: break-word;
    }
    
    .modal-content .form-group input,
    .modal-content .form-group select,
    .modal-content .form-group textarea {
        padding: 10px;
        font-size: 16px;
    }
    
    .modal-content .btn,
    .modal-content .primary,
    .modal-content .secondary {
        padding: 12px;
        font-size: 15px;
    }
}

/* Order Form Mobile Responsive Styles */
@media (max-width: 768px) {
    .order-form {
        padding: 0;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .order-form .form-row {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .order-form .form-group {
        width: 100%;
        margin-bottom: 15px;
        box-sizing: border-box;
    }
    
    .order-form .form-group label {
        font-size: 14px;
        margin-bottom: 5px;
        display: block;
        word-wrap: break-word;
        width: 100%;
        box-sizing: border-box;
    }
    
    .order-form .form-group input,
    .order-form .form-group select,
    .order-form .form-group textarea {
        width: 100%;
        font-size: 16px;
        padding: 12px;
        border-radius: 8px;
        box-sizing: border-box;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .order-form .form-group textarea {
        min-height: 80px;
        resize: vertical;
    }
    
    /* Payment method dropdown mobile */
    .order-form select[name="payment_method"] {
        width: 100%;
        font-size: 16px;
        box-sizing: border-box;
    }
    
    /* Validation messages mobile */
    .validation-message {
        font-size: 13px;
        padding: 8px 12px;
        margin-top: 5px;
        word-wrap: break-word;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Order summary mobile */
    .order-summary,
    .subscription-summary {
        padding: 15px;
        margin-top: 15px;
        width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
    }
    
    .order-summary h4,
    .subscription-summary h4 {
        font-size: 16px;
        margin-bottom: 10px;
        word-wrap: break-word;
    }
    
    .order-summary .summary-item,
    .subscription-summary .summary-item {
        font-size: 14px;
        margin-bottom: 8px;
        word-wrap: break-word;
    }
    
    /* Payment details mobile */
    .payment-details {
        padding: 10px;
        margin-top: 10px;
        width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
    }
    
    .payment-detail-item {
        font-size: 13px;
        margin-bottom: 8px;
        word-wrap: break-word;
    }
    
    .payment-detail-title {
        font-size: 14px;
        font-weight: bold;
        margin-bottom: 5px;
        word-wrap: break-word;
    }
}

@media (max-width: 480px) {
    .order-form .form-group input,
    .order-form .form-group select,
    .order-form .form-group textarea {
        font-size: 16px;
        padding: 10px;
    }
    
    .order-form .form-group label {
        font-size: 13px;
    }
    
    .validation-message {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .order-summary,
    .subscription-summary {
        padding: 10px;
    }
    
    .order-summary h4,
    .subscription-summary h4 {
        font-size: 15px;
    }
    
    .order-summary .summary-item,
    .subscription-summary .summary-item {
        font-size: 13px;
    }
}

/* Location Modal Mobile Specific Styles */
@media (max-width: 768px) {
    #locationModal .modal-content {
        padding: 15px;
        width: calc(100% - 10px);
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    #locationModal h2 {
        font-size: 18px;
        margin-bottom: 15px;
        word-wrap: break-word;
    }
    
    #locationModal p {
        font-size: 14px;
        margin-bottom: 15px;
        word-wrap: break-word;
    }
    
    .location-actions {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .location-actions .primary,
    .location-actions .secondary {
        width: 100%;
        padding: 15px;
        font-size: 16px;
        box-sizing: border-box;
        white-space: normal;
    }
    
    /* Location status mobile */
    .location-status {
        padding: 15px;
        margin-bottom: 15px;
        width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
    }
    
    .location-status h3 {
        font-size: 16px;
        margin-bottom: 10px;
        word-wrap: break-word;
    }
    
    .location-status p {
        font-size: 14px;
        margin-bottom: 10px;
        word-wrap: break-word;
    }
}

@media (max-width: 480px) {
    #locationModal .modal-content {
        padding: 10px;
        width: calc(100% - 4px);
    }
    
    #locationModal h2 {
        font-size: 16px;
        word-wrap: break-word;
    }
    
    #locationModal p {
        font-size: 13px;
        word-wrap: break-word;
    }
    
    .location-actions .primary,
    .location-actions .secondary {
        padding: 12px;
        font-size: 15px;
    }
    
    .location-status {
        padding: 10px;
    }
    
    .location-status h3 {
        font-size: 15px;
        word-wrap: break-word;
    }
    
    .location-status p {
        font-size: 13px;
        word-wrap: break-word;
    }
} 

/* Mobile responsive hero section */
@media (max-width: 768px) {
  .hero {
    padding: 40px 0 30px 0;
    min-height: auto;
  }
  
  .hero-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .hero-text {
    width: 100%;
  }
  
  .hero-text h1 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .hero-text p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .hero-buttons {
    justify-content: center;
    gap: 15px;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
  }
  
  .hero-buttons button {
    width: 100%;
    min-width: auto;
    padding: 15px 20px;
    font-size: 16px;
    max-width: none;
  }
  
  .hero-image img {
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 30px 0 20px 0;
  }
  
  .hero-text h1 {
    font-size: 20px;
  }
  
  .hero-text p {
    font-size: 14px;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
  }
  
  .hero-buttons button {
    width: 100%;
    min-width: auto;
    max-width: none;
  }
  
  .hero-image img {
    max-width: 240px;
  }
} 

/* About Section Swiper Styles */
.about-swiper {
  display: none; /* Hidden by default for desktop */
  position: relative;
  width: 100%;
  overflow: hidden;
}

.swiper-slide {
  width: 100%;
  height: auto;
}

.swiper-slide .about-card {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  padding: 0;
}

.swiper-slide .about-card img {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 378/458;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 16px;
  display: block;
  box-sizing: border-box;
}

.swiper-slide .about-card h3 {
  text-align: center;
  margin: 10px 0 8px 0;
  color: #e6b800;
  font-size: 1.2em;
  line-height: 1.4;
}

.swiper-slide .about-card p {
  text-align: center;
  margin: 0;
  line-height: 1.5;
}

/* Swiper Pagination Styles - Using Swiper's built-in positioning */
.about-swiper .swiper-pagination {
  position: relative !important; /* Let Swiper handle positioning */
  bottom: auto !important;
  left: auto !important;
  transform: none !important;
  z-index: 10 !important;
  margin-top: 20px !important; /* Add margin above pagination */
  text-align: center !important;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #ddd;
  opacity: 1;
  margin: 0 5px;
}

.swiper-pagination-bullet-active {
  background-color: #e6b800;
}

/* Additional pagination styling to ensure proper positioning */
.about-swiper .swiper-pagination-bullet {
  display: inline-block !important;
  margin: 0 5px !important;
}

.about-swiper .swiper-pagination-bullet-active {
  background-color: #e6b800 !important;
}

/* Desktop: Hide Swiper, Show Cards */
@media (min-width: 769px) {
  .about-swiper {
    display: none !important; /* Hide swiper on desktop */
  }
  
  .about-cards {
    display: grid !important; /* Show cards on desktop */
  }
}

/* Mobile responsive swiper */
@media (max-width: 768px) {
  .about-cards {
    display: none !important; /* Hide original cards on mobile/tablet */
  }
  
  .about-swiper {
    display: block !important; /* Show swiper on mobile/tablet */
    margin-top: 32px;
  }
}

@media (max-width: 480px) {
  .about-swiper {
    margin-top: 24px;
  }
  
  .swiper-slide .about-card img {
    max-width: 100%;
  }
  
  .swiper-slide .about-card h3 {
    font-size: 1.1em;
  }
  
  .swiper-slide .about-card p {
    font-size: 0.9em;
  }
}
@media (max-width: 768px) {
  .about-cards {
    grid-template-columns: 1fr;
    gap: 24px;
    justify-items: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .about-card {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    padding: 0; /* Remove padding for mobile alignment */
  }
  
  .about-card img {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 378/458;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 16px;
    display: block;
    box-sizing: border-box;
  }
  
  .about-card h3 {
    text-align: center;
    margin: 10px 0 8px 0;
    color: #e6b800;
    font-size: 1.2em;
    line-height: 1.4;
  }
  
  .about-card p {
    text-align: center;
    margin: 0;
    line-height: 1.5;
  }
}

/* About Card Button Styling - Matching Hero Section */
.about-card button {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: clamp(0.9em, 2vw, 1em);
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
  min-height: 44px;
  min-width: 120px;
  box-sizing: border-box;
  white-space: normal;
  margin-top: 16px;
}

.about-card button.secondary {
  background: #fff;
  color: #000;
  border: 2px solid #e6b800;
}

.about-card button:hover {
  background: #d4a700;
}

.about-card button.secondary:hover {
  background: #e6b800;
  color: #fff;
}

@media (max-width: 480px) {
  .about-cards {
    gap: 20px;
    justify-items: center;
    width: 100%;
    max-width: 100%;
  }
  
  .about-card {
    max-width: 100%;
    padding: 0; /* Remove padding for mobile alignment */
  }
  
  .about-card img {
    max-width: 100%;
  }
  
  .about-card h3 {
    font-size: 1.1em;
  }
  
  .about-card p {
    font-size: 0.95em;
  }
}

/* About Products Swiper Styles - Hidden by default for desktop */
.about-products-swiper {
  display: none; /* Hidden by default for desktop */
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* About Products Swiper Pagination Styles - Using Swiper's built-in positioning */
.about-products-swiper .swiper-pagination {
  position: relative !important; /* Let Swiper handle positioning */
  bottom: auto !important;
  left: auto !important;
  transform: none !important;
  z-index: 10 !important;
  margin-top: 20px !important; /* Add margin above pagination */
  text-align: center !important;
}

/* Desktop: Hide About Products Swiper, Show Cards */
@media (min-width: 769px) {
  .about-products-swiper {
    display: none !important; /* Hide swiper on desktop */
  }
  
  .about-products .about-cards {
    display: grid !important; /* Show cards on desktop */
  }
}

/* Mobile responsive about products swiper */
@media (max-width: 768px) {
  .about-products .about-cards {
    display: none !important; /* Hide original cards on mobile/tablet */
  }
  
  .about-products-swiper {
    display: block !important; /* Show swiper on mobile/tablet */
    margin-top: 32px;
  }
}

@media (max-width: 480px) {
  .about-products-swiper {
    margin-top: 24px;
  }
}

/* FAQ Accordion Styles */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question span {
  font-weight: 600;
  font-size: 1.1em;
  color: #333;
  line-height: 1.4;
  flex: 1;
  margin-right: 20px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f8f9fa;
}

.faq-answer p {
  margin: 0;
  padding: 0 24px 20px 24px;
  color: #666;
  line-height: 1.6;
  font-size: 1em;
}

.faq-item.active .faq-question {
  background: #f8f9fa;
}

/* FAQ Contact Section */
.faq-contact {
  text-align: center;
  margin-top: 40px;
  padding: 30px 0;
}

.faq-contact p {
  font-size: 1.2em;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 500;
}

.faq-contact .secondary {
  background: #fff;
  color: #000;
  border: 2px solid #e6b800;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 1em;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  min-height: 44px;
  min-width: 120px;
}

.faq-contact .secondary:hover {
  background: #e6b800;
  color: #fff;
}

/* FAQ Section Heading */
.get-in-touch h2 {
  text-align: center;
  color: #ffe066;
  font-size: clamp(1.5em, 3vw, 2em);
  margin-bottom: 40px;
  font-weight: 600;
}

/* FAQ Arrow Icons */
.faq-arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 24px;
}

.faq-arrow-down {
  font-size: 1.2em;
  font-weight: bold;
  color: #e6b800;
  transition: all 0.3s ease;
  display: inline;
}

.faq-arrow-up {
  font-size: 1.2em;
  font-weight: bold;
  color: #e6b800;
  transition: all 0.3s ease;
  display: none;
}

/* FAQ Down Arrow for Contact Section */
.faq-down-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 auto;
  padding: 20px;
}

.faq-down-arrow:hover {
  transform: translateY(5px);
}

.down-arrow-icon {
  font-size: 3em;
  color: #fff;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* FAQ Section Heading - White color for all devices */
.get-in-touch h2 {
  color: #fff !important;
  font-size: clamp(1.5em, 3vw, 2em);
  margin-bottom: 32px;
  line-height: 1.3;
  text-align: center;
  font-weight: 600;
}