/* ------------------------------
   RESET & BASE
------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #81C784; /* Soft Green */
    --primary-light: #A5D6A7;
    --primary-dark: #66BB6A;
    --secondary: #4CAF50; /* Fresh Green */
    --accent: #FFC107; /* Warm Yellow */
    --light: #E8F5E9; /* Light Mint White */
    --dark: #121212; /* Dark Charcoal */
    --gray: #B0BEC5;
    --light-gray: #263238;
    --white: #1E1E1E; /* Card Background */
    --card-bg: #1E1E1E;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--light); /* Text color changed to Light Mint White */
    background-color: var(--dark); /* Background changed to Dark Charcoal */
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--light);
}

.section-header h2 span {
    color: var(--primary);
    position: relative;
}

.section-header h2 span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    background: var(--accent); /* Changed to Warm Yellow */
    bottom: -5px;
    left: 0;
    border-radius: 2px;
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    gap: 10px;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--dark);
    box-shadow: 0 5px 15px rgba(129, 199, 132, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(129, 199, 132, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--dark);
}

.highlight {
    color: var(--primary);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 6px;
    background: rgba(255, 193, 7, 0.3); /* Changed to Warm Yellow */
    bottom: 2px;
    left: 0;
    z-index: -1;
}

/* ------------------------------
   HEADER
------------------------------- */
header {
    background: rgba(18, 18, 18, 0.95); /* Dark Charcoal with opacity */
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    background: none !important;
    border-radius: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img {
    height: 70px !important;
    width: 300px !important;
    max-width: 800px !important;
    object-fit: cover !important;
}

.logo h1 {
    color: var(--primary); /* Soft Green */
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.logo p {
    font-size: 0.9rem;
    color: var(--accent); /* Warm Yellow */
    font-weight: 500;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    text-decoration: none;
    color: var(--light); /* Light Mint White */
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary); /* Soft Green on hover/active */
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: var(--primary); /* Soft Green underline */
    bottom: 0;
    left: 0;
    border-radius: 2px;
    transition: var(--transition);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--light); /* Light Mint White */
    transition: var(--transition);
}

/* Mobile navigation active state */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background: var(--card-bg); /* Dark Card Background */
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li a {
        color: var(--light); /* Light Mint White */
        font-size: 1.1rem;
        padding: 10px 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

/* ------------------------------
   HERO SECTION
------------------------------- */
.hero {
    padding: 180px 20px 100px; /* Changed from 160px to 180px at the top */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: linear-gradient(135deg, #1A1A1A 0%, #121212 100%);
    position: relative;
    overflow: hidden;
    margin-top: 0; /* Ensure no margin is pushing it up */
}

.hero::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(129, 199, 132, 0.1); /* Soft Green with opacity */
    border-radius: 50%;
    top: -150px;
    right: -100px;
}

.hero::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 193, 7, 0.1); /* Warm Yellow with opacity */
    border-radius: 50%;
    bottom: -100px;
    left: -50px;
}

.hero-tag {
    display: inline-block;
    background: var(--accent); /* Changed to Warm Yellow */
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hero-content h2 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--light);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 30px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.mini-stat {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mini-stat i {
    font-size: 2rem;
    color: var(--primary);
    background: var(--light-gray);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.mini-stat p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

.hero-image-container {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.hero-image img:hover {
    transform: scale(1.02);
}

.floating-card {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--card-bg);
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    width: 180px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.floating-card h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--light);
}

.floating-card p {
    font-size: 0.9rem;
    color: var(--gray);
}

/* ------------------------------
   ABOUT SECTION
------------------------------- */
.about {
    padding: 100px 20px;
    background: var(--dark);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--dark);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
}

.experience-badge h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.about-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    border-radius: 15px;
    background: var(--card-bg);
    transition: var(--transition);
}

.about-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.about-feature h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--light);
}

.about-feature p {
    color: var(--gray);
}

/* ------------------------------
   SERVICES SECTION
------------------------------- */
.services {
    padding: 100px 20px;
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-card::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 0;
    background: var(--primary);
    top: 0;
    left: 0;
    transition: var(--transition);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--dark);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--light);
}

.service-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.service-link:hover {
    gap: 15px;
    color: var(--accent);
}

.service-corner {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: rgba(255, 255, 255, 0.05);
    font-size: 3rem;
}


/* ------------------------------
   PRODUCTS SECTION
------------------------------- */
.products {
    padding: 100px 20px;
    background: var(--light-gray);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns per row */
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.product-image {
    height: 200px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(129, 199, 132, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay h4 {
    color: var(--dark);
    font-weight: 600;
    font-size: 1.2rem;
    padding: 10px 20px;
    background: var(--light);
    border-radius: 30px;
}

.product-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--light);
    font-weight: 600;
}

.product-content p {
    color: var(--gray);
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    flex-grow: 1;
}

.products-view-more {
    text-align: center;
    margin-top: 40px;
}

/* Responsive Design for Products */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on medium screens */
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }
    
    .product-image {
        height: 180px;
    }
}


/* ------------------------------
   STATS SECTION
------------------------------- */
.stats {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1A1A1A, var(--dark));
    color: var(--light);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(129, 199, 132, 0.05); /* Soft Green with opacity */
    border-radius: 50%;
    top: -200px;
    right: -100px;
}

.stats .section-header h2,
.stats .section-header p {
    color: var(--light);
}

.stats .section-header h2 span {
    color: var(--accent); /* Changed to Warm Yellow */
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.stat-box {
    background: rgba(30, 30, 30, 0.5); /* Card Background with opacity */
    backdrop-filter: blur(10px);
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-box:hover {
    transform: translateY(-5px);
    background: rgba(30, 30, 30, 0.7);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--accent); /* Changed to Warm Yellow */
    margin-bottom: 20px;
}

.stat-box h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--light);
}

.stat-box p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.stat-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--accent); /* Changed to Warm Yellow */
    transition: width 2s ease;
}

.stat-box:hover .stat-progress {
    width: 100%;
}

/* ------------------------------
   REVIEWS SECTION - FIXED
------------------------------- */
.reviews {
    padding: 100px 100px;
    background: #1A1A1A;
}

.reviews .section-header h2 {
    color: var(--light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.reviews .section-header p {
    color: var(--light);
    background: rgba(30, 30, 30, 0.9); /* Card Background with opacity */
    padding: 15px 30px;
    border-radius: 30px;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.reviews-container {
    max-width: 1000px;
    margin: 0 auto;
}

.review-carousel {
    position: relative;
    min-height: 450px;
    margin-bottom: 20px;
}

.review-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateX(30px);
    width: 80%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
    z-index: 1;
}

.review-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateX(0);
    z-index: 2;
    position: relative;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.reviewer-info h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--light);
}

.reviewer-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

.review-rating {
    color: var(--accent); /* Changed to Warm Yellow */
    font-size: 1.2rem;
    flex-shrink: 0;
}

.review-body {
    margin-bottom: 20px;
}

.review-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light);
}

.review-note {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    border-left: 4px solid var(--primary);
}

.review-note p {
    font-style: italic;
    margin-bottom: 15px;
    color: var(--light);
}

.review-signature {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.review-signature p {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: var(--gray);
}

.review-quote {
    position: absolute;
    bottom: 30px;
    right: 30px;
    color: rgba(255, 255, 255, 0.05);
    font-size: 4rem;
}

.review-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 10;
}

.control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 2px solid var(--primary);
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.control-btn:hover {
    background: var(--primary);
    color: var(--dark);
    transform: scale(1.1);
}

.review-dots {
    display: flex;
    gap: 10px;
    position: relative;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Mobile Responsive for Reviews Section */
@media (max-width: 992px) {
    .reviews {
        padding: 80px 40px;
    }
    
    .review-carousel {
        min-height: 500px;
    }
    
    .review-card {
        width: 90%;
        padding: 35px 25px;
    }
    
    .review-body p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .reviews {
        padding: 60px 20px;
    }
    
    .reviews .section-header h2 {
        font-size: 2rem;
    }
    
    .reviews .section-header p {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .review-carousel {
        min-height: 550px;
    }
    
    .review-card {
        width: 95%;
        padding: 30px 20px;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .review-rating {
        align-self: flex-start;
    }
    
    .reviewer-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .reviewer-info h4 {
        font-size: 1.1rem;
    }
    
    .reviewer-info p {
        font-size: 0.85rem;
    }
    
    .review-body p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .review-quote {
        font-size: 3rem;
        bottom: 20px;
        right: 20px;
    }
    
    .review-controls {
        gap: 20px;
        margin-top: 40px;
    }
    
    .control-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .reviews {
        padding: 50px 15px;
    }
    
    .reviews .section-header h2 {
        font-size: 1.8rem;
    }
    
    .reviews .section-header p {
        padding: 10px 15px;
        font-size: 0.9rem;
        max-width: 90%;
    }
    
    .review-carousel {
        min-height: 600px;
    }
    
    .review-card {
        width: 100%;
        padding: 25px 15px;
        border-radius: 15px;
    }
    
    .reviewer-info {
        gap: 12px;
    }
    
    .reviewer-avatar {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .reviewer-info h4 {
        font-size: 1rem;
    }
    
    .reviewer-info p {
        font-size: 0.8rem;
    }
    
    .review-rating {
        font-size: 1rem;
    }
    
    .review-body p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .review-quote {
        font-size: 2.5rem;
        bottom: 15px;
        right: 15px;
        opacity: 0.3;
    }
    
    .review-controls {
        gap: 15px;
        margin-top: 30px;
    }
    
    .control-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

/* ------------------------------
   CONTACT SECTION
------------------------------- */
.contact {
    padding: 100px 20px;
    background: var(--dark);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-details {
    margin: 40px 0;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    border-radius: 15px;
    background: var(--card-bg);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--light);
}

.contact-item p {
    color: var(--gray);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--light-gray);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-5px);
}

.contact-form {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--light-gray);
    color: var(--light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(129, 199, 132, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}

.contact-form button {
    width: 100%;
}

/* ------------------------------
   FOOTER
------------------------------- */
footer {
    background: linear-gradient(135deg, #1A1A1A, var(--dark));
    color: var(--light);
    padding: 80px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo .logo-icon {
    background: rgba(255, 255, 255, 0.1);
}

.footer-logo h1,
.footer-logo p {
    color: var(--light);
}

.footer-description {
    margin-top: 20px;
    opacity: 0.8;
    line-height: 1.7;
}

.footer-links h4,
.footer-services h4,
.footer-newsletter h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: var(--light);
}

.footer-links h4::after,
.footer-services h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--accent); /* Changed to Warm Yellow */
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 15px;
}

.footer-links a,
.footer-services a {
    color: rgba(232, 245, 233, 0.8); /* Light Mint White with opacity */
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--light);
    padding-left: 5px;
}

.footer-newsletter p {
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    border-radius: 50px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    background: transparent;
    color: var(--light);
    font-family: 'Poppins', sans-serif;
}

.newsletter-form input::placeholder {
    color: rgba(232, 245, 233, 0.6); /* Light Mint White with opacity */
}

.newsletter-form button {
    background: var(--accent); /* Changed to Warm Yellow */
    color: var(--dark);
    border: none;
    padding: 0 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.newsletter-form button:hover {
    background: #FFB300;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    opacity: 0.8;
}

.footer-policies {
    display: flex;
    gap: 30px;
}

.footer-policies a {
    color: rgba(232, 245, 233, 0.8); /* Light Mint White with opacity */
    text-decoration: none;
    transition: var(--transition);
}

.footer-policies a:hover {
    color: var(--light);
}

/* ------------------------------
   RESPONSIVE DESIGN
------------------------------- */
@media (max-width: 992px) {
    .hero,
    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background: var(--card-bg);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 25px;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-policies {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 140px 20px 80px;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .service-card,
    .review-card,
    .contact-form {
        padding: 30px 20px;
    }
    
    .floating-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        width: 100%;
    }
}