﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #f5b800;
    --primary-dark: #e6a500;
    --primary-light: #ffce33;
    --secondary: #1a1a2e;
    --text-dark: #1a1a2e;
    --text-light: #4a5568;
    --text-muted: #718096;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e0;
    --radius: 20px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 10px;
    border: 3px solid var(--gray-100);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary);
    color: var(--secondary);
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    transition: transform 0.6s ease;
    z-index: -1;
}

.btn:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 184, 0, 0.3);
}

.btn-outline {
    background: #488234;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--secondary);
}

/* Header */
.header {
    height: 90px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    display: flex;
    align-items: center;
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header.scrolled {
    height: 70px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
}

.header .nav-links a {
    color: #1a1a2e;
}

.header .mobile-menu-btn span {
    background: #1a1a2e;
}

.header-top {
    background: #488234;
    padding: 8px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 45px;
    width: auto;
    transition: var(--transition);
}

.header.scrolled .logo img {
    height: 35px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.logo-text span {
    color: var(--primary);
}

@media (max-width: 768px) {
    .logo img {
        height: 55px;
        max-height: 55px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 60px;
        max-height: 60px;
    }
}

nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background: var(--secondary);
    border-radius: 4px;
    transition: var(--transition);
    transform-origin: left;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--secondary);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: var(--header-height) 0 60px;
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(22, 33, 62, 0.75) 50%, rgba(15, 52, 96, 0.85) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding-top: 60px;
    padding-bottom: 60px;
}

.slide-content h1 {
    font-size: clamp(1.75rem, 4.5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    padding-top: 50px;
}
.slide-content h1 span {
    color: var(--primary);
}

.slide-content p {
    font-size: clamp(1rem, 1.2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

/* Slider Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(245, 184, 0, 0.2);
    border: 2px solid var(--primary);
    border-radius: 50%;
    color: var(--primary);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.slider-arrow:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.dot:hover {
    background: rgba(245, 184, 0, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

/* Slider Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.slider-progress-bar {
    height: 100%;
    background: var(--primary);
    width: 0;
    transition: width 0.1s linear;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23f5b80010" stroke-width="0.5"/></svg>');
    background-size: 200px;
    opacity: 0.5;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text h1 span {
    color: var(--primary);
}

.hero-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-badges {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 50px;
    color: var(--white);
    font-size: 0.9rem;
}

.badge-icon {
    color: var(--primary);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.hero-visual {
    position: relative;
}

.hero-image {
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, #ff6b00 100%);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.section-dark {
    background: #488234;
    color: var(--white);
}

.section-gray {
    background: var(--gray-100);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-header h2 span {
    color: var(--primary);
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.section-dark .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

/* Stats Section */
.stats-section {
    position: relative;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 50%, var(--accent) 100%);
    padding: 80px 0;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23f5b80010" stroke-width="0.5"/></svg>');
    background-size: 200px;
    opacity: 0.5;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(96 142 30);
    z-index: 1;
}

.stats-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stats-item {
    text-align: center;
    padding: 30px 20px;
    position: relative;
    transition: all 0.3s ease;
    border-right: 2px solid rgba(245, 184, 0, 0.3);
}

.stats-item:last-child {
    border-right: none;
}

.stats-item:hover {
    transform: translateY(-5px);
}

.stats-item:hover .stats-icon {
    transform: scale(1.1);
}

.stats-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.stats-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}
.stats-label-top {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stats-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
}

.stats-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: url('../images/solid-map-1.webp') center center / cover no-repeat;
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.92);
}

.trust-section .section-header {
    position: relative;
    z-index: 1;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

/* Scroll Reveal */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.trust-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, #ff6b00 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.trust-card:hover::before {
    transform: scaleX(1);
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(245, 184, 0, 0.2);
    border-color: rgba(245, 184, 0, 0.3);
}

.trust-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary) 0%, #ff6b00 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(245, 184, 0, 0.3);
}

.trust-card:hover .trust-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(245, 184, 0, 0.4);
}

.trust-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.trust-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
}

.trust-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Promise Section */
.promise-bar {
    background: var(--primary);
    padding: 30px 0;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.promise-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.promise-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.promise-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
}

.promise-item p {
    font-size: 0.85rem;
    color: var(--secondary);
    opacity: 0.8;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: 0.3s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, #ff6b00 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 25px;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary);
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-features {
    text-align: left;
    margin-top: 20px;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li::before {
    content: '\2713';
    color: var(--primary);
    font-weight: 700;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature-card {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s;
}

.feature-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--primary);
}

.feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.feature-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--white);
}

.feature-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, #ff6b00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
}

.testimonial-info .location {
    font-size: 0.85rem;
    color: var(--text-light);
}

.testimonial-stars {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    font-style: italic;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #ff6b00 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--secondary);
    opacity: 0.8;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    background: #488234;
    color: var(--white);
}

.cta-section .btn:hover {
    background: var(--secondary-light);
}

/* Footer */
.footer {
    background: #488234;
    color: rgba(255, 255, 255, 0.9);
    padding-top: 80px;
}

.footer h4 { color: #ffffff; }

.footer-brand p, .footer-links a, .footer-contact li { color: rgba(255, 255, 255, 0.8); }

.footer-links a:hover {
    color: #f5b800;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom-links a:hover {
    color: #f5b800;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
    margin-top: 20px;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer h4 { color: #ffffff; }

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.95rem;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary);
}

.footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 10px;
}

.designed-by {
    color: rgba(255, 255, 255, 0.6);
    margin-left: 5px;
}

.designed-by a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.designed-by a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 50%, var(--accent) 100%);
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary);
}

.breadcrumb span {
    opacity: 0.6;
}

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    padding: 40px;
    background: #488234;
    border-radius: 20px;
    color: var(--white);
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.contact-form {
    background: var(--gray-100);
    padding: 40px;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--gray-300);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Responsive */
@media (max-width: 992px) {
    .slide-content h1 {
        font-size: 2.2rem;
    }

    .hero-badges,
    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .slider-prev {
        left: 15px;
    }

    .slider-next {
        right: 15px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-item {
        border-right: none;
        border-bottom: 2px solid rgba(245, 184, 0, 0.3);
        padding-bottom: 40px;
    }

    .stats-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .promise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    nav .btn {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .slide-content {
        padding: 100px 0 60px;
    }

    .slide-content h1 {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .slide-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .hero-badges {
        margin-bottom: 12px;
    }

    .badge {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
        font-size: 1rem;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
    }

    .slider-dots {
        bottom: 40px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .stats-section {
        padding: 60px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats-item {
        border-bottom: 2px solid rgba(245, 184, 0, 0.3);
        padding: 25px 20px;
    }

    .stats-item:last-child {
        border-bottom: none;
    }

    .stats-number {
        font-size: 2.5rem;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .testimonials-grid,
    .promise-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }

    .footer-brand {
        text-align: left;
    }

    .footer-col,
    .footer-links,
    .footer-contact {
        text-align: left;
    }

    .footer-links li {
        text-align: left;
    }

    .footer-contact li {
        text-align: left;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: left;
    }

    .section-header h2 {
        text-align: left;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Stats Bar */
.stats-bar {
    padding: 50px 0;
    background: #f5f5f5;
}

.stats-bar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stats-item {
    text-align: center;
    padding: 20px;
}

.stats-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stats-label {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 10px;
}

/* Stats Bar Section */
.stats-bar {
    padding: 50px 0;
    background: #f5f5f5;
}

.stats-bar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* About Page Stats */
.about-page .stats-grid {
    gap: 20px;
}

.about-page .stats-item {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.about-page .stats-item:hover {
    transform: translateY(-5px);
}

/* Section Styling */
.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background: var(--secondary);
    color: var(--white);
}

.section-gray {
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--secondary);
}

.section-dark .section-header h2 {
    color: var(--white);
}

.section-header h2 span {
    color: var(--primary);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Page Header */
.page-header {
    padding: 160px 0 100px;
    background: var(--secondary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23ffffff05" stroke-width="0.5"/></svg>');
    background-size: 200px;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}

.page-header h1 span {
    color: var(--primary);
}

.page-header p {
    font-size: 1.2rem;
    color: var(--gray-300);
    max-width: 700px;
    line-height: 1.6;
}

.breadcrumb {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span {
    color: var(--primary);
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.8;
}

/* Stats Bar */
.stats-bar {
    padding: 80px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stats-item {
    text-align: center;
}

.stats-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1;
}

.stats-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.feature-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary);
}

.feature-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--secondary);
}

.service-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Bento Grid Section */
.bento-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 350px);
    gap: 24px;
    grid-template-areas:
        "epc epc quality subsidy"
        "epc epc industrial industrial";
}

.bento-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.bento-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.bento-item:hover img {
    transform: scale(1.1);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.9) 0%, rgba(26, 26, 46, 0.4) 50%, transparent 100%);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
}

.bento-tag {
    background: var(--primary);
    color: var(--secondary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    width: fit-content;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.bento-item h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    line-height: 1.2;
}

.bento-item p {
    font-size: 0.95rem;
    opacity: 0.8;
}

.bento-epc { grid-area: epc; }
.bento-quality { grid-area: quality; }
.bento-subsidy { grid-area: subsidy; }
.bento-industrial { grid-area: industrial; }

.bento-epc h3 { font-size: 3rem; }

/* Contact Unique Section */
.contact-unique-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.contact-unique-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.info-item-unique {
    display: flex;
    gap: 24px;
    padding: 30px;
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.info-item-unique:hover {
    transform: translateX(10px);
    border-color: var(--primary);
}

.info-icon-unique {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-content-unique h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--secondary);
}

.info-content-unique p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.glass-card {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.unique-form .form-group {
    margin-bottom: 24px;
    position: relative;
}

.unique-form .form-control {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
}

.unique-form .form-control:focus {
    border-color: var(--primary);
}

.unique-form label {
    position: absolute;
    left: 16px;
    top: 16px;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition);
}

.unique-form .form-group.focused label,
.unique-form .form-group.has-value label {
    top: -12px;
    left: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--white);
    padding: 0 8px;
}

.submit-btn-unique {
    width: 100%;
    padding: 18px;
    background: var(--primary);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.contact-unique-section .section-header {
    text-align: left;
    margin-bottom: 40px;
    max-width: 100%;
}

.contact-unique-section .section-header h2 {
    font-size: 2.5rem;
}

@media (max-width: 768px) {
    .contact-unique-section .section-header {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-page .stats-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
    transform: translateY(0);
}

.btn-know-more {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
}

.product-card-large:hover .btn-know-more {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1200px) {
    .products-grid-large {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .products-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .products-grid-large {
        grid-template-columns: 1fr;
    }
    .product-card-large {
        aspect-ratio: 4/5;
    }
}


/* Products Section Large */
.products-section-large {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
}

.products-grid-large {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card-large {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 3/4;
}

.product-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(245, 184, 0, 0.25);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-large:hover .product-img {
    transform: scale(1.1);
}

.product-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.95) 0%, rgba(26, 26, 46, 0.7) 60%, transparent 100%);
    padding: 30px 20px 25px;
    color: var(--white);
    transform: translateY(60px);
    transition: transform 0.3s ease;
}

.product-card-large:hover .product-info-overlay {
    transform: translateY(0);
}

.product-info-overlay h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
}

.product-info-overlay p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 15px;
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
}

.product-card-large:hover .product-info-overlay p {
    opacity: 1;
}

.btn-know-more {
    display: inline-block;
    padding: 8px 24px;
    background: var(--primary);
    color: var(--secondary);
    font-weight: 600;
    border-radius: 50px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.product-card-large:hover .btn-know-more {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.btn-know-more:hover {
    background: var(--white);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .products-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-section-large {
        padding: 60px 0;
    }

    .products-grid-large {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card-large {
        aspect-ratio: 4/3;
    }

    .product-info-overlay {
        transform: translateY(0);
        padding: 25px 20px;
    }

    .product-info-overlay h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .product-info-overlay p {
        opacity: 1;
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .btn-know-more {
        opacity: 1;
        transform: translateY(0);
        display: inline-block;
        width: auto;
        padding: 10px 24px;
        margin-top: 10px;
    }
}

/* Home Solar Page Header with Background Image */
.home-solar-header {
    background: linear-gradient(135deg, rgba(72, 130, 52, 0.85) 0%, rgba(26, 26, 46, 0.8) 100%), url('../images/hero-residential-solar.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* About Image with Photo */
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Commercial Solar Page Header with Background Image */
.commercial-header {
    background: linear-gradient(135deg, rgba(72, 130, 52, 0.85) 0%, rgba(26, 26, 46, 0.8) 100%), url('../images/hero-commercial.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Solar Park Page Header with Background Image */
.solar-park-header {
    background: linear-gradient(135deg, rgba(72, 130, 52, 0.85) 0%, rgba(26, 26, 46, 0.8) 100%), url('../images/solar-power-plants.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* About Page Header with Background Image */
.about-header {
    background: linear-gradient(135deg, rgba(72, 130, 52, 0.85) 0%, rgba(26, 26, 46, 0.8) 100%), url('../images/abouthero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Contact Page Header with Background Image */
.contact-header {
    background: linear-gradient(135deg, rgba(72, 130, 52, 0.85) 0%, rgba(26, 26, 46, 0.8) 100%), url('../images/contactsolor.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
}

/* Footer Logo White */
.footer-brand .logo img {
    filter: brightness(0) invert(1);
}

/* Stats Bar Responsive */
@media (max-width: 768px) {
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px 20px;
    }
    
    .stats-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .stats-bar {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Mobile Menu Styles */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    gap: 15px;
    z-index: 1000;
}

.nav-links.active a {
    color: var(--secondary);
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-links.active a:last-child {
    border-bottom: none;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
}

.product-info-overlay h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
}

.product-info-overlay p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 15px;
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
}

.product-card-large:hover .product-info-overlay p {
    opacity: 1;
}

.btn-know-more {
    display: inline-block;
    padding: 8px 24px;
    background: var(--primary);
    color: var(--secondary);
    font-weight: 600;
    border-radius: 50px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.product-card-large:hover .btn-know-more {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.btn-know-more:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================================================
   RESPONSIVE DESIGN SYSTEM
   ========================================================================== */

/* Laptop & Large Desktop (1200px) */
@media (max-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Desktop & Large Tablet (992px) */
@media (max-width: 992px) {
    .container {
        max-width: 960px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-badges, 
    .hero-buttons,
    .hero-stats {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-image {
        order: -1;
    }

    .services-grid,
    .products-grid-large,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet (768px) */
@media (max-width: 768px) {
    .container {
        max-width: 720px;
        padding: 0 24px;
    }

    .section {
        padding: 80px 0;
    }

    /* Navigation Modernization */
   /* Navigation Links */
.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 10px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary);
}

/* Mobile Menu Button - UX Expert Custom Icon */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background: var(--secondary);
    border-radius: 4px;
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--secondary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: 0.6s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--secondary);
        font-size: 1.25rem;
        font-weight: 600;
    }

    /* Hero Fixes */
    .hero {
        min-height: 80vh;
        padding-top: var(--header-height);
    }

    .slide-content h1 {
        font-size: 2.2rem;
    }

    /* Bento Grid Stack */
    .bento-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .bento-item {
        height: 300px;
    }

    /* Grids to Single Column */
    .promise-grid,
    .trust-grid,
    .testimonials-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-col {
        text-align: center;
    }

    .footer-links,
    .footer-contact {
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Mobile (576px) */
@media (max-width: 576px) {
    .container {
        padding: 0 20px;
    }

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .slide-content h1 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .services-grid,
    .products-grid-large,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stats-item {
        border-right: none;
        border-bottom: 2px solid rgba(245, 184, 0, 0.2);
    }

    .stats-item:last-child {
        border-bottom: none;
    }

    .stats-number {
        font-size: 2.5rem;
    }

    .works-gallery {
        grid-template-columns: 1fr;
    }

    .contact-unique-grid {
        grid-template-columns: 1fr;
    }

    /* Form Improvements */
    .glass-card {
        padding: 30px 20px;
    }
}

/* Extra Small (375px) */
@media (max-width: 375px) {
    .section-header h2 {
        font-size: 1.75rem;
    }

    .slide-content h1 {
        font-size: 1.6rem;
    }
}

/* ==========================================================================
   GLOBAL UTILITIES & POLISH
   ========================================================================== */

.slide-overlay {
    background: linear-gradient(to right, rgba(26, 26, 46, 0.9) 0%, rgba(26, 26, 46, 0.4) 100%);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth Image Loading */
img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Lightbox Enhancements */
.lightbox {
    background: rgba(0, 0, 0, 0.98);
}

.lightbox-img {
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE FIX ï¿½ FINAL AUTHORITY BLOCK
   All rules here override any earlier conflicting rules.
   ========================================================================== */

/* ---- GLOBAL FIXES ---- */
:root {
    --header-height: 90px;
}

/* Wider header container as requested */
.header .container {
    max-width: 1440px;
    width: 100%;
    padding: 0 40px;
}

/* Fix nav link color on white header */
.nav-links a {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Fix btn-outline to be transparent by default */
.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--secondary);
}

/* Fix hamburger ï¿½ no box, just lines */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none !important;
    box-shadow: none !important;
    border: none;
    cursor: pointer;
    z-index: 1002;
    padding: 0;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--secondary);
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

/* Animated X on active */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8.75px) rotate(45deg);
}
.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8.75px) rotate(-45deg);
}

/* ---- DESKTOP NAV (>992px) ---- */
@media (min-width: 993px) {
    .mobile-menu-btn {
        display: none !important;
    }
    .nav-links {
        display: flex !important;
        position: static !important;
        flex-direction: row !important;
        background: none !important;
        height: auto !important;
        width: auto !important;
        gap: 32px !important;
    }
    .nav-links a {
        color: var(--secondary) !important;
        font-size: 0.95rem !important;
    }
}

/* ---- TABLET & MOBILE NAV (<=992px) ---- */
@media (max-width: 992px) {
    .mobile-menu-btn {
        display: flex;
    }

    /* Full-screen overlay menu */
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--secondary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        z-index: 1001;
        /* hidden by default via transform, not display:none so transition works */
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        display: flex;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    /* Nav links white on dark overlay */
    .nav-links a {
        color: var(--white) !important;
        font-size: 1.4rem !important;
        font-weight: 700 !important;
        padding: 10px 0;
    }

    .nav-links a.active {
        color: var(--primary) !important;
    }

    /* Hero padding fix */
    .hero {
        padding-top: var(--header-height);
    }

    /* Wider header container on tablet */
    .header .container {
        padding: 0 24px;
    }

    /* Grids */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        grid-template-areas:
            "epc epc"
            "quality subsidy"
            "industrial industrial";
    }

    .bento-item {
        min-height: 280px;
    }

    .contact-unique-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .products-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-header h1 {
        font-size: 2.8rem;
    }
}

/* ---- MOBILE (<=768px) ---- */
@media (max-width: 768px) {
    .header {
        height: 70px;
    }

    :root {
        --header-height: 70px;
    }

    .header .container {
        padding: 0 16px;
    }

    .logo img {
        height: 38px;
    }

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    /* Hero */
    .slide-content h1 {
        font-size: clamp(1.5rem, 5vw, 2rem);
        line-height: 1.25;
    }

    .slide-content p {
        font-size: 0.95rem;
    }

    .hero-badges {
        flex-wrap: wrap;
        gap: 10px;
    }

    .badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    /* Promise bar */
    .promise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Bento */
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "epc"
            "quality"
            "subsidy"
            "industrial";
    }

    .bento-item {
        min-height: 260px;
    }

    .bento-item h3 {
        font-size: 1.4rem;
    }

    .bento-epc h3 {
        font-size: 1.8rem;
    }

    /* Grids */
    .services-grid,
    .features-grid,
    .testimonials-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stats-number {
        font-size: 2.2rem;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .about-image img {
        min-height: 250px;
    }

    /* About list */
    .about-list li {
        font-size: 0.95rem;
    }

    /* Page headers */
    .page-header {
        padding: 110px 0 60px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    /* Contact */
    .contact-unique-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .glass-card {
        padding: 30px 20px;
    }

    .info-item-unique {
        padding: 20px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand,
    .footer-col {
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    /* CTA */
    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    /* Products large grid */
    .products-grid-large {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card-large {
        aspect-ratio: 4/3;
    }

    .product-info-overlay {
        transform: translateY(0);
    }

    .product-info-overlay p,
    .btn-know-more {
        opacity: 1;
        transform: translateY(0);
    }

    /* Works gallery */
    .works-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* ---- SMALL MOBILE (<=480px) ---- */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .promise-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .works-gallery {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
    }

    .page-header h1 {
        font-size: 1.7rem;
    }

    .bento-epc h3 {
        font-size: 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }
}
/* Safety: ensure revealed sections are always visible after 1s even without JS */
[data-reveal] {
    animation: revealFallback 0s 1.5s forwards;
}

@keyframes revealFallback {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ==========================================================================
   HEADER LAYOUT FIX ï¿½ Logo LEFT, Nav RIGHT (Final Authority)
   ========================================================================== */

/* Header stretches full width */
.header {
    height: 90px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
}

/* Container fills full width of header */
.header > .container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* header-main: logo LEFT ï¿½ nav RIGHT */
.header-main {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
}

/* Logo always on the left */
.header-main .logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.header-main .logo img {
    height: 50px;
    width: auto;
    display: block;
}

/* Nav always on the right ï¿½ desktop */
.header-main nav {
    display: flex;
    align-items: center;
    margin-left: auto;
}

/* Nav links horizontal row */
.header-main .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-main .nav-links a {
    color: var(--secondary);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.header-main .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.header-main .nav-links a:hover::after,
.header-main .nav-links a.active::after {
    width: 100%;
}

.header-main .nav-links a:hover,
.header-main .nav-links a.active {
    color: var(--primary);
}

/* Hamburger ï¿½ hidden on desktop */
.header-main .mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    z-index: 1002;
}

.header-main .mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--secondary);
    border-radius: 4px;
    transition: all 0.35s ease;
}

/* Hamburger ? X animation */
.header-main .mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8.75px) rotate(45deg);
}
.header-main .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}
.header-main .mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8.75px) rotate(-45deg);
}

/* Scrolled state ï¿½ slightly shorter */
.header.scrolled {
    height: 70px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

.header.scrolled .logo img {
    height: 38px;
}

/* ---- TABLET (<=992px): show hamburger, hide nav ---- */
@media (max-width: 992px) {
    .header-main .mobile-menu-btn {
        display: flex;
    }

    .header-main nav {
        display: none; /* nav wrapper hidden on mobile ï¿½ ul handled separately */
    }

    /* Mobile overlay nav */
    .header-main .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: #1a1a2e;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 36px;
        z-index: 1001;
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        display: flex;
        padding: 0;
    }

    .header-main .nav-links.active {
        transform: translateX(0);
    }

    .header-main .nav-links a {
        color: #ffffff;
        font-size: 1.4rem;
        font-weight: 700;
    }

    .header-main .nav-links a.active {
        color: var(--primary);
    }

    .header-main .nav-links a::after {
        background: var(--primary);
    }
}

/* ---- MOBILE (<=768px): reduce header height ---- */
@media (max-width: 768px) {
    .header {
        height: 68px;
    }

    .header > .container {
        padding: 0 16px;
    }

    .header-main .logo img {
        height: 38px;
    }
}

/* ---- SMALL MOBILE (<=480px) ---- */
@media (max-width: 480px) {
    .header > .container {
        padding: 0 12px;
    }

    .header-main .logo img {
        height: 32px;
    }
}
/* ==========================================================================
   HEADER ï¿½ FULL WIDTH (no max-width constraint)
   ========================================================================== */
.header > .container,
.header .container {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 48px !important;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .header > .container,
    .header .container {
        padding: 0 16px !important;
    }
}

@media (max-width: 480px) {
    .header > .container,
    .header .container {
        padding: 0 12px !important;
    }
}
/* ==========================================================================
   WORKS GALLERY ï¿½ DEFINITIVE FIX
   ========================================================================== */

.works-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.work-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    background: #f1f5f9;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.work-item:hover img {
    transform: scale(1.08);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 60px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 1.5rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-nav:hover { background: rgba(245,184,0,0.4); border-color: #f5b800; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* Gallery Responsive */
@media (max-width: 992px) {
    .works-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .works-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .works-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
}
/* ==========================================================================
   HEADER FINAL FIX ï¿½ HIGH SPECIFICITY, DEFINITIVE AUTHORITY
   ========================================================================== */

/* 1. Header: fixed, white, full-width bar */
html body .header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 90px !important;
    background: #ffffff !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.10) !important;
    z-index: 9999 !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 !important;
}

/* 2. Container inside header: FULL WIDTH, no centering, no max-width cap */
html body .header .container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 48px !important;
    display: flex !important;
    align-items: center !important;
    box-sizing: border-box !important;
}

/* 3. Header-main: logo LEFT, nav RIGHT */
html body .header .header-main {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    gap: 0 !important;
}

/* 4. Logo: left side, fixed size */
html body .header .header-main .logo {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
    text-decoration: none !important;
}

html body .header .header-main .logo img {
    height: 52px !important;
    width: auto !important;
    display: block !important;
}

/* 5. Nav wrapper: right side */
html body .header .header-main nav {
    display: flex !important;
    align-items: center !important;
    margin-left: auto !important;
}

/* 6. Nav links: horizontal row, DESKTOP ONLY */
html body .header .header-main .nav-links {
    position: static !important;
    transform: none !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 28px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    height: auto !important;
    width: auto !important;
    background: none !important;
    z-index: auto !important;
}

html body .header .header-main .nav-links li {
    display: list-item !important;
}

html body .header .header-main .nav-links a {
    color: #1a1a2e !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    background: none !important;
    padding: 0 !important;
    border: none !important;
    display: inline !important;
    position: relative !important;
}

html body .header .header-main .nav-links a.active {
    color: #f5b800 !important;
}

/* 7. Hamburger: HIDDEN on desktop */
html body .header .header-main .mobile-menu-btn {
    display: none !important;
}

/* ---- TABLET & MOBILE: =992px ---- */
@media (max-width: 992px) {
    html body .header .header-main nav {
        display: none !important; /* hide nav wrapper ï¿½ ul handles itself */
    }

    html body .header .header-main .mobile-menu-btn {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 28px !important;
        height: 22px !important;
        background: none !important;
        border: none !important;
        cursor: pointer !important;
        padding: 0 !important;
        z-index: 10002 !important;
    }

    html body .header .header-main .mobile-menu-btn span {
        display: block !important;
        width: 100% !important;
        height: 2.5px !important;
        background: #1a1a2e !important;
        border-radius: 3px !important;
        transition: all 0.35s ease !important;
    }

    html body .header .header-main .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(9.75px) rotate(45deg) !important;
    }
    html body .header .header-main .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0 !important;
    }
    html body .header .header-main .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-9.75px) rotate(-45deg) !important;
    }

    /* Mobile overlay nav */
    html body .header .header-main .nav-links {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: #1a1a2e !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 36px !important;
        z-index: 10001 !important;
        transform: translateX(100%) !important;
        transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1) !important;
        display: flex !important;
        padding: 0 !important;
    }

    html body .header .header-main .nav-links.active {
        transform: translateX(0) !important;
    }

    html body .header .header-main .nav-links a {
        color: #ffffff !important;
        font-size: 1.3rem !important;
        font-weight: 700 !important;
    }

    html body .header .header-main .nav-links a.active {
        color: #f5b800 !important;
    }
}

/* ---- MOBILE: =768px ---- */
@media (max-width: 768px) {
    html body .header {
        height: 68px !important;
    }

    html body .header .container {
        padding: 0 16px !important;
    }

    html body .header .header-main .logo img {
        height: 38px !important;
    }
}

/* ---- SMALL MOBILE: =480px ---- */
@media (max-width: 480px) {
    html body .header .container {
        padding: 0 12px !important;
    }

    html body .header .header-main .logo img {
        height: 32px !important;
    }
}
/* ==========================================================================
   MOBILE MENU TOGGLE FIX
   Problem: nav { display: none } was hiding nav-links even when .active
   Fix: nav must remain in DOM (display:block) on mobile; nav-links slides in
   ========================================================================== */

@media (max-width: 992px) {
    /* nav wrapper MUST be visible so fixed child nav-links can render */
    html body .header .header-main nav {
        display: block !important;
        position: static !important;
        width: 0 !important;
        height: 0 !important;
        overflow: visible !important;
    }

    /* nav-links: off-screen right by default */
    html body .header .header-main .nav-links {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: #1a1a2e !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 36px !important;
        z-index: 10001 !important;
        transform: translateX(100%) !important;
        transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1) !important;
        display: flex !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Slide IN when active */
    html body .header .header-main .nav-links.active {
        transform: translateX(0) !important;
    }

    /* Link styles inside overlay */
    html body .header .header-main .nav-links li {
        display: list-item !important;
        list-style: none !important;
    }

    html body .header .header-main .nav-links a {
        color: #ffffff !important;
        font-size: 1.4rem !important;
        font-weight: 700 !important;
        display: block !important;
        padding: 8px 0 !important;
        text-align: center !important;
        position: static !important;
        background: none !important;
    }

    html body .header .header-main .nav-links a.active {
        color: #f5b800 !important;
    }

    /* Hamburger above the overlay */
    html body .header .header-main .mobile-menu-btn {
        z-index: 10002 !important;
        position: relative !important;
    }

    /* White X lines when menu is open (dark bg) */
    html body .header .header-main .mobile-menu-btn.active span {
        background: #ffffff !important;
    }
}
/* btn-outline ï¿½ user applied style */
.btn-outline {
    background: rgba(72, 130, 52, 0.85) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08) !important;
    border: 2px solid var(--white) !important;
    color: var(--white) !important;
}
/* ==========================================================================
   FANCYBOX GALLERY ï¿½ WORKS PAGE
   ========================================================================== */

/* Filter Tabs */
.gallery-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.gallery-tab {
    padding: 10px 28px;
    border: 2px solid var(--gray-300);
    background: var(--white);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--secondary);
    transition: all 0.3s ease;
}

.gallery-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.gallery-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--secondary);
}

/* Gallery Grid */
.works-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* Gallery Items ï¿½ anchor tags */
a.work-item {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--gray-200);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    text-decoration: none;
    cursor: pointer;
}

a.work-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}

a.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

a.work-item:hover img {
    transform: scale(1.08);
}

/* Hover Overlay with View icon */
.work-overlay {
    position: absolute;
    inset: 0;
    background: rgba(72, 130, 52, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

a.work-item:hover .work-overlay {
    opacity: 1;
}

.work-overlay span {
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #488234;
    font-weight: 700;
    transform: scale(0.7);
    transition: transform 0.35s ease;
}

a.work-item:hover .work-overlay span {
    transform: scale(1);
}

/* Responsive Gallery */
@media (max-width: 992px) {
    .works-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .works-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .gallery-tabs {
        gap: 8px;
    }

    .gallery-tab {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .works-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}
/* ==========================================================================
   SERVICES DROPDOWN NAV
   ========================================================================== */

/* Parent item */
.nav-links .has-dropdown {
    position: relative;
}

/* Services toggle link */
.nav-links .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.has-dropdown:hover .dropdown-arrow,
.has-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown panel */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.14), 0 4px 20px rgba(0,0,0,0.08);
    list-style: none;
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    border-top: 3px solid #f5b800;
}

/* Arrow pointer */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-bottom-color: #f5b800;
    border-top: none;
}

/* Show on hover (desktop) */
.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

/* Dropdown items */
.dropdown-menu li {
    display: block;
}

.dropdown-menu a {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 12px 22px !important;
    font-size: 0.92rem !important;
    font-weight: 600 !important;
    color: #1a1a2e !important;
    white-space: nowrap;
    transition: all 0.2s ease !important;
    border-radius: 0 !important;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background: #fffbeb;
    color: #f5b800 !important;
    padding-left: 28px !important;
}

.dropdown-menu a::after {
    display: none !important;
}

/* -- MOBILE DROPDOWN (inside overlay) ---------------------- */
@media (max-width: 992px) {
    .has-dropdown {
        width: 100%;
        text-align: center;
    }

    .nav-links .dropdown-toggle {
        justify-content: center;
        color: #ffffff !important;
        font-size: 1.4rem !important;
    }

    .dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: all !important;
        box-shadow: none !important;
        background: rgba(255,255,255,0.08) !important;
        border-radius: 12px !important;
        border-top: none !important;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transition: max-height 0.4s ease, padding 0.3s ease !important;
        display: block;
        min-width: unset;
        width: 220px;
        margin: 8px auto 0;
    }

    .dropdown-menu::before { display: none !important; }

    .has-dropdown.open .dropdown-menu {
        max-height: 300px;
        padding: 8px 0;
    }

    .dropdown-menu a {
        color: #ffffff !important;
        font-size: 1.1rem !important;
        justify-content: center;
        padding: 10px 20px !important;
    }

    .dropdown-menu a:hover {
        background: rgba(245,184,0,0.15) !important;
        color: #f5b800 !important;
        padding-left: 20px !important;
    }
}
/* ============================================================
   !! FINAL AUTHORITY HEADER ï¿½ OVERRIDES ALL PREVIOUS RULES !!
   ============================================================ */

/* 1. Header bar ï¿½ full-width, fixed, white */
html body header.header {
    position: fixed !important;
    top: 0 !important; left: 0 !important; right: 0 !important;
    width: 100% !important;
    height: 80px !important;
    background: #fff !important;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10) !important;
    z-index: 9999 !important;
    /* block, NOT flex ï¿½ let inner container handle layout */
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* 2. Inner container ï¿½ edge-to-edge, full height */
html body header.header > .container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 48px !important;
    height: 80px !important;
    display: flex !important;
    align-items: center !important;
    box-sizing: border-box !important;
}

/* 3. Logo + Nav row ï¿½ logo LEFT, nav RIGHT */
html body header.header .header-main {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    height: 100% !important;
    gap: 0 !important;
    flex-wrap: nowrap !important;
}

/* 4. Logo */
html body header.header .logo {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
    text-decoration: none !important;
    margin: 0 !important;
    padding: 0 !important;
}
html body header.header .logo img {
    height: 52px !important;
    width: auto !important;
    display: block !important;
    max-width: none !important;
}

/* 5. Nav ï¿½ sits on right */
html body header.header nav {
    display: flex !important;
    align-items: center !important;
    margin-left: auto !important;
    flex-shrink: 0 !important;
}

/* 6. Nav-links row (DESKTOP) */
html body header.header .nav-links {
    position: static !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 6px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    overflow: visible !important;
    max-height: none !important;
    transition: none !important;
}

/* 7. Nav link items */
html body header.header .nav-links > li {
    display: list-item !important;
    list-style: none !important;
    position: relative !important;
}

html body header.header .nav-links > li > a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    padding: 8px 14px !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    color: #1a1a2e !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    background: transparent !important;
    border-radius: 8px !important;
    transition: color 0.2s, background 0.2s !important;
    border: none !important;
}

html body header.header .nav-links > li > a:hover,
html body header.header .nav-links > li > a.active {
    color: #f5b800 !important;
    background: rgba(245,184,0,0.08) !important;
}

/* 8. Hamburger ï¿½ HIDDEN on desktop */
html body header.header .mobile-menu-btn {
    display: none !important;
}

/* -- TABLET & MOBILE =992px ------------------------- */
@media (max-width: 992px) {

    html body header.header > .container {
        padding: 0 20px !important;
    }

    /* nav block ï¿½ zero size, overflow visible so fixed child can escape */
    html body header.header nav {
        display: block !important;
        width: 0 !important;
        height: 0 !important;
        overflow: visible !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
    }

    /* Nav overlay ï¿½ hidden off right */
    html body header.header .nav-links {
        position: fixed !important;
        top: 0 !important; left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: #1a1a2e !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 8px !important;
        z-index: 10001 !important;
        transform: translateX(100%) !important;
        transition: transform 0.4s cubic-bezier(0.77,0,0.175,1) !important;
        display: flex !important;
        padding: 40px 20px !important;
        overflow-y: auto !important;
        max-height: 100vh !important;
    }

    /* Slide in */
    html body header.header .nav-links.active {
        transform: translateX(0) !important;
    }

    html body header.header .nav-links > li { width: 100% !important; text-align: center !important; }
    html body header.header .nav-links > li > a {
        color: #fff !important;
        font-size: 1.25rem !important;
        font-weight: 700 !important;
        padding: 12px 24px !important;
        background: transparent !important;
        display: block !important;
        border-radius: 10px !important;
        width: 100% !important;
    }
    html body header.header .nav-links > li > a:hover,
    html body header.header .nav-links > li > a.active {
        color: #f5b800 !important;
        background: rgba(245,184,0,0.10) !important;
    }

    /* Hamburger ï¿½ VISIBLE on mobile */
    html body header.header .mobile-menu-btn {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 28px !important;
        height: 22px !important;
        background: none !important;
        border: none !important;
        cursor: pointer !important;
        padding: 0 !important;
        z-index: 10002 !important;
        position: relative !important;
        flex-shrink: 0 !important;
    }
    html body header.header .mobile-menu-btn span {
        display: block !important;
        width: 100% !important;
        height: 2.5px !important;
        background: #1a1a2e !important;
        border-radius: 3px !important;
        transition: all 0.35s ease !important;
    }
    html body header.header .mobile-menu-btn.active span { background: #1a1a2e !important; }
    html body header.header .mobile-menu-btn.active span:nth-child(1) { transform: translateY(9.75px) rotate(45deg) !important; }
    html body header.header .mobile-menu-btn.active span:nth-child(2) { opacity: 0 !important; }
    html body header.header .mobile-menu-btn.active span:nth-child(3) { transform: translateY(-9.75px) rotate(-45deg) !important; }
}

/* -- SMALL MOBILE =480px ----------------------------- */
@media (max-width: 480px) {
    html body header.header { height: 64px !important; }
    html body header.header > .container { height: 64px !important; padding: 0 14px !important; }
    html body header.header .logo img { height: 36px !important; }
}
/* btn-outline ï¿½ final */
.btn-outline {
    background: #488234 !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08) !important;
    border: 2px solid var(--white) !important;
    color: var(--white) !important;
}
/* ==========================================================================
   GLOBAL SPACING & BUTTON SYSTEM — SITE-WIDE FIX
   ========================================================================== */

/* 1. Container — safe padding on all screen sizes */
.container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 48px;
    padding-right: 48px;
    box-sizing: border-box;
}

/* 2. All sections — consistent vertical breathing room */
.section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* 3. Button base — generous padding, no clipping */
.btn,
button.btn,
a.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 36px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    letter-spacing: 0.3px;
}

/* 4. CTA section — centred with ample padding */
.cta-section {
    padding: 80px 0;
    text-align: center;
}
.cta-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px;
}
.cta-content h2 { margin-bottom: 16px; }
.cta-content p  { margin-bottom: 28px; }
.cta-content .btn { margin: 0 auto; }

/* 5. Page-header section */
.page-header {
    padding: 140px 0 80px;
    text-align: center;
}

/* 6. Section headers */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
    padding: 0 16px;
}

/* -- TABLET (= 1024px) -- */
@media (max-width: 1024px) {
    .container {
        padding-left: 36px;
        padding-right: 36px;
    }
}

/* -- TABLET (= 768px) -- */
@media (max-width: 768px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .section {
        padding-top: 56px;
        padding-bottom: 56px;
    }
    .cta-section { padding: 56px 0; }
    .page-header { padding: 120px 0 60px; }
    .btn,
    button.btn,
    a.btn {
        padding: 13px 28px;
        font-size: 0.9rem;
    }
}

/* -- MOBILE (= 480px) -- */
@media (max-width: 480px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .section {
        padding-top: 44px;
        padding-bottom: 44px;
    }
    .cta-section { padding: 44px 0; }
    .page-header { padding: 104px 0 48px; }
    .btn,
    button.btn,
    a.btn {
        padding: 12px 24px;
        font-size: 0.88rem;
        width: auto;
        max-width: 100%;
    }
    /* Prevent any button from overflowing viewport */
    .cta-content .btn {
        width: auto;
        min-width: 160px;
    }
    .section-header { margin-bottom: 32px; }
}
/* ==========================================================================
   BUTTON SPACING — CONTEXT-AWARE GAPS (all pages)
   ========================================================================== */

/* About-content button: space above from list/text */
.about-content .btn,
.about-content a.btn {
    margin-top: 32px;
    display: inline-flex;
}

/* Service card button: space above from content */
.service-card .btn,
.service-card a.btn {
    margin-top: 24px;
    display: inline-flex;
}

/* Feature card button */
.feature-card .btn,
.feature-card a.btn {
    margin-top: 20px;
    display: inline-flex;
}

/* CTA section: centred, balanced */
.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 32px;
}
.cta-content h2 { margin-bottom: 16px; }
.cta-content p  { margin-bottom: 28px; max-width: 560px; }
.cta-content .btn { align-self: center; }

/* Hero / slider buttons */
.hero-content .btn,
.slide-content .btn,
.slider-content .btn {
    margin-top: 28px;
    margin-right: 12px;
}

/* -- TABLET = 768px -- */
@media (max-width: 768px) {
    .about-content .btn  { margin-top: 24px; }
    .service-card .btn   { margin-top: 20px; }
    .cta-content         { padding: 0 20px; }
    .cta-content p       { margin-bottom: 22px; }

    /* Buttons full-width on narrow screens so they don't clip right edge */
    .cta-content .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

/* -- MOBILE = 480px -- */
@media (max-width: 480px) {
    .about-content .btn,
    .service-card .btn,
    .feature-card .btn {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        text-align: center;
        box-sizing: border-box;
    }
    .cta-content         { padding: 0 12px; }
    .cta-content .btn    { max-width: 100%; }
    .hero-content .btn,
    .slide-content .btn  { margin-right: 0; margin-bottom: 0; }
    .hero-buttons .btn   { margin-top: 0 !important; margin-bottom: 0 !important; }
/* ==========================================================================
   DEFINITIVE ABOUT-GRID & ABOUT-LIST FIX — all service pages
   ========================================================================== */

/* 2-col grid: image left, content right */
.about-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 64px !important;
    align-items: center !important;
    overflow: visible !important;
}

/* Image side */
.about-image {
    overflow: hidden !important;
    border-radius: 16px !important;
    box-shadow: 0 16px 48px rgba(0,0,0,0.12) !important;
    flex-shrink: 0 !important;
}
.about-image img {
    width: 100% !important;
    height: 420px !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 16px !important;
}

/* Content side — must NOT clip its children */
.about-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    overflow: visible !important;
    position: static !important;
    z-index: auto !important;
}

/* Numbered list */
.about-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 20px 0 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
}

.about-list li {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    font-size: 0.96rem !important;
    font-weight: 500 !important;
    color: #333 !important;
    position: static !important;
    overflow: visible !important;
}

/* The numbered badge */
.about-list li > span:first-child {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    border-radius: 50% !important;
    background: #488234 !important;
    color: #fff !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    position: static !important;
    z-index: auto !important;
}

/* ==========================================================================
   NAV-LINKS.ACTIVE CONFLICT FIX — neutralise the old absolute dropdown rule
   ========================================================================== */

/* Kill the old white-background absolute dropdown */
.nav-links.active {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: auto !important;
    width: 100vw !important;
    height: 100vh !important;
    background: #1a1a2e !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 40px 20px !important;
    box-shadow: none !important;
    z-index: 10001 !important;
    transform: translateX(0) !important;
}

/* Desktop: nav-links must NEVER show as overlay */
@media (min-width: 993px) {
    .header .nav-links,
    .header-main .nav-links,
    html body .header .nav-links {
        position: static !important;
        transform: none !important;
        display: flex !important;
        flex-direction: row !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: all !important;
        padding: 0 !important;
        overflow: visible !important;
        max-height: none !important;
    }
    /* The active class on desktop should NOT trigger overlay */
    .header .nav-links.active,
    .header-main .nav-links.active,
    html body .header .nav-links.active {
        position: static !important;
        transform: none !important;
        display: flex !important;
        flex-direction: row !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        padding: 0 !important;
        box-shadow: none !important;
    }
}

/* Responsive about-grid */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    .about-image img { height: 300px !important; }
    .about-content { align-items: stretch !important; }
}
@media (max-width: 480px) {
    .about-image img { height: 220px !important; }
    .about-list li { font-size: 0.9rem !important; }
}









/* CTA Bar Styles */
.cta-bar {
    margin-top: 60px;
    padding: 30px 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(245, 184, 0, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    backdrop-filter: blur(10px);
}

.cta-bar p {
    margin-bottom: 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
}

.cta-bar .btn {
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .cta-bar {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 20px;
    }
}
