/* ===================================
   CSS Variables & Reset - 2024 Modern Rebrand
   =================================== */
:root {
    /* Colors - Soft Lavender/Peach Palette */
    --primary-color: #A8B4E5;        /* Soft Lavender */
    --secondary-color: #FFB4A2;      /* Warm Peach */
    --accent-color: #8B9FD9;         /* Deeper Lavender */
    --background: #FDFCFF;           /* Pure white with lavender tint */
    --cream: #F8F7FF;                /* Light Lavender cream */
    --card-bg: #FFFFFF;              /* Pure white for cards */
    --text-dark: #2D2D3D;            /* Softer dark */
    --text-body: #4A4A5E;            /* Muted body text */
    --text-light: #7B7B8F;           /* Lighter text */
    --white: #FFFFFF;
    --success: #6BCF7F;              /* Soft success green */
    --warning: #FF8585;              /* Soft warning red */
    --whatsapp: #25D366;
    
    /* Shadows - Softer, more modern */
    --shadow-sm: 0 4px 20px rgba(168, 180, 229, 0.08);
    --shadow-md: 0 8px 40px rgba(168, 180, 229, 0.12);
    --shadow-lg: 0 16px 60px rgba(168, 180, 229, 0.15);
    --shadow-hover: 0 12px 48px rgba(168, 180, 229, 0.18);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(168, 180, 229, 0.2);
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    
    /* Spacing - More generous for 2024 */
    --container-width: 1200px;
    --section-padding: 120px 0;
    --section-padding-sm: 80px 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-body);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.3;
    font-weight: 600;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

/* ===================================
   Utility Classes
   =================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 48px;
}

.section-content.centered {
    max-width: 800px;
    margin: 0 auto;
}

/* Buttons - Modern Pill-Shaped */
.btn {
    display: inline-block;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(168, 180, 229, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(168, 180, 229, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #FFD4C8 100%);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(255, 180, 162, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 180, 162, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    border-color: transparent;
}

.btn-whatsapp {
    background: linear-gradient(135deg, var(--whatsapp) 0%, #1faa52 100%);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}

.btn-lg {
    padding: 20px 48px;
    font-size: 18px;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ===================================
   Header & Navigation
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
}

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

.nav-logo {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-body);
    font-weight: 500;
    font-size: 16px;
    position: relative;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.nav-cta {
    padding: 10px 24px;
    font-size: 15px;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* ===================================
   Hero Section - Modern 2024
   =================================== */
.hero {
    padding-top: 160px;
    padding-bottom: 100px;
    background: linear-gradient(135deg, #F8F7FF 0%, #FDFCFF 50%, #FFF9F8 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 180, 229, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 28px;
    line-height: 1.15;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.hero-note i {
    color: var(--whatsapp);
    font-size: 1.2rem;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.profile-placeholder {
    width: 420px;
    height: 420px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.profile-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.profile-placeholder i {
    font-size: 8rem;
    opacity: 0.6;
    position: relative;
    z-index: 1;
}

.profile-placeholder p {
    margin-top: 16px;
    font-size: 1.1rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Profile Photo (when image is added) */
.profile-photo {
    width: 420px;
    height: 420px;
    border-radius: 30px;
    object-fit: cover;
    box-shadow: 0 16px 60px rgba(168, 180, 229, 0.25);
    border: 4px solid rgba(168, 180, 229, 0.1);
    transition: var(--transition);
}

.profile-photo:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 70px rgba(168, 180, 229, 0.3);
}

/* ===================================
   About Section
   =================================== */
.about-text p {
    margin-bottom: 24px;
    text-align: center;
}

/* ===================================
   Qualifications Section - Modern Glass Cards
   =================================== */
.qualifications {
    background: linear-gradient(180deg, var(--cream) 0%, var(--background) 100%);
}

.qual-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.qual-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 36px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.qual-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.qual-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.9;
}

.qual-item h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.qual-item p {
    font-size: 1rem;
    margin-bottom: 4px;
}

.qual-detail {
    font-size: 0.9rem !important;
    color: var(--text-light);
}

/* ===================================
   Services Section - Flat Modern Design
   =================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.service-card {
    background: var(--card-bg);
    padding: 48px 36px;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(168, 180, 229, 0.08);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
    background-color: rgba(168, 180, 229, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: rgba(168, 180, 229, 0.15);
    transform: scale(1.05);
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===================================
   Process Section - Modern Cards
   =================================== */
.process {
    background: linear-gradient(180deg, var(--background) 0%, var(--cream) 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.step-card {
    background: var(--card-bg);
    padding: 48px 36px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(168, 180, 229, 0.08);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 28px;
    box-shadow: 0 8px 20px rgba(168, 180, 229, 0.3);
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.step-price {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 16px;
}

.step-list {
    list-style: none;
}

.step-list li {
    padding-left: 24px;
    margin-bottom: 12px;
    position: relative;
    font-size: 0.95rem;
}

.step-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

/* ===================================
   Testimonials Section - Soft Cards
   =================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 64px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(168, 180, 229, 0.05) 0%, rgba(255, 180, 162, 0.05) 100%);
    padding: 48px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid rgba(168, 180, 229, 0.1);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.4;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
}

/* ===================================
   CTA Section - Modern Gradient
   =================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 50%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   Page Header (Book & Contact Pages)
   =================================== */
.page-header {
    padding-top: 140px;
    padding-bottom: 60px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--background) 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* ===================================
   Pricing Section - Modern Cards
   =================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 920px;
    margin: 0 auto 64px;
}

.pricing-card {
    background: var(--card-bg);
    padding: 56px 48px;
    border-radius: 28px;
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 2px solid rgba(168, 180, 229, 0.1);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 12px 48px rgba(168, 180, 229, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(168, 180, 229, 0.3);
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.pricing-price {
    margin-bottom: 8px;
}

.pricing-price .currency {
    font-size: 1.5rem;
    vertical-align: top;
    color: var(--text-light);
}

.pricing-price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-duration {
    color: var(--text-light);
    margin-bottom: 32px;
    font-size: 0.95rem;
}

.pricing-features {
    text-align: left;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--success);
    margin-right: 12px;
}

.pricing-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 24px;
}

.pricing-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(168, 180, 229, 0.06) 0%, rgba(255, 180, 162, 0.06) 100%);
    padding: 20px 28px;
    border-radius: 16px;
    border: 1px solid rgba(168, 180, 229, 0.1);
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

/* ===================================
   Booking Methods Section
   =================================== */
.methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.method-card {
    background: var(--card-bg);
    padding: 48px 36px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid rgba(168, 180, 229, 0.08);
    transition: var(--transition);
}

.method-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.method-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 28px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-icon.whatsapp {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(37, 211, 102, 0.05) 100%);
}

.method-icon.email {
    background: linear-gradient(135deg, rgba(168, 180, 229, 0.12) 0%, rgba(168, 180, 229, 0.06) 100%);
}

.method-icon.form {
    background: linear-gradient(135deg, rgba(255, 180, 162, 0.12) 0%, rgba(255, 180, 162, 0.06) 100%);
}

.method-icon i {
    font-size: 2rem;
}

.method-icon.whatsapp i {
    color: var(--whatsapp);
}

.method-icon.email i {
    color: var(--primary-color);
}

.method-icon.form i {
    color: var(--secondary-color);
}

.method-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.method-tag {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.method-card p {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

/* ===================================
   Form Section
   =================================== */
.booking-form-section {
    background-color: var(--cream);
}

.form-container {
    max-width: 720px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 56px;
    border-radius: 28px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(168, 180, 229, 0.1);
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 32px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.required {
    color: var(--warning);
}

.optional {
    color: var(--text-light);
    font-weight: 400;
    font-size: 0.85rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    border: 2px solid rgba(168, 180, 229, 0.2);
    border-radius: 16px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    background-color: rgba(168, 180, 229, 0.03);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(168, 180, 229, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-privacy {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(168, 180, 229, 0.08) 0%, rgba(168, 180, 229, 0.04) 100%);
    padding: 20px 24px;
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
}

.form-privacy i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.form-privacy p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.form-success {
    text-align: center;
    padding: 48px;
}

.form-success i {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 24px;
}

.form-success h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

/* ===================================
   Expectations & Policy Sections
   =================================== */
.expectations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.expect-block {
    background: var(--card-bg);
    padding: 48px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(168, 180, 229, 0.08);
    transition: var(--transition);
}

.expect-block:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.expect-block h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.expect-block h3 i {
    margin-right: 12px;
}

.expect-block ul {
    list-style: none;
}

.expect-block li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.expect-block li:last-child {
    border-bottom: none;
}

.expect-block li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

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

.policy-card {
    max-width: 820px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 48px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(168, 180, 229, 0.08);
}

.policy-card h2 {
    font-size: 1.8rem;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.policy-card h3 {
    font-size: 1.3rem;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.policy-card p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.policy-card ul {
    list-style: disc;
    margin-left: 32px;
    margin-bottom: 24px;
}

.policy-card ul li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.policy-card a {
    color: var(--primary-color);
    text-decoration: underline;
}

.policy-card a:hover {
    color: var(--accent-color);
}

.policy-intro {
    font-size: 1.05rem;
    color: var(--text-light);
}

.policy-footer {
    margin-top: 48px;
    padding: 28px;
    background: linear-gradient(135deg, rgba(168, 180, 229, 0.08) 0%, rgba(255, 180, 162, 0.08) 100%);
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
}

.back-link {
    text-align: center;
    margin-top: 48px;
}

.policy-list {
    list-style: none;
}

.policy-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.policy-list li:last-child {
    border-bottom: none;
}

.policy-list li::before {
    content: '•';
    position: absolute;
    left: 12px;
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1;
}

/* ===================================
   Contact Page
   =================================== */
.crisis {
    padding: 60px 0;
}

.crisis-card {
    display: flex;
    gap: 36px;
    align-items: flex-start;
    background: linear-gradient(135deg, #FFF5F5 0%, #FFF8F8 100%);
    padding: 48px;
    border-radius: 24px;
    border: 2px solid var(--warning);
    max-width: 1020px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(255, 133, 133, 0.15);
}

.crisis-icon {
    flex-shrink: 0;
}

.crisis-icon i {
    font-size: 3rem;
    color: var(--warning);
}

.crisis-content h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--warning);
}

.crisis-content p {
    margin-bottom: 20px;
}

.crisis-list {
    list-style: none;
}

.crisis-list li {
    padding: 8px 0;
    font-weight: 500;
}

.crisis-list a {
    color: var(--primary-color);
    text-decoration: underline;
}

.crisis-list a:hover {
    color: var(--secondary-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.contact-card {
    background: var(--card-bg);
    padding: 40px 28px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(168, 180, 229, 0.08);
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(168, 180, 229, 0.15) 0%, rgba(255, 180, 162, 0.15) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.contact-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.contact-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.contact-link:hover {
    color: var(--secondary-color);
}

.contact-link i {
    margin-right: 6px;
}

.contact-text {
    color: var(--text-body) !important;
    margin: 0 !important;
}

.office-hours {
    max-width: 820px;
    margin: 64px auto 0;
    background: linear-gradient(135deg, rgba(168, 180, 229, 0.06) 0%, rgba(255, 180, 162, 0.06) 100%);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(168, 180, 229, 0.1);
}

.office-hours h3 {
    font-size: 1.4rem;
    margin-bottom: 24px;
}

.office-hours h3 i {
    color: var(--primary-color);
    margin-right: 12px;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 16px 28px;
    background-color: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(168, 180, 229, 0.08);
}

.hours-day {
    font-weight: 500;
}

.hours-time {
    color: var(--primary-color);
    font-weight: 600;
}

/* ===================================
   FAQ Section
   =================================== */
.faq {
    background-color: var(--cream);
}

.faq-container {
    max-width: 900px;
    margin: 48px auto 0;
}

.faq-item {
    background: var(--card-bg);
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(168, 180, 229, 0.08);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 28px 36px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(168, 180, 229, 0.05) 0%, rgba(255, 180, 162, 0.05) 100%);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 36px 28px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   Footer - Modern Dark
   =================================== */
.footer {
    background: linear-gradient(135deg, #2D2D3D 0%, #1A1A2E 100%);
    color: var(--white);
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.95);
    background-color: rgba(255, 255, 255, 0.12);
    padding: 8px 16px;
    border-radius: 50px;
    width: fit-content;
    backdrop-filter: blur(10px);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 8px;
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-disclaimer {
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

.footer-disclaimer strong {
    color: var(--warning);
}

/* ===================================
   Floating WhatsApp Button - Modern
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--whatsapp) 0%, #1faa52 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.15);
        opacity: 0;
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    font-size: 2rem;
    color: var(--white);
    position: relative;
    z-index: 1;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 968px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        padding: 48px 24px;
        transition: var(--transition);
        box-shadow: var(--shadow-md);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .nav-toggle {
        display: block;
    }

    /* Hero */
    .hero {
        padding-top: 140px;
        padding-bottom: 80px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 56px;
    }

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

    .profile-placeholder {
        width: 340px;
        height: 340px;
    }

    .profile-photo {
        width: 340px;
        height: 340px;
    }

    /* Qualifications */
    .qual-card {
        grid-template-columns: 1fr;
    }

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

    /* Process */
    .process-steps {
        grid-template-columns: 1fr;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    /* Methods */
    .methods-grid {
        grid-template-columns: 1fr;
    }

    /* Expectations */
    .expectations-grid {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 576px) {
    /* Reduce section padding */
    :root {
        --section-padding: 60px 0;
    }

    /* Typography */
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* Crisis */
    .crisis-card {
        flex-direction: column;
    }

    /* Form */
    .form-container {
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Buttons */
    .cta-buttons {
        flex-direction: column;
    }

    /* WhatsApp Float */
    .whatsapp-float {
        width: 58px;
        height: 58px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float i {
        font-size: 1.8rem;
    }

    /* Form */
    .form-container {
        padding: 32px 24px;
    }

    .pricing-card {
        padding: 40px 28px;
    }

    .profile-placeholder {
        width: 280px;
        height: 280px;
    }

    .profile-photo {
        width: 100%;
        height: auto;
        max-width: 280px;
    }
}
