/* ===== Custom Properties ===== */
:root {
    --plum: #6B1D5E;
    --plum-light: #8B2D7E;
    --plum-dark: #4A0E42;
    --plum-muted: #F3E8F5;
    --amber: #D4A017;
    --amber-light: #F0C040;
    --amber-dark: #B08010;
    --amber-muted: #FFF8E7;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --gray-50: #F8F7F9;
    --gray-100: #F0EEF3;
    --gray-200: #E2DFE8;
    --gray-300: #C4BFD0;
    --gray-500: #7A7488;
    --gray-700: #3D3750;
    --gray-900: #1A1525;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --shadow-sm: 0 2px 8px rgba(107, 29, 94, 0.06);
    --shadow-md: 0 8px 30px rgba(107, 29, 94, 0.10);
    --shadow-lg: 0 20px 60px rgba(107, 29, 94, 0.14);
    --shadow-xl: 0 30px 80px rgba(107, 29, 94, 0.18);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, select, textarea {
    font-family: inherit;
    font-size: 1rem;
}

/* ===== Utilities ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-accent {
    color: var(--plum);
}

.text-accent-light {
    color: var(--amber-light);
}

/* ===== Geometric Background Shapes ===== */
.geo-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.geo-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.04;
}

.geo-circle--1 {
    width: 600px;
    height: 600px;
    background: var(--plum);
    top: -200px;
    right: -150px;
}

.geo-circle--2 {
    width: 400px;
    height: 400px;
    background: var(--amber);
    bottom: 10%;
    left: -100px;
}

.geo-square {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--plum);
    opacity: 0.03;
    top: 40%;
    right: 5%;
    transform: rotate(45deg);
}

.geo-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 173px solid var(--amber);
    opacity: 0.03;
    top: 60%;
    left: 8%;
    transform: rotate(-15deg);
}

.geo-dots {
    position: absolute;
    top: 30%;
    left: 3%;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, var(--plum) 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    opacity: 0.08;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo--light .logo-secondary {
    color: rgba(255, 255, 255, 0.8);
}

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

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-primary {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
}

.logo-secondary {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--plum);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius-sm);
    transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
    color: var(--plum);
    background: var(--plum-muted);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn--amber {
    background: var(--amber);
    color: var(--gray-900);
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.35);
}

.btn--amber:hover {
    background: var(--amber-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 160, 23, 0.45);
}

.btn--plum {
    background: var(--plum);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(107, 29, 94, 0.30);
}

.btn--plum:hover {
    background: var(--plum-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 29, 94, 0.40);
}

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

.btn--outline:hover {
    background: var(--plum);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--white {
    background: var(--white);
    color: var(--plum);
    box-shadow: var(--shadow-md);
}

.btn--white:hover {
    background: var(--plum-muted);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 16px 32px;
    font-size: 1rem;
    border-radius: var(--radius-lg);
}

.btn--full {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
}

.btn--nav {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    padding: 140px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--plum-muted) 0%, var(--white) 40%, var(--amber-muted) 100%);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 60px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    max-width: 720px;
}

.hero-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--plum), var(--amber), var(--plum-light));
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--amber-muted);
    border: 1px solid var(--amber);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--amber-dark);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--amber);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.hero-headline .highlight {
    color: var(--plum);
    position: relative;
}

.hero-headline .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--amber);
    opacity: 0.3;
    border-radius: 4px;
    z-index: -1;
}

.hero-subheadline {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-500);
    margin-bottom: 36px;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Floating Stat Cards */
.hero-stats {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-card {
    width: 160px;
    border-radius: var(--radius-lg);
    padding: 6px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.05);
}

.stat-card--amber {
    background: linear-gradient(135deg, var(--amber), var(--amber-light));
}

.stat-card--plum {
    background: linear-gradient(135deg, var(--plum), var(--plum-light));
}

.stat-card-inner {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
}

.stat-icon {
    margin-bottom: 10px;
    color: var(--plum);
    display: flex;
    justify-content: center;
}

.stat-card--plum .stat-icon {
    color: var(--amber);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Hero Decorative Shapes */
.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.06;
}

.shape--circle {
    width: 300px;
    height: 300px;
    border: 4px solid var(--plum);
    border-radius: 50%;
    bottom: 10%;
    left: -80px;
}

.shape--square {
    width: 120px;
    height: 120px;
    background: var(--amber);
    top: 15%;
    right: 15%;
    transform: rotate(30deg);
    border-radius: var(--radius-sm);
}

.shape--ring {
    width: 200px;
    height: 200px;
    border: 4px solid var(--plum);
    border-radius: 50%;
    bottom: 5%;
    right: 25%;
    opacity: 0.04;
}

/* ===== Section Common ===== */
.section-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: var(--plum-muted);
    color: var(--plum);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-tag--light {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.section-title--light {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-500);
    max-width: 600px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* ===== Services ===== */
.services {
    position: relative;
    padding: 100px 0;
    background: var(--white);
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--plum);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.service-card:hover {
    border-color: var(--plum);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card--accent {
    background: var(--plum);
    border-color: var(--plum);
    color: var(--white);
}

.service-card--accent::before {
    background: var(--amber);
}

.service-card--accent:hover {
    border-color: var(--plum-light);
    box-shadow: 0 20px 60px rgba(107, 29, 94, 0.3);
}

.service-card-bg {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--plum-muted);
    opacity: 0.4;
    transition: all 0.3s ease;
}

.service-card--accent .service-card-bg {
    background: rgba(255, 255, 255, 0.08);
}

.service-card:hover .service-card-bg {
    transform: scale(1.5);
    opacity: 0.6;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-icon--plum {
    background: var(--plum-muted);
    color: var(--plum);
}

.service-icon--amber {
    background: var(--amber-muted);
    color: var(--amber-dark);
}

.service-icon--white {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.service-card--accent h3 {
    color: var(--white);
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-500);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-card--accent p {
    color: rgba(255, 255, 255, 0.8);
}

.service-list {
    list-style: none;
    position: relative;
    z-index: 1;
}

.service-list li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--amber);
    border-radius: 50%;
    flex-shrink: 0;
}

.service-card--accent .service-list li {
    color: rgba(255, 255, 255, 0.85);
}

.service-card--accent .service-list li::before {
    background: var(--amber-light);
}

/* ===== About ===== */
.about {
    position: relative;
    padding: 100px 0;
    background: var(--gray-50);
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, transparent, var(--plum-muted));
    opacity: 0.4;
    pointer-events: none;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(107, 29, 94, 0.2), transparent 50%);
    border-radius: var(--radius-xl);
}

.about-floating-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.afc-number {
    width: 52px;
    height: 52px;
    background: var(--plum);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber);
    flex-shrink: 0;
}

.afc-label {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--gray-900);
}

.afc-desc {
    font-size: 0.82rem;
    color: var(--gray-500);
    margin-top: 2px;
}

.about-content .section-tag {
    margin-bottom: 16px;
}

.about-content .section-title {
    margin-bottom: 24px;
}

.about-text {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.about-features {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.af-check {
    width: 24px;
    height: 24px;
    background: var(--amber-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber-dark);
    flex-shrink: 0;
    margin-top: 2px;
}

.about-feature span {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.5;
}

/* ===== New Patients ===== */
.new-patients {
    padding: 100px 0;
    background: var(--white);
}

.np-banner {
    position: relative;
    background: linear-gradient(135deg, var(--plum-dark) 0%, var(--plum) 50%, var(--plum-light) 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    padding: 70px 60px;
}

.np-banner-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.np-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(212, 160, 23, 0.15) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
}

.np-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.np-content .section-title {
    margin-bottom: 20px;
}

.np-text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.np-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.np-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.np-step-num {
    width: 44px;
    height: 44px;
    background: var(--amber);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    flex-shrink: 0;
}

.np-step-text {
    padding-top: 8px;
}

.np-step-text strong {
    display: block;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 4px;
}

.np-step-text span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

.np-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* ===== Quote Section ===== */
.quote-section {
    padding: 80px 0;
    background: var(--amber-muted);
    position: relative;
    overflow: hidden;
}

.quote-card {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-decoration {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.6;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-style: italic;
    line-height: 1.7;
    color: var(--plum);
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.quote-attribution {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.quote-author {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
}

.quote-location {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* ===== Contact ===== */
.contact {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    z-index: 1;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-title {
    margin-bottom: 16px;
}

.contact-intro {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-500);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.cd-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cd-icon--plum {
    background: var(--plum-muted);
    color: var(--plum);
}

.cd-icon--amber {
    background: var(--amber-muted);
    color: var(--amber-dark);
}

.cd-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.cd-value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-900);
    line-height: 1.6;
}

.cd-link {
    color: var(--plum);
    transition: color 0.2s;
}

.cd-link:hover {
    color: var(--plum-light);
    text-decoration: underline;
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* Contact Form */
.contact-form-wrapper {
    position: relative;
}

.cf-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 44px;
    box-shadow: var(--shadow-md);
}

.cf-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.cf-subtitle {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin-bottom: 32px;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--gray-900);
    background: var(--gray-50);
    transition: all 0.2s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--plum);
    background: var(--white);
    box-shadow: 0 0 0 4px var(--plum-muted);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-300);
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.show {
    display: block;
}

.success-icon {
    margin-bottom: 20px;
}

.form-success h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.form-success p {
    color: var(--gray-500);
    line-height: 1.7;
}

/* ===== Footer ===== */
.footer {
    background: var(--gray-900);
    color: rgba(255, 255, 255, 0.7);
    padding: 70px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo-primary {
    color: var(--white);
}

.footer-tagline {
    margin-top: 16px;
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 280px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.fl-group h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    margin-bottom: 16px;
}

.fl-group a,
.fl-group span {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    padding: 5px 0;
    transition: color 0.2s;
}

.fl-group a:hover {
    color: var(--amber);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.2s;
}

.footer-bottom a:hover {
    color: var(--amber);
}

/* ===== Scroll Animations ===== */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-stats {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 40px;
    }
    
    .stat-card {
        width: 140px;
    }
    
    .hero-card {
        padding: 44px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image-wrapper img {
        height: 450px;
    }
    
    .about-floating-card {
        right: 20px;
        bottom: -20px;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-inner {
        height: 70px;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 100px 32px 32px;
        box-shadow: var(--shadow-xl);
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .nav.open {
        right: 0;
    }
    
    .nav-link {
        padding: 14px 16px;
        font-size: 1rem;
        border-radius: var(--radius-md);
    }
    
    .nav-link:hover {
        background: var(--plum-muted);
    }
    
    .btn--nav {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero {
        padding: 110px 0 80px;
        min-height: auto;
    }
    
    .hero-card {
        padding: 32px;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .stat-card {
        width: 100%;
        max-width: 200px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card--accent {
        order: -1;
    }
    
    .np-banner {
        padding: 44px 28px;
    }
    
    .np-steps {
        gap: 18px;
    }
    
    .np-step {
        gap: 14px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cf-card {
        padding: 28px;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-card {
        padding: 24px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .about-floating-card {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 16px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .np-actions {
        flex-direction: column;
    }
    
    .np-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile nav overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26, 21, 37, 0.5);
    z-index: 998;
}

.nav-overlay.show {
    display: block;
}
