/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', 'Helvetica Neue', Arial, sans-serif;
    color: #1a1a1a;
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

body:has(.menu-toggle:checked) {
    overflow: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    /* padding: 0.5rem 0; */
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 100px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    /* align-items: center; */
}

.nav-links a {
    text-decoration: none;
    color: #000000;
    font-weight: 545;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff437c;
}

.btn-quote {
    background-color: #ff437c;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.75rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 67, 124, 0.2);
}

.btn-quote:hover {
    background-color: #e6345e;
    box-shadow: 0 6px 20px rgba(255, 67, 124, 0.3);
    transform: translateY(-2px);
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
    transition: transform 0.2s ease;
}

.hamburger:hover {
    transform: scale(1.05);
}

.hamburger:focus {
    /* outline: 2px solid #ff437c; */
    outline-offset: 4px;
}

.hamburger:active {
    transform: scale(0.95);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #050303;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    pointer-events: none;
    overflow: hidden;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background-color: #FFD6E8;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
}

@supports not (backdrop-filter: blur(10px)) {
    .mobile-menu-content {
        background-color: #ffffff;
    }
}

.mobile-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /* background-color: rgba(0, 0, 0, 0.5); */
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    cursor: pointer;
}

.mobile-menu-logo {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 1002;
}

.mobile-menu-logo img {
    
    width: auto;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    /* gap: 1.5rem; */
    margin-bottom: 2rem;
    width: 100%;
}

.mobile-nav a {
    font-size: 1.2rem;
    padding: 0.75rem 1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    justify-content: flex-start;
    gap: 0.75rem;
}

.nav-icon {
    font-size: 1.3rem;
}

.mobile-nav a:hover,
.mobile-nav a:active {
    background-color: rgba(255, 67, 124, 0.1);
    color: #ff437c;
    transform: translateX(-4px);
}

.mobile-btn {
    margin-top: 1rem;
    width: 100%;
    min-height: 44px;
}

/* Hamburger Animation */
.menu-toggle:checked ~ .hamburger span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle:checked ~ .hamburger span:nth-child(2) {
    opacity: 0;
}

.menu-toggle:checked ~ .hamburger span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.menu-toggle:checked ~ .mobile-menu {
    pointer-events: auto;
}

.menu-toggle:checked ~ .mobile-menu .mobile-menu-content {
    transform: translateX(0);
}

.menu-toggle:checked ~ .mobile-menu .mobile-menu-overlay {
    opacity: 1;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FFD6E8, #FFEAF3);
    padding: 140px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    padding-right: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.highlight {
    color: #ff437c;
    position: relative;
}

.hero-description {
    font-size: 1.1rem;
    color: #5a5a5a;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: #ff437c;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 67, 124, 0.25);
}

.btn-primary:hover {
    background-color: #e6345e;
    box-shadow: 0 6px 20px rgba(255, 67, 124, 0.35);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #ffffff;
    color: #ff437c;
    border: 2px solid #ff437c;
}

.btn-secondary:hover {
    background-color: #ff437c;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.profile-image {
    width: 100%;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    aspect-ratio: 1/1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 5;
}

.rating-card {
    position: absolute;
    top: 40%;
    left: 0%;
    background-color: #ffffff;
    padding: 1px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: transform 0.3s ease;
}

.rating-card:hover {
    transform: scale(1.02);
}

.rating-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #00A884;
    margin-bottom: 8px;
}

.rating-bottom {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    color: #F5A623;
    font-size: 1rem;
}

.rating-text {
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
}

.stats-card {
    position: absolute;
    bottom: 10%;
    right: -5%;
    background-color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 10;
    transition: transform 0.3s ease;
    /* min-width: 300px; */
}

.stats-card:hover {
    transform: scale(1.02);
}

.stats-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.stats-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 4px;
}

.stats-text {
    font-size: 0.8rem;
    color: #555;
}
/* Headline Section */
.headline-section {
    padding: 5rem 0 3rem;
    background-color: #ffffff;
}

.section-headline {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

/* Services Section */
.services {
    padding: 3rem 0 6rem;
    background-color: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f5f5f5;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-description {
    font-size: 0.95rem;
    color: #6a6a6a;
    line-height: 1.6;
}
/* Rating Card Section */
.rating-card-section {
    padding: 3rem 0;
    background-color: #f9f9f9;
}

.product-rating-card {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-rating-card:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 20px;
    border: 1px solid #e0e0e0;
}

.card-content {
    flex: 1;
    margin-right: 20px;
}

.product-title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.product-description {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.rating-section {
    text-align: center;
}

.stars {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.star {
    font-size: 24px;
    color: #ccc;
    cursor: pointer;
    transition: color 0.3s ease;
}

.star.filled {
    color: #ffd700;
}

.star:hover {
    color: #ffd700;
}

.rating-text {
    font-size: 12px;
    color: #666;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.75rem;
    }

    .section-headline {
        font-size: 2.25rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .desktop-nav,
    .desktop-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-wrapper {
        position: relative;
    }

    .mobile-menu {
        display: block;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content {
        padding-right: 0;
@media (max-width: 600px) {
    .product-rating-card {
        flex-direction: column;
        text-align: center;
    }

    .product-image {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .card-content {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
        text-align: center;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .rating-card {
        top: 40%;
        /* left: -10%; */
        transform: none;
        padding: 0.75rem 1rem;
    }

    .stats-card {
        bottom: 5%;
        /* right: -10%; */
        transform: none;
        padding: 0.85rem 1rem;
    }

    .stats-number {
        font-size: 1.25rem;
    }

    .section-headline {
        font-size: 1.75rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .mobile-menu-content {
        width: 85%;
        max-width: none;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 1.85rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }

    .rating-card,
    .stats-card {
        padding: 0.85rem 1rem;
    }

    .rating-number {
        font-size: 1.5rem;
    }

    .stats-number {
        font-size: 1.25rem;
    }

    .section-headline {
        font-size: 1.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 320px) {
    .mobile-menu-content {
        width: 90%;
        padding: 1.5rem;
    }

    .mobile-nav {
        gap: 1rem;
    }

    .mobile-nav a {
        font-size: 1.1rem;
        padding: 0.65rem 0.85rem;
    }
}
