:root {
    --primary: #009999;
    --primary-dark: #007777;
    --primary-light: #33cccc;
    --secondary: #f8f9fa;
    --accent: #28a745;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark: #343a40;
    --text-dark: #212529;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-decoration: none;
    font-size: 1rem;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-accent {
    background: var(--accent);
}

.btn-accent:hover {
    background: #218838;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: var(--dark);
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 15px auto 0;
}

/* ==================== */
/* ENHANCED CORPORATE HEADER */
/* ==================== */
.corporate-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    width: 100%;
}

.logo img {
    max-height: 50px;
    width: auto;
}

/* Enhanced Navigation */
.corporate-nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

.corporate-nav li {
    position: relative;
}

.corporate-nav li::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 3px;
    background: var(--primary);
    border-radius: 2px;
    opacity: 0;
    transition: var(--transition);
}

.corporate-nav li:hover::before {
    opacity: 1;
    height: 80%;
}

.corporate-nav a {
    font-weight: 500;
    transition: var(--transition);
    color: var(--dark);
    text-decoration: none;
    font-size: 1rem;
    padding: 8px 0;
    position: relative;
}

.corporate-nav a:hover {
    color: var(--primary);
}

/* Dropdown for Solutions */
.corporate-nav .dropdown {
    position: relative;
}

.corporate-nav .dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
}

.corporate-nav .dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.corporate-nav .dropdown-content a {
    display: block;
    padding: 12px 20px;
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid #f8f9fa;
}

.corporate-nav .dropdown-content a:last-child {
    border-bottom: none;
}

.corporate-nav .dropdown-content a:hover {
    background: var(--light-gray);
    color: var(--primary);
    padding-left: 25px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* ==================== */
/* ENHANCED ABOUT PREVIEW SECTION */
/* ==================== */
.about-preview {
    padding: 80px 0;
    background: var(--white);
    width: 100%;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark);
    line-height: 1.3;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 25px 15px;
    background: var(--light-gray);
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid #e9ecef;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: var(--dark);
    font-weight: 600;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 12px;
    box-shadow: var(--shadow);
    width: 100%;
    height: auto;
    max-width: 100%;
}

/* ==================== */
/* IMAGE SLIDER HERO SECTION */
/* ==================== */
.image-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
    z-index: 1;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    max-width: 600px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    margin-left: 10%;
    border-radius: 8px;
    position: relative;
    z-index: 2;
}

.slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: white;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* ==================== */
/* SERVICES SECTION */
/* ==================== */
.services-section {
    padding: 80px 0;
    background: var(--light-gray);
    width: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.service-card.animated {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    background: var(--primary);
    color: var(--white);
    font-size: 2rem;
    padding: 25px;
    text-align: center;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    margin-bottom: 15px;
    color: var(--dark);
    font-size: 1.3rem;
}

.service-content p {
    color: #666;
    font-size: 0.95rem;
}

/* ==================== */
/* CORPORATE BRANDS */
/* ==================== */
.corporate-brands {
    padding: 80px 0;
    background: var(--white);
    width: 100%;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: stretch;
}

.brand-card {
    background: var(--white);
    border-radius: 8px;
    padding: 0;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 180px;
    position: relative;
    overflow: hidden;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-light);
}

.brand-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    text-decoration: none;
    color: inherit;
    height: 100%;
    width: 100%;
}

.brand-logo {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 100%;
}

.brand-logo img {
    max-height: 60px;
    max-width: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
}

.brand-card:hover .brand-logo img {
    transform: scale(1.05);
}

.brand-info {
    width: 100%;
}

.brand-name {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark);
    font-size: 0.95rem;
    line-height: 1.3;
}

.brand-products {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
}

/* ==================== */
/* TESTIMONIALS */
/* ==================== */
.testimonials-section {
    padding: 80px 0;
    background: var(--white);
    width: 100%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.7;
}

.testimonial-text:before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-light);
    position: absolute;
    top: -15px;
    left: -10px;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.author-info h4 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.author-info p {
    font-size: 0.85rem;
    color: #666;
}

/* ==================== */
/* CTA SECTION */
/* ==================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 153, 153, 0.9), rgba(0, 119, 119, 0.9)), url('images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    width: 100%;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* ==================== */
/* FOOTER */
/* ==================== */
.corporate-footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    max-height: 50px;
    margin-bottom: 15px;
    width: auto;
}

.footer-section p {
    margin-bottom: 20px;
    color: #aaa;
    font-size: 0.95rem;
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-nav {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 10px;
}

.footer-nav a {
    color: #aaa;
    transition: var(--transition);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-nav a:hover {
    color: var(--primary);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.contact-info i {
    color: var(--primary);
    width: 20px;
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
    text-decoration: none;
    font-size: 0.9rem;
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #aaa;
    font-size: 0.9rem;
}

/* ==================== */
/* MODAL STYLES */
/* ==================== */
.login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s;
    padding: 20px;
}

.modal-content {
    background: var(--white);
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: slideUp 0.3s;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 10;
}

.modal-header h3 {
    color: var(--dark);
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    transition: var(--transition);
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    color: var(--dark);
    background: #f8f9fa;
}

.modal-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-body p {
    margin-bottom: 20px;
    color: #666;
    text-align: center;
    font-size: 1rem;
    line-height: 1.5;
    width: 100%;
}

.account-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    width: 100%;
    align-items: center;
}

.account-options .btn {
    width: 70%;
    padding: 12px;
    font-size: 1rem;
    border-radius: 6px;
}

/* ==================== */
/* PRODUCT SECTIONS */
/* ==================== */
.product-section {
  background-color: #f7f9fa;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.product-container {
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  padding: 40px;
}

.product-section.alt .product-container {
  flex-direction: row-reverse;
}

.product-text {
  flex: 1 1 480px;
}

.product-text h2 {
  font-size: 28px;
  color: #111827;
  margin-bottom: 15px;
  font-weight: 700;
}

.product-text p {
  color: #4b5563;
  line-height: 1.7;
  font-size: 16px;
  margin-bottom: 25px;
}

.enquiry-btn {
  background-color: #4c1d95;
  color: #fff;
  padding: 12px 30px;
  border-radius: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
}

.enquiry-btn:hover {
  background-color: #6d28d9;
  transform: translateY(-2px);
}

.product-image {
  flex: 1 1 400px;
  text-align: right;
}

.product-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* ==================== */
/* FAQ SECTION */
/* ==================== */
.faq-section {
    padding: 80px 0;
    background: var(--light-gray);
    width: 100%;
}

.faq-subtitle {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 1px solid #e9ecef;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: fit-content;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: var(--white);
    transition: var(--transition);
    min-height: 80px;
    align-items: center;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    flex: 1;
    padding-right: 15px;
    line-height: 1.4;
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    transition: var(--transition);
    flex-shrink: 0;
    font-size: 0.8rem;
}

.faq-toggle .fa-minus {
    display: none;
}

.faq-item.active .faq-toggle {
    background: var(--primary-dark);
}

.faq-item.active .faq-toggle .fa-plus {
    display: none;
}

.faq-item.active .faq-toggle .fa-minus {
    display: block;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--white);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 300px;
}

.faq-answer p {
    margin: 0;
    color: #555;
    line-height: 1.6;
    font-size: 0.9rem;
}

.faq-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.faq-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    grid-column: 1 / -1;
}

.faq-cta p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--dark);
    font-weight: 500;
}

.faq-contact-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-contact-buttons .btn {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 140px;
    justify-content: center;
}

/* ==================== */
/* MOBILE NAVIGATION */
/* ==================== */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
    padding: 5px;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 2000;
    padding: 80px 20px 20px;
    overflow-y: auto;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    margin-bottom: 15px;
}

.mobile-nav a {
    display: block;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 6px;
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.mobile-nav a:hover {
    background: var(--primary);
    color: var(--white);
}

.close-mobile-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
    padding: 5px;
}

/* Mobile Navigation Dropdowns */
.mobile-nav .dropdown-content {
    padding-left: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-nav .dropdown.active .dropdown-content {
    max-height: 300px;
}

.mobile-nav .dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav .dropdown-toggle {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.mobile-nav .dropdown.active .dropdown-toggle {
    transform: rotate(180deg);
}


.feature-section {
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}

.feature-grid {
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.feature-card {
  position: relative;
  height: 380px;
  border-radius: 25px;
  padding: 25px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Dark overlay for readability */
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  border-radius: inherit;
}

.feature-card h2,
.feature-card p {
  position: relative;
  margin: 0;
  z-index: 2;
}

.feature-card h2 {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
  font-weight: 400;
}

/* ---- Split Card (Card 4) ---- */
.feature-card-split {
  display: flex;
  flex-direction: column;
  height: 380px;
  border-radius: 25px;
  overflow: hidden;
  background: #fff; /* fallback */
}

/* Top half image */
.split-image {
  flex: 1;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Overlay on image */
.split-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

/* Bottom content */
.split-content {
  padding: 25px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
}

.split-content h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
}

.split-content p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.4;
}

/* ==================== */
/* ANIMATIONS */
/* ==================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item {
    animation: fadeInDown 0.5s ease;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }
.faq-item:nth-child(7) { animation-delay: 0.7s; }
.faq-item:nth-child(8) { animation-delay: 0.8s; }
.faq-item:nth-child(9) { animation-delay: 0.9s; }
.faq-item:nth-child(10) { animation-delay: 1s; }

/* ==================== */
/* RESPONSIVE DESIGN */
/* ==================== */
@media (max-width: 1200px) {
    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .image-slider {
        height: 500px;
    }
    
    .slide-content {
        margin-left: 5%;
        padding: 30px;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .modal-content {
        max-width: 90%;
    }
    
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .corporate-nav ul {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        gap: 15px;
        padding: 10px 0;
    }
    
    .corporate-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .about-preview {
        padding: 60px 0;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-item {
        padding: 25px 20px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 1.1rem;
    }
    
    .image-slider {
        height: 450px;
    }
    
    .slide-content {
        margin: 0 5%;
        padding: 20px;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .slide-content p {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .corporate-header {
        top: 0;
        position: sticky;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .modal-content {
        max-width: 95%;
        margin: 10px;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-container {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 600px;
    }
    
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 18px 20px;
        min-height: 70px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 15px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
        max-height: 400px;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
    
    .faq-cta {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .faq-cta p {
        font-size: 1.1rem;
    }
    
    .faq-contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-contact-buttons .btn {
        width: 200px;
    }
    
    .deals-banner {
        padding: 6px 0;
        font-size: 0.8rem;
        line-height: 1.3;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .about-preview {
        padding: 50px 0;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .image-slider {
        height: 400px;
    }
    
    .slide-content {
        margin: 0 5%;
        padding: 15px;
    }
    
    .slide-content h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .slide-content p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .services-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 5px;
        width: calc(100% - 10px);
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .faq-section {
        padding: 50px 0;
    }
    
    .faq-question {
        padding: 15px 18px;
        min-height: 65px;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
    }
    
    .faq-toggle {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .faq-cta p {
        font-size: 1rem;
    }
    
    .faq-contact-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .deals-banner {
        padding: 5px 0;
        font-size: 0.75rem;
        line-height: 1.2;
    }
}

@media (max-width: 400px) {
    .image-slider {
        height: 350px;
    }
    
    .slide-content {
        padding: 12px;
    }
    
    .slide-content h2 {
        font-size: 1.3rem;
    }
    
    .slide-content p {
        font-size: 0.85rem;
    }
    
    .modal-header h3 {
        font-size: 1.1rem;
    }
    
    .modal-body {
        padding: 15px;
    }
    
    .form-control {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .logo img {
        max-height: 40px;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .brand-card {
        min-height: 150px;
    }
    
    .brand-logo {
        height: 60px;
    }
    
    .brand-logo img {
        max-height: 50px;
        max-width: 100px;
    }
    
    .brand-name {
        font-size: 0.85rem;
    }
    
    .brand-products {
        font-size: 0.75rem;
    }

    .faq-question {
        padding: 12px 15px;
        min-height: 60px;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
    }
    
    .faq-answer p {
        font-size: 0.85rem;
    }
    
    .faq-cta {
        padding: 25px 15px;
    }
}


/* 🌐 Mobile & Tablet Responsiveness */
@media (max-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card {
    height: 320px;
  }
}

@media (max-width: 600px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    height: 300px;
  }

  .feature-card h2 {
    font-size: 22px;
  }

  .feature-card-split {
    height: 320px;
  }

  .split-content h2 {
    font-size: 20px;
  }
}