/* CSS Reset & Root Variables */
:root {
    --primary-dark: #0B5A5C;
    --primary-dark-light: #2a6477;
    --primary-dark-lighter: #3a7b91;
    --accent-lime: #76C043;
    --accent-lime-hover: #A5D6A7;
    --text-dark: #1a1a1a;
    --text-medium: #666666;
    --text-light: #a8d5d5;
    --white: #ffffff;
    --gray-light: #f0f0f0;
    --border-color: #e0e0e0;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    background-image: 
        linear-gradient(to right, var(--gray-light) 1px, transparent 1px),
        linear-gradient(to bottom, var(--gray-light) 1px, transparent 1px);
    background-size: 50px 50px;
    line-height: 1.6;
   
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 30px;
    }
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--gray-light);
}


.logo-icon img{
    width: 100px;
   
}

nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

nav a {
    text-decoration: none;
    color: var(--text-medium);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.6s;
}

nav a:hover {
    color: var(--primary-dark);
}

nav a:first-child {
    color: var(--text-dark);
    font-weight: 600;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-login {
    padding: 10px 24px;
    background: transparent;
    border: none;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s;
}

.btn-login:hover {
    color: var(--primary-dark);
}

.btn-signup {
    padding: 10px 28px;
    background-color: var(--accent-lime);
    border: none;
    border-radius: 6px;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.4s;
}

.btn-signup:hover {
    background-color: var(--accent-lime-hover);
}
.active{
    color: var(--primary-dark);
    font-weight: 600;
    background-color: var(--accent-lime);
    padding: 8px 16px;
    border-radius: 6px;
    transition: background-color 0.4s;
}
.active:hover{
    background-color: var(--accent-lime-hover);
}

/* Desktop Menu Toggle - Hidden by default */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--primary-dark);
    padding: 8px;
    z-index: 1001;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        right: 10px;
        background-color: var(--white);
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        min-width: 150px;
        gap: 15px;
    }

    /* Show navigation when toggle is active */
    .nav-links.show-links {
        display: flex !important;
    }

    .nav-links a {
        padding: 10px 15px;
        text-align: left;
        border-radius: 6px;
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        background-color: rgba(110, 193, 228, 0.1);
    }

    .header-buttons {
        display: none;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .nav-links {
        gap: 25px;
    }
}

.nav-links {
    transition: all 0.6s ease-in-out;
}


/* Hero Section */
.hero {
    padding: 80px 0 60px;
    text-align: center;
}

.hero h1 {
    font-size: 4.2rem;
    font-weight: 900;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-get-started {
    padding: 14px 38px;
    background-color: var(--accent-lime);
    border: none;
    border-radius: 6px;
    color: var(--primary-dark);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    margin-bottom: 60px;
}

.btn-get-started:hover {
    background-color: var(--accent-lime-hover);
    transform: translateY(-2px);
}

/* Team Cards */
.team-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 80px;
    align-items: end;
}

.card {
    background-color: var(--primary-dark);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 380px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Make first and last cards taller */
.card:first-child,
.card:last-child {
    height: 420px;
}

.card-content {
    padding: 30px 0;
    text-align: center;
    z-index: 2;
}

.card-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: px;
}

.card-title {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.card-image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 75%;
    background-color: var(--primary-dark-light);
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Placeholder for images */
.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-dark-light) 0%, var(--primary-dark-lighter) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 14px;
    text-align: center;
    padding: 20px;
}

/* Company Logos */
.company-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    opacity: 0.4;
}

.company-logos img {
    height: 35px;
    object-fit: contain;
    filter: grayscale(100%);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .team-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .card:first-child,
    .card:last-child {
        height: 380px;
    }
}

@media (max-width: 768px) {
    nav {
        gap: 20px;
        font-size: 14px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 16px;
    }

    .team-cards {
        grid-template-columns: 1fr;
    }

    .company-logos {
        gap: 40px;
    }

    .card,
    .card:first-child,
    .card:last-child {
        height: 380px;
    }
}

/* Services Section */
.services-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 0;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-header p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: stretch;
}

.service-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid var(--primary-dark);
    box-shadow: 0 8px 30px rgba(13, 77, 77, 0.2);

}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(13, 77, 77, 0.1);
}

/* Highlighted card - second card */
.service-card.highlighted {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.service-card.highlighted .service-title {
    color: var(--white);
}

.service-card.highlighted .service-description {
    color: var(--text-light);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background-color: var(--primary-dark);
}

.service-card.highlighted .service-icon {
    background-color: var(--accent-lime);
}

.service-icon img {
    width: 32px;
    height: 32px;
    fill: var(--primary-dark);
}

.service-card.highlighted .service-icon img {
    fill: var(--primary-dark);
}

/* Icon placeholder styling - Remove this when you add real SVG icons */
.icon-placeholder {
    width: 32px;
    height: 32px;
    background: var(--primary-dark);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--white);
}

.service-card.highlighted .icon-placeholder {
    background: var(--white);
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-description {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-header h2 {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-section {
        padding: 60px 0;
    }

    .service-card {
        padding: 30px 24px;
    }
}


/* Carousel Section */
.carousel-section {
    padding: 100px 0;
    background-color: var(--white);
    overflow: hidden;
}

.carousel-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 60px;
}

.carousel-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.carousel-header p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Carousel Container */
.carousel-container {
    position: relative;
    width: 100%;
}

/* Gradient Overlays */
.carousel-container::before,
.carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.carousel-container::before {
    left: 0;
    background: linear-gradient(to right, var(--white) 0%, transparent 100%);
}

.carousel-container::after {
    right: 0;
    background: linear-gradient(to left, var(--white) 0%, transparent 100%);
}

/* Carousel Track */
.carousel-track {
    display: flex;
    gap: 30px;
    animation: scroll 40s linear infinite;
    width: fit-content;
}

.carousel-track:hover {
    animation-play-state: paused;
}

/* Duplicate for seamless loop */
.carousel-track-wrapper {
    display: flex;
    gap: 30px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% - 30px));
    }
}

/* Carousel Card */
.carousel-card {
    flex: 0 0 380px;
    background-color: var(--white);
    border: 2px solid var(--accent-lime);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.carousel-card:hover {
    border-color: var(--accent-lime);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(13, 77, 77, 0.12);
}

.carousel-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.carousel-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(212, 255, 0, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.carousel-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-dark);
}

/* Icon placeholder - remove when adding real icons */
.carousel-icon-placeholder {
    width: 24px;
    height: 24px;
    background: var(--primary-dark);
    border-radius: 4px;
}

.carousel-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.3;
}

.carousel-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.carousel-card-list li {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
}

.carousel-card-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-lime);
    font-weight: bold;
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .carousel-section {
        padding: 60px 0;
    }

    .carousel-header {
        padding: 0 30px;
        margin-bottom: 40px;
    }

    .carousel-header h2 {
        font-size: 36px;
    }

    .carousel-card {
        flex: 0 0 300px;
        padding: 24px 20px;
    }

    .carousel-track {
        gap: 20px;
        animation: scroll 30s linear infinite;
    }

    .carousel-track-wrapper {
        gap: 20px;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-100% - 20px));
        }
    }

    .carousel-container::before,
    .carousel-container::after {
        width: 80px;
    }
}



/* About Section */
.about-section {
    padding: 60px 0;
    background-color: var(--white);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Side - Image Gallery */
.about-gallery {
    position: relative;
    height: 600px;
}

.gallery-image {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--white);
    /* box-shadow: 0 8px 30px rgba(13, 77, 77, 0.15); */
}

.gallery-image img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    display: block;
}

/* Image 1 - Top Left */
.gallery-image-1 {
    width: 320px;
    height: 280px;
    top: 10px;
    left: 0;
    z-index: 0;
}

/* Image 2 - Top Right Circle */
.gallery-image-2 {
    width: 180px;
    height: 180px;
    top: 30px;
    right: 20px;
    z-index: 4;
    border-radius: 50%;
}

/* Image 3 - Bottom Right */
.gallery-image-3 {
    width: 300px;
    height: 280px;
    bottom: 100px;
    right: 0;
    z-index: 2;
    border: 20px solid var(--white);
    overflow: ;
    border-radius: 20px ;
}

/* Years Badge */
.years-badge {
    position: absolute;
    bottom: 0;
    left: 40px;
    background-color: var(--accent-lime);
    border-radius: 20px;
    padding: 32px 40px;
    text-align: center;
    z-index: 5;
    box-shadow: 0 8px 30px rgba(212, 255, 0, 0.3);
}

.years-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1;
    margin-bottom: 4px;
}

.years-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.4;
}

/* Decorative Dots */
.decorative-dots {
    position: absolute;
    bottom: 140px;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 1;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--gray-light);
}

.dot.filled {
    background-color: var(--accent-lime);
}

.decorative-circles {
    position: absolute;
    top: 50%;
    right: 90px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 5;
}

.circle {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--gray-light);
}

/* Right Side - Content */
.about-content {
    padding-right: 40px;
}

.about-label {
    display: inline-block;
    background-color: rgba(13, 77, 77, 0.08);
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.about-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Stats Grid */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: var(--text-medium);
    font-weight: 500;
    line-height: 1.4;
}

/* Signature Section */
.about-signature {
    border-top: 1px solid var(--gray-light);
    padding-top: 30px;
}

.signature-image {
    font-family: 'Dancing Script', cursive;
    font-size: 36px;
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-weight: 400;
}

.signature-name {
    font-size: 15px;
    color: var(--text-medium);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-container {
        gap: 60px;
    }

    .about-content {
        padding-right: 0;
    }

    .about-gallery {
        height: 500px;
    }

    .gallery-image-3 {
        width: 260px;
        height: 240px;
    }
}

@media (max-width: 968px) {
    .about-section {
        padding: 60px 0;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-gallery {
        height: 450px;
        margin: 0 auto;
        max-width: 500px;
    }

    .about-content h2 {
        font-size: 36px;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 13px;
    }
}

@media (max-width: 640px) {
    .about-gallery {
        height: 400px;
    }

    .gallery-image-1 {
        width: 180px;
        height: 160px;
    }

    .gallery-image-2 {
        width: 140px;
        height: 140px;
        right: 20px;
    }

    .gallery-image-3 {
        width: 220px;
        height: 200px;
        bottom: 60px;
    }

    .years-badge {
        padding: 24px 28px;
        left: 20px;
    }

    .years-number {
        font-size: 36px;
    }

    .years-text {
        font-size: 12px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stat-item {
        text-align: center;
    }
}



/* Products Section */
.products-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
    text-align: center;
}

.products-header {
    margin-bottom: 50px;
}

.products-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-explore {
    display: inline-block;
    padding: 12px 36px;
    background-color: transparent;
    border: 2px solid var(--gray-light);
    border-radius: 30px;
    color: var(--text-medium);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-explore:hover {
    border-color: var(--accent-lime);
    background-color: var(--accent-lime);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Product Card */
.product-card {
    background-color: var(--primary-dark);
    border-radius: 20px;
    padding: 50px 35px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(13, 77, 77, 0.12);
    border-color: var(--accent-lime);
}

/* Featured Card - Highlighted with content */
.product-card.featured {
    background-color: var(--primary-dark-lighter);
    padding: 40px 35px;
    justify-content: center;
}

.product-card.featured:hover {
    background-color: var(--accent-lime);
}

/* Icon Container */
.product-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icon i{
    font-size: 50px;
    color: var(--text-dark);
    opacity: 0.7;
}
.product-icon img {
    width: 40px;
    /* height: 50px; */
    fill: var(--text-dark);
    stroke: var(--text-dark);
    opacity: 0.7;
}

.product-card:hover .product-icon svg {
    opacity: 1;
}

/* Featured card icon */
.product-card.featured .product-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    transform: rotate(30deg );
}

.product-card.featured .product-icon svg {
    width: 30px;
    height: 30px;
}

/* Icon placeholder */
.icon-placeholder {
    width: 30px;
    background: var(--border-color);
    padding: 30px;
    border-radius: 8px;
}

/* Product Title */
.product-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
}

/* Featured Card Text */
.featured-text {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-top: 12px;
}

.product-card.featured:hover .featured-text {
    color: var(--primary-dark);
}

/* Grid Layout Variations */
@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, auto);
    }

    /* Position cards in masonry-like layout */
    .product-card:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }

    .product-card:nth-child(2) {
        grid-column: 2;
        grid-row: 1 / span 2;
        min-height: auto;
    }

    .product-card:nth-child(3) {
        grid-column: 3;
        grid-row: 1;
    }

    .product-card:nth-child(4) {
        grid-column: 1;
        grid-row: 2;
    }

    .product-card:nth-child(5) {
        grid-column: 2;
        grid-row: 2;
    }

    .product-card:nth-child(6) {
        grid-column: 3;
        grid-row: 2;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .products-section {
        padding: 60px 0;
    }

    .products-header h2 {
        font-size: 36px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card {
        padding: 40px 30px;
        min-height: 200px;
    }

    .product-card:nth-child(2) {
        grid-row: auto;
    }
}

@media (max-width: 480px) {
    .products-header h2 {
        font-size: 32px;
    }

    .product-icon {
        width: 60px;
        height: 60px;
    }

    .product-icon svg {
        width: 40px;
        height: 40px;
    }

    .product-title {
        font-size: 16px;
    }
}



/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background-color: var(--white);
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-label {
    display: inline-block;
    background-color: rgba(13, 77, 77, 0.08);
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.pricing-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.pricing-header p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Pricing Card */
.pricing-card {
    background-color: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(13, 77, 77, 0.12);
    border-color: var(--accent-lime);
}

/* Featured/Popular Card */
.pricing-card.featured {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-lime);
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Card Header */
.pricing-card-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--gray-light);
}

.pricing-card.featured .pricing-card-header {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.plan-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.pricing-card.featured .plan-name {
    color: var(--white);
}

.price-container {
    margin-bottom: 12px;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1;
}

.pricing-card.featured .price {
    color: var(--accent-lime);
}

.price-currency {
    font-size: 24px;
    font-weight: 700;
}

.price-period {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-medium);
    margin-left: 4px;
}

.pricing-card.featured .price-period {
    color: rgba(255, 255, 255, 0.7);
}

.plan-description {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.6;
}

.pricing-card.featured .plan-description {
    color: rgba(255, 255, 255, 0.8);
}

/* Features List */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    flex-grow: 1;
}

.pricing-features li {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
}

.pricing-card.featured .pricing-features li {
    color: var(--white);
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-lime);
    font-weight: bold;
    font-size: 16px;
}

/* CTA Button */
.pricing-cta {
    width: 100%;
    padding: 14px 32px;
    background-color: var(--primary-dark);
    color: var(--white);
    border: 2px solid var(--primary-dark);
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: block;
}

.pricing-cta:hover {
    background-color: transparent;
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.pricing-card.featured .pricing-cta {
    background-color: var(--accent-lime);
    color: var(--primary-dark);
    border-color: var(--accent-lime);
}

.pricing-card.featured .pricing-cta:hover {
    background-color: var(--white);
    border-color: var(--white);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 0;
    }

    .pricing-header h2 {
        font-size: 36px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-card {
        padding: 35px 28px;
    }

    .price {
        font-size: 40px;
    }

    .price-currency {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .pricing-header h2 {
        font-size: 32px;
    }

    .pricing-card {
        padding: 30px 24px;
    }

    .price {
        font-size: 36px;
    }
}




/* Contact Info */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--accent-lime);
}

.contact-info {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--accent-lime);
}

/* Newsletter */
.newsletter-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--white);
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent-lime);
    background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-button {
    padding: 12px 24px;
    background-color: var(--accent-lime);
    border: none;
    border-radius: 8px;
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-button:hover {
    background-color: var(--accent-lime-hover);
    transform: translateY(-2px);
}




/* Deep Cleaning & Sanitization Section */
.deep-cleaning-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.deep-cleaning-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(118, 192, 67, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.deep-cleaning-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 60px;
}

/* Text Content */
.deep-cleaning-text {
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgba(118, 192, 67, 0.15);
    color: var(--primary-dark);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.deep-cleaning-text h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-dark-lighter);
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight-text {
    color: var(--primary-dark);
    position: relative;
}

.lead-text {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Cleaning Features */
.cleaning-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.cleaning-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-dark-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.cleaning-feature-item:hover .feature-icon {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(11, 90, 92, 0.2);
}

.feature-icon i {
    font-size: 24px;
    color: var(--accent-lime);
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
}

/* CTA Buttons */
.cleaning-cta-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-cleaning-primary {
    padding: 14px 32px;
    background-color: var(--primary-dark);
    color: var(--white);
    border: 2px solid var(--primary-dark);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cleaning-primary:hover {
    background-color: transparent;
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-cleaning-secondary {
    padding: 14px 32px;
    background-color: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cleaning-secondary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* Visual Section */
.deep-cleaning-visual {
    position: relative;
    height: 500px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}

.cleaning-image-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cleaning-image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.primary-card {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.secondary-card {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.cleaning-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cleaning-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark-light) 0%, var(--primary-dark-lighter) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.cleaning-image-placeholder i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.7;
}

.cleaning-image-placeholder p {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.8;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(11, 90, 92, 0.95) 0%, transparent 100%);
}

.overlay-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-lime);
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    opacity: 0.9;
}

.trust-badge {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    background: var(--white);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.trust-badge i {
    font-size: 40px;
    color: var(--accent-lime);
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.badge-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
}

.badge-subtitle {
    font-size: 14px;
    color: var(--text-medium);
}

/* Cleaning Values Banner */
.cleaning-values-banner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 50px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
}

.value-item {
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item i {
    font-size: 36px;
    color: var(--accent-lime);
    margin-bottom: 15px;
}

.value-item h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.value-item p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .deep-cleaning-content {
        gap: 50px;
    }

    .deep-cleaning-text h2 {
        font-size: 42px;
    }
}

@media (max-width: 968px) {
    .deep-cleaning-section {
        padding: 60px 0;
    }

    .deep-cleaning-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .deep-cleaning-text h2 {
        font-size: 38px;
    }

    .deep-cleaning-visual {
        height: 450px;
    }

    .cleaning-values-banner {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 40px 30px;
    }
}

@media (max-width: 640px) {
    .deep-cleaning-section {
        padding: 50px 0;
    }

    .deep-cleaning-text h2 {
        font-size: 32px;
    }

    .lead-text {
        font-size: 16px;
    }

    .cleaning-feature-item {
        gap: 15px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
    }

    .feature-icon i {
        font-size: 20px;
    }

    .cleaning-cta-group {
        flex-direction: column;
    }

    .btn-cleaning-primary,
    .btn-cleaning-secondary {
        width: 100%;
        text-align: center;
    }

    .deep-cleaning-visual {
        height: 400px;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 1fr);
        gap: 15px;
    }

    .primary-card {
        grid-column: 1;
        grid-row: 1 / 2;
    }

    .secondary-card {
        grid-column: 1;
        grid-row: 2 / 3;
    }

    .trust-badge {
        grid-column: 1;
        grid-row: 3 / 4;
    }

    .cleaning-values-banner {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 13px;
    }
}









/* Footer Section */
.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding-top: 80px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* Footer Brand Column */
.footer-brand {
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 24px;
    
}

.footer-logo img {
    height: 100px;
    width: auto;
    display: block;
    background-color: var(--gray-light);
    border-radius: 50%;
}

.footer-description {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--accent-lime);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    stroke: currentColor;
}

/* Footer Column */
.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-lime);
    transform: translateX(5px);
}

/* Contact Column */
.footer-contact {
    max-width: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--accent-lime);
    stroke: var(--accent-lime);
}

.contact-info {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
    word-break: break-word;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--accent-lime);
}

/* Footer Bottom */
.footer-bottom {
    padding: 30px 0;
    text-align: center;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-main {
        grid-template-columns: 1.5fr 1fr 1.5fr;
        gap: 60px;
    }
}

@media (max-width: 968px) {
    .footer {
        padding-top: 60px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-contact {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .footer-main {
        gap: 40px;
        padding-bottom: 40px;
    }

    .footer-logo img {
        height: 50px;
    }

    .footer-bottom {
        padding: 25px 0;
    }

    .contact-info {
        font-size: 14px;
    }
}