* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #f5b800;
    --primary-dark: #d9a200;
    --secondary: #1a1a2e;
    --secondary-light: #16213e;
    --accent: #0f3460;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
}

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;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 184, 0, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--secondary);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.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;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
    width: auto;
    max-height: 50px;
}

.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;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 50%, var(--accent) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

/* 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;
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.slide-content h1 span {
    color: var(--primary);
}

.slide-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out 0.2s 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: rgba(26, 26, 46, 0.3);
    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: transparent;
    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;
}

.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: '✓';
    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.5rem;
    }

    .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: 20px 0 60px;
    }

    .slide-content h1 {
        font-size: 1.75rem;
        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: 20px;
    }

    .badge {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .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 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 50px 0;
    background: var(--gray-100);
}

.stats-item {
    text-align: center;
}

.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;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    background: linear-gradient(135deg, var(--primary) 0%, #ff6b00 100%);
    border-radius: 20px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-content h2 span {
    color: var(--primary);
}

.about-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.about-list {
    margin-top: 30px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    font-size: 1rem;
}

.about-list li span {
    width: 30px;
    height: 30px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--secondary);
}


/* Unique Contact Page Styles */
.contact-unique-section {
    padding: 120px 0;
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
    color: var(--text-dark);
}

.contact-unique-section::before {
    content: "";
    position: absolute;
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: var(--primary);
    filter: blur(150px);
    opacity: 0.08;
    border-radius: 50%;
    z-index: 0;
}

.contact-unique-section .container {
 position: relative;
 z-index: 1;
}

.contact-unique-grid {
 display: grid;
 grid-template-columns: 1fr 1.2fr;
 gap: 60px;
 align-items: start;
}

.glass-card {
 background: linear-gradient(145deg, #f5f5f5 0%, #ffffff 50%, #e8e8e8 100%);
 backdrop-filter: blur(15px);
 -webkit-backdrop-filter: blur(15px);
 border: 1px solid rgba(0, 0, 0, 0.1);
 border-radius: 24px;
 padding: 40px;
 box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 40px rgba(72, 130, 52, 0.08);
 color: #1a1a2e;
 position: relative;
 overflow: hidden;
}

.glass-card::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 height: 4px;
 background: linear-gradient(90deg, var(--primary), #ff9d00, var(--primary));
}

.glass-card::after {
 content: '';
 position: absolute;
 top: -50%;
 right: -50%;
 width: 100%;
 height: 100%;
 background: radial-gradient(circle, rgba(245, 184, 0, 0.08) 0%, transparent 70%);
 pointer-events: none;
}

.contact-info-glow {
 display: flex;
 flex-direction: column;
 gap: 30px;
}

.info-item-unique {
 display: flex;
 gap: 20px;
 padding: 24px;
 background: #f8f8f8;
 border-radius: 20px;
 transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
 border: 1px solid #e0e0e0;
 color: #333333;
}

.info-item-unique:hover {
 transform: translateX(10px) translateY(-5px);
 background: #ffffff;
 border-color: var(--primary);
 box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.info-icon-unique {
 width: 60px;
 height: 60px;
 background: linear-gradient(135deg, var(--primary) 0%, #ff9d00 100%);
 border-radius: 16px;
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 1.5rem;
 color: var(--secondary);
 box-shadow: 0 8px 15px rgba(245, 184, 0, 0.3);
}

.info-content-unique h4 {
 color: var(--primary);
 margin-bottom: 5px;
 font-size: 1.1rem;
 letter-spacing: 0.5px;
}

.info-content-unique p {
 color: rgb(0 0 0 / 90%);
 line-height: 1.5;
}

/* Floating Labels Form */
.unique-form .form-group {
 position: relative;
 margin-bottom: 25px;
}

.unique-form .form-control {
    width: 100%;
    padding: 16px 20px;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    color: #333333;
    font-size: 1rem;
    transition: all 0.3s;
    outline: none;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.unique-form .form-control::placeholder {
    color: #999999;
}

.unique-form .form-control option {
    color: #333333;
    background-color: #ffffff;
}

.unique-form .form-control:focus {
 border-color: var(--primary);
 background: #ffffff;
 box-shadow: 0 0 0 4px rgba(245, 184, 0, 0.15), 0 4px 15px rgba(0, 0, 0, 0.1);
}

.unique-form label {
 position: absolute;
 left: 20px;
 top: 50%;
 transform: translateY(-50%);
 color: #666666;
 pointer-events: none;
 transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
 background: transparent;
}

.unique-form .form-group.focused label,
.unique-form .form-group.has-value label {
 top: 0;
 transform: translateY(-50%) scale(0.85);
 background: linear-gradient(145deg, #f5f5f5 0%, #ffffff 100%);
 padding: 0 10px;
 left: 15px;
 color: var(--primary);
 font-weight: 600;
}

.unique-form textarea.form-control {
 min-height: 120px;
 resize: none;
}

.unique-form textarea + label {
 top: 25px;
}

.submit-btn-unique {
 width: 100%;
 padding: 18px;
 background: linear-gradient(135deg, var(--primary) 0%, #e6a500 50%, #ff9d00 100%);
 border: none;
 border-radius: 12px;
 color: #1a1a2e;
 font-weight: 700;
 font-size: 1.1rem;
 cursor: pointer;
 transition: all 0.3s;
 box-shadow: 0 8px 25px rgba(245, 184, 0, 0.35), 0 4px 10px rgba(0, 0, 0, 0.2);
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 10px;
 text-transform: uppercase;
 letter-spacing: 1px;
}

.submit-btn-unique:hover {
 transform: translateY(-4px) scale(1.02);
 box-shadow: 0 15px 35px rgba(245, 184, 0, 0.45), 0 8px 20px rgba(0, 0, 0, 0.3);
 filter: brightness(1.1);
}

.submit-btn-unique:active {
 transform: translateY(-2px) scale(1.01);
}

.submit-btn-unique:disabled {
 opacity: 0.7;
 cursor: not-allowed;
 transform: none;
}

.form-message {
 padding: 20px;
 border-radius: 12px;
 text-align: center;
 margin-bottom: 20px;
 font-size: 1rem;
}

.form-message.success {
 background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
 color: #155724;
 border: 1px solid #c3e6cb;
}

.form-message.error {
 background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
 color: #721c24;
 border: 1px solid #f5c6cb;
}

@media (max-width: 991px) {
 .contact-unique-grid {
 grid-template-columns: 1fr;
 gap: 40px;
 }
}


/* Products Section */
.products-section {
    padding: 80px 0;
    background: var(--gray-100);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.product-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;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(245, 184, 0, 0.2);
    border-color: rgba(245, 184, 0, 0.3);
}

.product-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: transparent;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: all 0.3s ease;
    overflow: hidden;
}
.product-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-card:hover .product-icon {
    transform: scale(1.1);
}
.product-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 20px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-product {
    display: inline-block;
    padding: 10px 28px;
    background: var(--primary);
    color: var(--secondary);
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-product:hover {
    background: #488234;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 26, 46, 0.3);
}

/* Products Responsive */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 60px 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card {
        padding: 25px 20px;
    }

    .product-icon {
        width: 70px;
        height: 70px;
    }
.product-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

    .product-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .product-card h3 {
        font-size: 1rem;
        min-height: auto;
    }
}

/* Bento Grid Section */
.bento-section {
    padding: 100px 0;
    background: var(--gray-100);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 24px;
    grid-template-areas:
        "epc epc quality subsidy"
 "epc epc industrial industrial";
}

.bento-item {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.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);
    transition: background 0.3s;
}

.bento-item:hover .bento-overlay {
    background: linear-gradient(to top, rgba(26, 26, 46, 0.95) 0%, rgba(26, 26, 46, 0.6) 50%, rgba(245, 184, 0, 0.1) 100%);
}

.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;
    max-width: 400px;
    display: -webkit-box;
 -webkit-line-clamp: 3;
 -webkit-box-orient: vertical;
 overflow: hidden;
}

/* Grid Areas */
.bento-epc { grid-area: epc; }
.bento-quality { grid-area: quality; }
.bento-subsidy { grid-area: subsidy; }
.bento-industrial { grid-area: industrial; }

/* Adjustments for specific items */
.bento-epc h3 { font-size: 2.5rem; }

@media (max-width: 1200px) {
 .bento-grid {
 grid-template-rows: repeat(2, 250px);
 }
}

@media (max-width: 991px) {
 .bento-grid {
 grid-template-columns: repeat(2, 1fr);
 grid-template-rows: auto;
 grid-template-areas:
 "epc epc"
 "quality subsidy"
 "industrial industrial";
 }
 .bento-item { height: 350px; }
}

@media (max-width: 576px) {
 .bento-grid {
 grid-template-columns: 1fr;
 grid-template-areas:
 "epc"
 "quality"
 "subsidy"
 "industrial";
 }
 .bento-item { height: 300px; }
 .bento-item h3 { font-size: 1.5rem; }
 .bento-epc h3 { font-size: 1.8rem; }
}


/* Large Product Cards Section */
.products-section-large {
    padding: 100px 0;
    background: var(--white);
}

.products-grid-large {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.product-card-large {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: #488234;
    box-shadow: var(--shadow);
    transition: all 0.5s ease;
}

.product-card-large .product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card-large:hover .product-img {
    transform: scale(1.1) rotate(2deg);
}

.product-info-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.95) 0%, rgba(26, 26, 46, 0.6) 40%, transparent 100%);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.product-card-large:hover .product-info-overlay {
    transform: translateY(0);
    background: linear-gradient(to top, var(--secondary) 0%, rgba(26, 26, 46, 0.8) 50%, rgba(245, 184, 0, 0.1) 100%);
}

.product-card-large h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--primary);
    line-height: 1.2;
}

.product-card-large p {
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
    margin-bottom: 20px;
    line-height: 1.5;
}

.product-card-large:hover p {
    opacity: 0.9;
    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) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Bento Grid Mobile Improvements */
@media (max-width: 576px) {
    .bento-grid {
        gap: 16px;
    }
    .bento-item { 
        height: auto;
        min-height: 200px;
    }
    .bento-item h3 { font-size: 1.2rem; }
    .bento-epc h3 { font-size: 1.4rem; }
    .bento-content { 
        padding: 20px;
    }
    .bento-item p {
        font-size: 0.9rem;
    }
}

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVE FIXES
   ============================================ */

/* General Mobile Improvements */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
}

/* Page Header Mobile */
@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .breadcrumb {
        font-size: 0.85rem;
    }
}

/* About Grid Mobile */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
        max-height: 300px;
    }
    
    .about-content h2 {
        font-size: 1.6rem;
    }
}

/* Contact Page Mobile */
@media (max-width: 768px) {
    .contact-unique-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-unique-section {
        padding: 80px 0;
    }
    
    .glass-card {
        padding: 30px 20px;
    }
    
    .info-item-unique {
        padding: 16px;
    }
}

/* Products Grid Mobile */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .product-card {
        padding: 20px;
    }
    
    .product-card h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Stats Bar Mobile */
@media (max-width: 480px) {
    .stats-bar {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px;
    }
    
    .stats-number {
        font-size: 2.5rem;
    }
}

/* Trust Section Mobile */
@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .trust-card {
        padding: 30px 20px;
    }
}

/* Footer Mobile */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }
    
    .footer-brand {
        max-width: 100%;
        text-align: left;
    }
    
    .footer-links,
    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer h4 {
        text-align: left;
    }
    
    .footer-links li,
    .footer-contact li {
        text-align: left;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: left;
    }
}

/* CTA Section Mobile */
@media (max-width: 768px) {
    .cta-box {
        padding: 40px 30px;
    }
    
    .cta-box h2 {
        font-size: 1.5rem;
    }
}

/* Testimonials Mobile */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* General Typography Mobile */
@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    p {
        font-size: 0.95rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}
