/* ================================================
   Angel Healthcares - Divine Grace Style
   Landing Page Styles
   ================================================ */

/* CSS Variables */

:root {
    --primary-color: #b784a7;
    --primary-dark: #8c5f7d;
    --primary-light: #d8b4cb;
    --secondary-color: #f2c6c2;
    --accent-color: #a2678a;
    --accent-gold: #d4a373;
    --text-primary: #4a3f45;
    --text-secondary: #7a6a73;
    --text-light: #a89aa3;
    --bg-white: #fefcfd;
    --bg-cream: #faf6f8;
    --bg-rose: #fdf0f3;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --success-color: #7fa99b;
    --warning-color: #e6a57e;
    --danger-color: #c46a6a;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-elegant: 0 20px 60px rgba(183, 132, 167, 0.2);
    --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    text-transform: none;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-elegant);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.btn-secondary:hover {
    background: transparent;
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-block {
    width: 100%;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 15px;
    border-radius: var(--border-radius);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

/* Section Styles */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-subtitle {
    display: inline-block;
    padding: 10px 24px;
    background: var(--bg-rose);
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-family: 'Lato', sans-serif;
}

.section-title {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.section-description {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.elegant-text {
    color: var(--primary-color);
    position: relative;
}

/* ================================================
   DECORATIVE ELEMENTS
   ================================================ */
.decorations {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.c1 {
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    top: -200px;
    right: -100px;
}

.c2 {
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    bottom: -150px;
    left: -100px;
}

.c3 {
    width: 300px;
    height: 300px;
    background: var(--accent-gold);
    top: 40%;
    left: 20%;
}

.decoration-wing {
    position: absolute;
    width: 300px;
    height: 200px;
    background: linear-gradient(90deg, transparent, rgba(159, 129, 112, 0.05), transparent);
}

.w1 {
    top: 100px;
    left: 0;
    transform: rotate(15deg);
}

.w2 {
    bottom: 100px;
    right: 0;
    transform: rotate(-15deg);
}

/* ================================================
   HEADER
   ================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 252, 251, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(159, 129, 112, 0.1);
    transition: all var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-emblem {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(159, 129, 112, 0.3);
}

.logo-emblem i {
    color: white;
    font-size: 20px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.logo-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--primary-color);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 10px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-toggle {
    display: none;
    width: 48px;
    height: 48px;
    background: var(--bg-cream);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    color: var(--text-primary);
    font-size: 18px;
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-rose) 100%);
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4a574' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-ribbon {
    display: inline-block;
    padding: 10px 24px;
    background: white;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
    letter-spacing: 1px;
}

.hero-title {
    font-size: 52px;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.9;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(159, 129, 112, 0.15);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.trust-icon i {
    color: var(--primary-color);
    font-size: 20px;
}

.trust-text strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--text-primary);
}

.trust-text span {
    font-size: 13px;
    color: var(--text-secondary);
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(159, 129, 112, 0.2);
}

.hero-illustration {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.illustration-frame {
    width: 380px;
    height: 380px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.frame-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-light);
    border-radius: 50%;
    animation: rotateSlow 30s linear infinite;
}

.frame-decoration::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.illustration-main {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-elegant);
}

.healing-aura {
    position: absolute;
    inset: -20px;
    border: 2px dashed var(--primary-light);
    border-radius: 50%;
    animation: pulseAura 3s ease-in-out infinite;
}

@keyframes pulseAura {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.3;
    }
}

.angel-figure {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.angel-figure i {
    font-size: 50px;
    color: white;
}

.floating-elements {
    position: absolute;
    inset: 0;
}

.float-element {
    position: absolute;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    animation: floatElement 4s ease-in-out infinite;
}

.float-element i {
    color: var(--primary-color);
    font-size: 18px;
}

.e1 { top: 10%; left: 10%; animation-delay: 0s; }
.e2 { top: 10%; right: 10%; animation-delay: 1s; }
.e3 { bottom: 10%; left: 15%; animation-delay: 2s; }
.e4 { bottom: 10%; right: 15%; animation-delay: 3s; }

@keyframes floatElement {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.appointment-preview {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 340px;
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--bg-cream);
    margin-bottom: 16px;
}

.preview-header i {
    color: var(--primary-color);
}

.preview-header span {
    font-weight: 600;
    font-size: 14px;
}

.preview-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.preview-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-avatar i {
    color: white;
    font-size: 20px;
}

.preview-info {
    flex: 1;
}

.preview-info h4 {
    font-size: 16px;
    margin-bottom: 2px;
}

.preview-info p {
    font-size: 13px;
    color: var(--text-secondary);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 13px;
    animation: bounceSlow 2s infinite;
}

.hero-scroll i {
    font-size: 20px;
    color: var(--primary-color);
}

@keyframes bounceSlow {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* ================================================
   ABOUT SECTION
   ================================================ */
.about {
    padding: 120px 0;
    background: var(--bg-white);
}

.about-showcase {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.showcase-visual {
    position: relative;
}

.visual-main {
    width: 100%;
    padding-bottom: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius-xl);
    position: relative;
    overflow: hidden;
}

.main-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-decoration i {
    font-size: 80px;
    color: var(--primary-color);
}

.experience-ring {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-lg);
    animation: pulseRing 2s infinite;
}

@keyframes pulseRing {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(159, 129, 112, 0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(159, 129, 112, 0);
    }
}

.experience-ring .years {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
}

.experience-ring .text {
    font-size: 10px;
    text-align: center;
    line-height: 1.3;
    opacity: 0.9;
}

.showcase-content h3 {
    font-size: 30px;
    margin-bottom: 20px;
}

.showcase-content .lead {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.showcase-content > p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.value-item {
    display: flex;
    gap: 14px;
}

.value-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-rose);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon i {
    color: var(--primary-color);
    font-size: 20px;
}

.value-text h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.value-text p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ================================================
   SERVICES SECTION
   ================================================ */
.services {
    padding: 120px 0;
    background: var(--bg-cream);
}

.services-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-tall {
    grid-row: span 2;
}

.service-wide {
    grid-column: span 2;
}

.service-inner {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-normal);
    border: 1px solid rgba(159, 129, 112, 0.1);
}

.service-inner:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-normal);
}

.service-inner:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 26px;
    color: white;
}

.service-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.service-content p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

.service-link i {
    transition: transform var(--transition-fast);
}

.service-inner:hover .service-link i {
    transform: translateX(5px);
}

/* ================================================
   WHY CHOOSE US
   ================================================ */
.why-choose {
    padding: 120px 0;
    background: var(--bg-white);
}

.features-elegant {
    max-width: 1100px;
    margin: 0 auto;
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--bg-cream);
    border-radius: var(--border-radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-light);
    opacity: 0.5;
    margin-bottom: 16px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 28px;
    color: white;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

/* ================================================
   PLANS SECTION
   ================================================ */
.plans {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-cream) 100%);
}

.plans-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.plan-card {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(159, 129, 112, 0.1);
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.plan-card.featured {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: scale(1.05);
    border: none;
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-ribbon {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    background: var(--accent-gold);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.plan-header {
    margin-bottom: 30px;
}

.plan-ornament {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: var(--bg-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-card.featured .plan-ornament {
    background: rgba(255, 255, 255, 0.2);
}

.plan-ornament i {
    font-size: 28px;
    color: var(--primary-color);
}

.plan-card.featured .plan-ornament i {
    color: white;
}

.plan-header h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.plan-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
}

.plan-price .currency {
    font-size: 24px;
    font-weight: 600;
    margin-top: 8px;
}

.plan-price .amount {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
}

.plan-price .period {
    font-size: 16px;
    align-self: flex-end;
    margin-bottom: 10px;
    opacity: 0.8;
}

.plan-features {
    text-align: left;
    margin-bottom: 30px;
    flex-grow: 1;
}

.plan-features li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(159, 129, 112, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.plan-card.featured .plan-features li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.plan-features li i {
    color: var(--primary-color);
}

.plan-card.featured .plan-features li i {
    color: #f0e6d3;
}

.plan-features li.disabled {
    color: var(--text-light);
}

.plan-features li.disabled i {
    color: var(--text-light);
}

.plan-card.featured .btn-primary {
    background: white;
    color: var(--primary-color);
}

.plan-card.featured .btn-outline {
    border-color: white;
    color: white;
}

.plan-card.featured .btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials {
    padding: 120px 0;
    background: var(--bg-white);
}

.testimonials-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-cream);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    position: relative;
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.card-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
}

.tl { top: 16px; left: 16px; border-right: none; border-bottom: none; }
.tr { top: 16px; right: 16px; border-left: none; border-bottom: none; }
.bl { bottom: 16px; left: 16px; border-right: none; border-top: none; }
.br { bottom: 16px; right: 16px; border-left: none; border-top: none; }

.quote-mark {
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 16px;
}

.testimonial-content p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    font-size: 24px;
    color: white;
}

.author-info h4 {
    font-size: 17px;
    margin-bottom: 4px;
}

.author-info span {
    font-size: 13px;
    color: var(--text-secondary);
}

.stars {
    display: flex;
    gap: 4px;
    margin-top: 8px;
}

.stars i {
    color: var(--accent-gold);
    font-size: 12px;
}

/* ================================================
   APPOINTMENT SECTION
   ================================================ */
.appointment {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.appointment-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.appointment-visual {
    color: white;
}

.visual-frame {
    position: relative;
    width: 200px;
    height: 200px;
    margin-bottom: 30px;
}

.frame-inner {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.frame-inner i {
    font-size: 60px;
    color: white;
}

.frame-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    background: var(--accent-gold);
    border-radius: 50%;
}

.visual-info h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

.visual-info > p {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.info-highlights {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 12px;
}

.highlight i {
    color: var(--accent-gold);
}

.highlight span {
    font-size: 15px;
}

.appointment-form-wrapper {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.appointment-form .form-header {
    text-align: center;
    margin-bottom: 30px;
}

.appointment-form .form-header h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.appointment-form .form-header p {
    color: var(--text-secondary);
    font-size: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--bg-cream);
    border-radius: var(--border-radius);
    font-size: 15px;
    font-family: inherit;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(159, 129, 112, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.success-message {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease;
}

.success-icon i {
    font-size: 40px;
    color: white;
}

.success-message h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.success-message p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    to {
        transform: scale(1);
    }
}

/* ================================================
   CONTACT SECTION
   ================================================ */
.contact {
    padding: 120px 0;
    background: var(--bg-cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--transition-normal);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.contact-card .card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card .card-icon i {
    font-size: 26px;
    color: white;
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.contact-sub {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 500;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    background: #2d2d2d;
    color: white;
    padding: 80px 0 30px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 24px;
}

.footer-brand .logo-emblem {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.7;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.social-link i {
    font-size: 16px;
}

.footer-links h4,
.footer-newsletter h4 {
    font-size: 18px;
    margin-bottom: 24px;
    font-family: 'Playfair Display', serif;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 15px;
}

.newsletter-form .input-group {
    margin-bottom: 15px;
}

.newsletter-form input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    color: white;
    font-size: 15px;
    transition: all var(--transition-fast);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.newsletter-success {
    text-align: center;
    padding: 20px;
    background: rgba(125, 154, 110, 0.2);
    border-radius: var(--border-radius);
}

.newsletter-success i {
    font-size: 40px;
    color: var(--success-color);
    margin-bottom: 12px;
}

.newsletter-success p {
    color: var(--success-color);
    font-weight: 600;
    margin: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-legal a:hover {
    color: var(--primary-light);
}

/* ================================================
   MODALS
   ================================================ */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    padding: 20px;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: var(--border-radius-lg);
    width: 100%;
    max-width: 600px;
    max-height: 80vh;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: transform var(--transition-normal);
}

.modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    border-bottom: 1px solid var(--bg-cream);
}

.modal-header h2 {
    font-size: 22px;
}

.modal-close {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--bg-cream);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: var(--danger-color);
    color: white;
}

.modal-body {
    padding: 30px;
    max-height: calc(80vh - 80px);
    overflow-y: auto;
}

.modal-body h3 {
    font-size: 17px;
    margin: 24px 0 12px;
    color: var(--primary-color);
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-illustration {
        order: -1;
    }

    .illustration-frame {
        width: 300px;
        height: 300px;
    }

    .illustration-main {
        width: 220px;
        height: 220px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .about-showcase {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .services-masonry {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-tall {
        grid-row: span 1;
    }

    .service-wide {
        grid-column: span 1;
    }

    .feature-row {
        grid-template-columns: 1fr;
    }

    .plans-showcase {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .plan-card.featured {
        transform: none;
    }

    .testimonials-flow {
        grid-template-columns: 1fr;
    }

    .appointment-container {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: var(--shadow-md);
        transform: translateY(-150%);
        transition: transform var(--transition-normal);
    }

    .nav.active {
        transform: translateY(0);
    }

    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-trust {
        flex-direction: column;
        gap: 20px;
    }

    .trust-divider {
        display: none;
    }

    .section-title {
        font-size: 32px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .services-masonry {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .appointment-form-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .illustration-frame {
        width: 240px;
        height: 240px;
    }

    .illustration-main {
        width: 180px;
        height: 180px;
    }

    .angel-figure i {
        font-size: 40px;
    }

    .plan-price .amount {
        font-size: 44px;
    }
}
