/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@500;600;700;800;900&display=swap');

/* CSS Custom Properties (Design System Tokens) */
:root {
    /* Colors */
    --primary: #f3979d;
    --primary-hover: #e07d83;
    --primary-light: #fef2f3;
    --secondary: #6edcd0;
    --secondary-hover: #55c9bc;
    --secondary-light: #e5f9f6;
    --coral: #f26a6a;
    --dark-pink: #d9534f;
    --cream: #fbf9f7;
    --bg-white: #ffffff;
    --bg-cream: #fcf9f7;
    --bg-pink: #fef2f3;
    --bg-mint: #e5f9f6;
    
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light-grey: #777777;
    --text-white: #ffffff;
    
    /* Fonts */
    --font-primary: 'Poppins', 'Nunito', sans-serif;
    --font-secondary: 'Inter', 'Lato', sans-serif;
    
    /* Spacing */
    --space-base: 16px;
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-xxl: 48px;
    --container-max-width: 1140px;
    --grid-gap: 30px;
}

/* Reset and Core Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-medium);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

a {
    color: var(--secondary);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-hover);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--text-dark);
}

.h1-mega {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.h2-section {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.h3-card {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    color: #333333;
    margin-bottom: 12px;
}

.section-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    display: inline-block;
    margin-bottom: 16px;
}

.body-large {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-medium);
}

.body-base {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-light-grey);
}

.body-small {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-light-grey);
}

/* Accessibility Focus Indicator */
a:focus, button:focus, input:focus, textarea:focus, select:focus {
    outline: 2px dashed var(--secondary);
    outline-offset: 4px;
}

/* Layout Elements */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--space-base);
    width: 100%;
}

.section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}

.bg-cream-section {
    background-color: var(--bg-cream);
}

.bg-pink-section {
    background-color: var(--bg-pink);
}

.bg-mint-section {
    background-color: var(--bg-mint);
}

/* Sticky Header Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #f0f0f0;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-dark);
}

.brand-logo:hover {
    text-decoration: none;
}

.brand-logo img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.brand-name {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-medium);
}

.main-nav {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
}

.nav-link {
    color: var(--text-medium);
    font-weight: 500;
    font-size: 15px;
    font-family: var(--font-secondary);
    transition: color 0.2s ease;
    text-decoration: none;
    padding: var(--space-xs) 0;
}

.nav-link:hover {
    color: var(--primary);
    text-decoration: none;
}

.nav-link.active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 4px;
}

.header-cta {
    background-color: var(--secondary);
    color: var(--text-white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-secondary);
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.header-cta:hover {
    background-color: var(--secondary-hover);
    color: var(--text-white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(110, 220, 208, 0.3);
}

/* Hamburger toggle */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1010;
}

.hamburger svg {
    width: 28px;
    height: 28px;
    stroke: var(--text-dark);
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.05);
    z-index: 1005;
    padding: 100px var(--space-lg) var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer.open {
    right: 0;
}

.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1004;
    display: none;
}

.mobile-drawer-overlay.open {
    display: block;
}

.mobile-nav-link {
    color: var(--text-medium);
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-primary);
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    text-decoration: none;
}

.mobile-nav-link.active {
    color: var(--primary);
}

/* Buttons */
.btn-primary {
    background-color: var(--secondary);
    color: var(--text-white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-secondary);
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(110, 220, 208, 0.4);
    color: var(--text-white);
    text-decoration: none;
}

.btn-primary:active {
    transform: scale(0.96);
}

.btn-outline-primary {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-secondary);
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: var(--text-white);
    text-decoration: none;
    transform: translateY(-3px);
}

.btn-outline-white {
    background-color: transparent;
    border: 2px solid var(--text-white);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-secondary);
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-outline-white:hover {
    background-color: var(--text-white);
    color: var(--secondary);
    text-decoration: none;
}

/* Form Elements */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.form-control {
    background: var(--bg-white);
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    padding: 16px 24px;
    width: 100%;
    font-size: 15px;
    font-family: var(--font-secondary);
    color: var(--text-dark);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
    border-color: var(--secondary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(110, 220, 208, 0.15);
}

textarea.form-control {
    border-radius: 18px;
    resize: none;
}

/* Card Elements */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--grid-gap);
}

.custom-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.custom-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.card-media {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background-color: #eaeaea;
    overflow: hidden;
}

.card-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary);
    color: var(--text-white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-badge.secondary-badge {
    background-color: var(--secondary);
}

.card-body {
    padding: var(--space-xl);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-tag {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

/* Category cards with borders */
.pink-bordered-card {
    border: 2px solid var(--primary-light);
    border-radius: 16px;
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    transition: all 0.3s ease;
    background-color: var(--bg-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.pink-bordered-card:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(110, 220, 208, 0.1);
}

.pink-bordered-card svg {
    width: 48px;
    height: 48px;
    stroke: var(--primary);
    stroke-width: 1.5;
    transition: stroke 0.3s ease;
}

.pink-bordered-card:hover svg {
    stroke: var(--secondary);
}

/* Hero Section */
.hero-section {
    background-color: var(--bg-cream);
    padding-top: 160px;
    padding-bottom: 100px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--grid-gap);
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-content h1 {
    margin-bottom: 24px;
}

.hero-content p {
    margin-bottom: 32px;
}

/* Polaroid image collage */
.hero-collage {
    position: relative;
    width: 100%;
    height: 450px;
}

.polaroid {
    background: var(--bg-white);
    padding: 16px 16px 40px 16px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    position: absolute;
    width: 280px;
    border: 1px solid #f0f0f0;
}

.polaroid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
}

.polaroid-1 {
    top: 20px;
    left: 20px;
    transform: rotate(-6deg);
    z-index: 2;
}

.polaroid-2 {
    bottom: 20px;
    right: 40px;
    transform: rotate(4deg);
    z-index: 1;
}

.heart-overlay {
    position: absolute;
    bottom: 15px;
    left: -20px;
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(243, 151, 157, 0.4);
    z-index: 3;
}

.heart-overlay svg {
    width: 28px;
    height: 28px;
    fill: var(--text-white);
}

.dotted-pattern {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(var(--primary) 20%, transparent 20%);
    background-size: 15px 15px;
    opacity: 0.15;
    z-index: 0;
}

/* Split Layouts */
.split-50 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--grid-gap);
    align-items: center;
}

.split-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 500px;
}

/* Feature Checkmarks */
.feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--text-medium);
}

.feature-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--secondary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--secondary);
    stroke-width: 3;
}

/* Metrics Section */
.metrics-section {
    background-color: var(--bg-cream);
}

.circle-accent {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--secondary-light);
    bottom: -30px;
    left: -30px;
    z-index: -1;
}

.progress-container {
    margin-top: 30px;
    margin-bottom: 30px;
}

.progress-bar-group {
    margin-bottom: 24px;
}

.progress-label-wrap {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 600;
    font-family: var(--font-primary);
    color: var(--text-dark);
}

.progress-bar {
    background: #eaeaea;
    height: 8px;
    border-radius: 50px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--secondary);
    border-radius: 50px;
    transition: width 1.5s ease-out;
}

.stats-grid-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    border-top: 1px solid #eee;
    padding-top: 40px;
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light-grey);
}

/* Promo / Banner */
.promo-banner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.promo-image {
    position: relative;
    background-color: #eee;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
}

.promo-block {
    background-color: var(--dark-pink);
    color: var(--text-white);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-block h2 {
    color: var(--text-white);
    font-size: 32px;
    margin-bottom: 16px;
}

.promo-block p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

/* Testimonial Section */
.testimonial-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background: var(--bg-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,0.04);
}

.testimonial-media {
    position: relative;
    background-color: var(--bg-pink);
    min-height: 350px;
}

.testimonial-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    opacity: 0.15;
    fill: var(--primary);
}

.quote-text {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-style: italic;
}

.quote-author {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

.quote-role {
    font-size: 14px;
    color: var(--text-light-grey);
}

/* Brand Grid (Logo Strip) */
.brand-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: 16px;
    margin-top: 40px;
    border: 1px solid #f0f0f0;
}

.brand-logo-item {
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 20px;
    color: var(--text-light-grey);
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: opacity 0.3s, filter 0.3s;
}

.brand-logo-item:hover {
    opacity: 0.9;
    filter: grayscale(0%);
}

/* Reviews Page Grid Layout */
.reviews-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--grid-gap);
}

/* Detailed analysis drawer styles */
.review-drawer {
    background-color: var(--bg-cream);
    border-radius: 0 0 16px 16px;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    border-top: 0 solid #eee;
}

.review-drawer.open {
    padding: var(--space-lg) var(--space-xl);
    max-height: 1000px;
    border-top: 1px solid #eee;
}

.review-card-toggle {
    margin-top: auto;
    background: none;
    border: none;
    color: var(--secondary);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: var(--space-md);
    width: fit-content;
}

.review-card-toggle:hover {
    color: var(--secondary-hover);
    text-decoration: underline;
}

.review-card-toggle svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.review-card-toggle.active svg {
    transform: rotate(180deg);
}

.score-badge {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-primary);
}

/* Service Detail Page Grid (3x2 Grid) */
.services-grid-3x2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--grid-gap);
}

/* Footer style */
.site-footer {
    background-color: var(--bg-cream);
    border-top: 1px solid #eee;
    padding-top: 60px;
    padding-bottom: 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-brand .brand-logo {
    width: fit-content;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav h4 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.footer-nav-link {
    color: var(--text-medium);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 14px;
}

.footer-nav-link:hover {
    color: var(--primary);
    text-decoration: none;
}

.footer-about {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light-grey);
}

.footer-about h4 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.footer-bottom {
    border-top: 1px solid #e5e5e5;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text {
    font-size: 14px;
    color: var(--text-light-grey);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--bg-white);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--text-light-grey);
    transition: all 0.3s ease;
}

.social-icon:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.social-icon:hover svg {
    fill: var(--primary);
    transform: scale(1.15);
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .h1-mega {
        font-size: 46px;
    }
    
    .hero-collage {
        height: 380px;
    }
    
    .polaroid {
        width: 230px;
    }
    
    .polaroid img {
        height: 150px;
    }
}

@media (max-width: 992px) {
    .services-grid-3x2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Layout stacks to 1-column */
    .hero-grid, .split-50, .reviews-grid-container, .services-grid-3x2, .footer-top, .promo-banner, .testimonial-card {
        grid-template-columns: 1fr;
    }
    
    .section-padding {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .h1-mega {
        font-size: 38px;
    }
    
    /* Navigation changes */
    .main-nav, .header-cta {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero-collage {
        height: 320px;
        margin-top: 40px;
    }
    
    .polaroid {
        width: 180px;
        padding: 10px 10px 25px 10px;
    }
    
    .polaroid img {
        height: 120px;
    }
    
    .polaroid-1 {
        left: 10%;
    }
    
    .polaroid-2 {
        right: 10%;
    }
    
    .testimonial-media {
        min-height: 250px;
    }
    
    .testimonial-content, .promo-block {
        padding: 30px;
    }
    
    .stats-grid-row {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
