/* ============================================
   Patel Lalit MD — Premium Medical Website
   Dark Luxury Theme: Teal + Slate Grey
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --bg-primary: #0a0f18;
    --bg-secondary: #0d1520;
    --bg-tertiary: #111b2a;
    --bg-card: #111c2c;
    --bg-elevated: #162032;
    
    --teal-dark: #0d3b4a;
    --teal-mid: #1a6b7a;
    --teal-accent: #2a9d8f;
    --teal-light: #40b8a8;
    --teal-glow: rgba(42, 157, 143, 0.15);
    --teal-glow-strong: rgba(42, 157, 143, 0.3);
    
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    
    --gold: #c9a84c;
    --gold-light: #e0c068;
    --gold-dark: #a08030;
    --gold-glow: rgba(201, 168, 76, 0.12);
    --gold-glow-strong: rgba(201, 168, 76, 0.25);
    
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', 'Segoe UI', sans-serif;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-slower: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow-teal: 0 0 30px rgba(42, 157, 143, 0.2);
    --shadow-glow-gold: 0 0 30px rgba(201, 168, 76, 0.15);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Cursor Glow (decorative) --- */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42, 157, 143, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: all var(--transition-base);
    background: transparent;
}

.header.scrolled {
    background: rgba(10, 15, 24, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(42, 157, 143, 0.1);
    box-shadow: var(--shadow-md);
}

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

/* --- Logo --- */
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 1001;
}

.logo--footer {
    margin-bottom: 16px;
}

.logo-mark {
    width: 44px;
    height: 44px;
    border: 1.5px solid var(--gold);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.05em;
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.logo:hover .logo-mark {
    background: var(--gold-glow-strong);
    box-shadow: var(--shadow-glow-gold);
}

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

.logo-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

.logo-tagline {
    font-size: 10px;
    font-weight: 500;
    color: var(--teal-accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* --- Navigation --- */
.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 500;
    color: var(--slate-400);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(42, 157, 143, 0.08);
}

.nav-cta {
    margin-left: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--teal-mid), var(--teal-accent));
    color: var(--text-primary) !important;
    border-radius: var(--radius-md);
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: all var(--transition-base);
    box-shadow: 0 2px 12px rgba(42, 157, 143, 0.2);
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--teal-accent), var(--teal-light)) !important;
    box-shadow: var(--shadow-glow-teal);
    transform: translateY(-1px);
}

/* --- Mobile Nav Toggle --- */
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: none;
    border: 1px solid var(--slate-700);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    transition: all var(--transition-fast);
}

.nav-toggle:hover {
    border-color: var(--teal-accent);
}

.hamburger {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    position: relative;
    transition: all var(--transition-base);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-base);
}

.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 24, 0.97);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-slow);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: none;
    border: 1px solid var(--slate-700);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.mobile-menu-close:hover {
    border-color: var(--teal-accent);
    color: var(--teal-accent);
}

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

.mobile-nav-link {
    display: block;
    padding: 16px 32px;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    color: var(--slate-400);
    transition: all var(--transition-fast);
    border-radius: var(--radius-md);
}

.mobile-nav-link:hover {
    color: var(--text-primary);
    background: rgba(42, 157, 143, 0.06);
}

.mobile-menu-cta {
    margin-top: 24px;
}

.mobile-nav-cta {
    display: inline-block;
    padding: 16px 48px;
    background: linear-gradient(135deg, var(--teal-mid), var(--teal-accent));
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.mobile-nav-cta:hover {
    box-shadow: var(--shadow-glow-teal);
    transform: translateY(-2px);
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    background: var(--bg-primary);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(42, 157, 143, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 20% 80%, rgba(201, 168, 76, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 90% 10%, rgba(42, 157, 143, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--teal-accent), transparent);
    opacity: 0.4;
}

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

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

/* Hero Content */
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.eyebrow-text {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(42px, 5.5vw, 72px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

.headline-accent {
    font-style: italic;
    font-weight: 400;
    color: var(--teal-accent);
}

.hero-subtitle {
    font-size: 17px;
    line-height: 1.8;
    color: var(--slate-400);
    max-width: 480px;
    margin-bottom: 40px;
    font-weight: 300;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--teal-mid), var(--teal-accent));
    color: var(--text-primary);
    box-shadow: 0 4px 20px rgba(42, 157, 143, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--teal-accent), var(--teal-light));
    box-shadow: var(--shadow-glow-teal);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--slate-300);
    border: 1px solid var(--slate-700);
}

.btn-ghost:hover {
    border-color: var(--teal-accent);
    color: var(--teal-accent);
    background: var(--teal-glow);
}

.btn-large {
    padding: 18px 40px;
    font-size: 14px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-icon {
    transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
    transform: translate(3px, -3px);
}

/* Hero Credentials */
.hero-credentials {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--slate-400);
    font-size: 13px;
    font-weight: 500;
}

.credential-icon {
    color: var(--gold);
    flex-shrink: 0;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-image-frame {
    position: relative;
    max-width: 480px;
    width: 100%;
}

.hero-image-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: var(--shadow-lg);
}

.hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slower);
}

.hero-image-frame:hover .hero-image-main img {
    transform: scale(1.03);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(10, 15, 24, 0.4) 100%
    );
    pointer-events: none;
}

.hero-accent-border {
    position: absolute;
    top: 20px;
    right: -20px;
    bottom: -20px;
    left: 20px;
    border: 1px solid var(--gold);
    border-radius: var(--radius-lg);
    opacity: 0.3;
    pointer-events: none;
    z-index: -1;
}

/* Floating Card */
.hero-float-card {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: var(--bg-elevated);
    border: 1px solid rgba(42, 157, 143, 0.2);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    box-shadow: var(--shadow-lg);
    max-width: 260px;
    z-index: 2;
}

.float-card-icon {
    color: var(--teal-accent);
    margin-bottom: 12px;
}

.float-card-label {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.float-card-desc {
    font-size: 12px;
    color: var(--slate-400);
    line-height: 1.6;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--slate-600);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--teal-accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* --- Section Shared --- */
.section-header {
    margin-bottom: 64px;
}

.section-header--centered {
    text-align: center;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.section-header--centered .section-eyebrow {
    justify-content: center;
}

.eyebrow-accent {
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.title-accent {
    font-style: italic;
    color: var(--teal-accent);
}

.section-subtitle {
    font-size: 16px;
    line-height: 1.8;
    color: var(--slate-400);
    max-width: 560px;
    font-weight: 300;
}

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

/* --- Services Section --- */
.services {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--slate-700), transparent);
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--teal-accent), var(--gold));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover {
    border-color: rgba(42, 157, 143, 0.15);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow-teal);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    border: 1px solid rgba(42, 157, 143, 0.25);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-accent);
    margin-bottom: 24px;
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    background: var(--teal-glow);
    border-color: var(--teal-accent);
    box-shadow: var(--shadow-glow-teal);
}

.service-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.service-description {
    font-size: 14px;
    line-height: 1.8;
    color: var(--slate-400);
    margin-bottom: 24px;
    font-weight: 300;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal-accent);
    transition: all var(--transition-fast);
}

.service-link:hover {
    gap: 12px;
    color: var(--teal-light);
}

/* --- About Section --- */
.about {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 7/9;
    box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slower);
}

.about-image-wrapper:hover img {
    transform: scale(1.02);
}

.about-image-accent {
    position: absolute;
    inset: 16px -16px -16px 16px;
    border: 1px solid var(--gold);
    border-radius: var(--radius-lg);
    opacity: 0.25;
    pointer-events: none;
    z-index: -1;
}

.about-experience-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--bg-elevated);
    border: 1px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    text-align: center;
    box-shadow: var(--shadow-glow-gold);
}

.badge-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}

.badge-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--slate-400);
}

.about-content {
    padding: 20px 0;
}

.about-text {
    margin-bottom: 40px;
}

.about-text p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--slate-300);
    margin-bottom: 16px;
    font-weight: 300;
}

.about-text p:first-child {
    font-size: 17px;
    color: var(--text-secondary);
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.value-icon {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.value-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.value-desc {
    font-size: 13px;
    line-height: 1.7;
    color: var(--slate-400);
    font-weight: 300;
}

/* --- Approach Section --- */
.approach {
    padding: 120px 0;
    background: var(--bg-tertiary);
    position: relative;
    overflow: hidden;
}

.approach-bg-pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 60% 50% at 80% 50%, rgba(42, 157, 143, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 10% 60%, rgba(201, 168, 76, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

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

.approach-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 20px;
}

.timeline-step {
    position: relative;
    padding: 0 32px;
}

.timeline-step:not(:last-child) .step-connector {
    position: absolute;
    right: -16px;
    top: 28px;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--teal-accent), var(--slate-700));
}

.step-number {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 300;
    color: var(--teal-accent);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 20px;
}

.step-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.step-desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--slate-400);
    font-weight: 300;
}

/* --- Contact Section --- */
.contact {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--slate-700), transparent);
}

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

.contact-intro {
    font-size: 15px;
    line-height: 1.8;
    color: var(--slate-400);
    margin-bottom: 40px;
    font-weight: 300;
}

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

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

.detail-icon {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(42, 157, 143, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-accent);
    flex-shrink: 0;
}

.detail-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.detail-value {
    font-size: 15px;
    line-height: 1.7;
    color: var(--slate-300);
    font-weight: 300;
}

.detail-value a {
    color: var(--teal-accent);
    transition: color var(--transition-fast);
}

.detail-value a:hover {
    color: var(--teal-light);
}

/* Contact Form */
.contact-form-wrapper {
    max-width: 520px;
}

.form-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    box-shadow: var(--shadow-md);
}

.form-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 14px;
    color: var(--slate-400);
    margin-bottom: 32px;
    font-weight: 300;
}

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

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

.form-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate-400);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--slate-700);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    transition: all var(--transition-fast);
    outline: none;
}

.form-input::placeholder {
    color: var(--slate-600);
}

.form-input:focus {
    border-color: var(--teal-accent);
    box-shadow: 0 0 0 3px var(--teal-glow);
    background: var(--bg-secondary);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

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

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

.success-icon {
    width: 72px;
    height: 72px;
    border: 2px solid var(--teal-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--teal-accent);
}

.success-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.success-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--slate-400);
    font-weight: 300;
}

/* --- Footer --- */
.footer {
    padding: 80px 0 0;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.8;
    color: var(--slate-500);
    font-weight: 300;
    max-width: 280px;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

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

.footer-links a {
    font-size: 14px;
    color: var(--slate-500);
    transition: all var(--transition-fast);
    font-weight: 300;
}

.footer-links a:hover {
    color: var(--teal-accent);
    padding-left: 4px;
}

.footer-contact address {
    font-style: normal;
    font-size: 14px;
    line-height: 1.8;
    color: var(--slate-500);
    font-weight: 300;
}

.footer-phone {
    margin-top: 8px;
}

.footer-phone a {
    color: var(--teal-accent);
    transition: color var(--transition-fast);
}

.footer-phone a:hover {
    color: var(--teal-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-size: 12px;
    color: var(--slate-600);
    font-weight: 400;
}

.footer-disclaimer {
    font-size: 11px;
    color: var(--slate-700);
    font-weight: 300;
    max-width: 480px;
    text-align: right;
    line-height: 1.6;
}

/* --- Reveal Animations --- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-on-scroll[data-delay="100"] { transition-delay: 0.1s; }
.reveal-on-scroll[data-delay="200"] { transition-delay: 0.2s; }
.reveal-on-scroll[data-delay="300"] { transition-delay: 0.3s; }
.reveal-on-scroll[data-delay="400"] { transition-delay: 0.4s; }
.reveal-on-scroll[data-delay="500"] { transition-delay: 0.5s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-visual {
        justify-content: flex-start;
        order: -1;
    }
    
    .hero-image-frame {
        max-width: 400px;
    }
    
    .hero-float-card {
        left: 20px;
        bottom: 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-visual {
        max-width: 500px;
    }
    
    .approach-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .timeline-step:not(:last-child) .step-connector {
        display: none;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-grid {
        gap: 40px;
    }
    
    .hero-headline {
        font-size: clamp(36px, 8vw, 52px);
    }
    
    .hero-credentials {
        gap: 20px;
    }
    
    .hero-image-frame {
        max-width: 320px;
    }
    
    .hero-float-card {
        display: none;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .services {
        padding: 80px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-card {
        padding: 28px 24px;
    }
    
    .about {
        padding: 80px 0;
    }
    
    .about-experience-badge {
        right: 0;
        bottom: -16px;
    }
    
    .approach {
        padding: 80px 0;
    }
    
    .approach-timeline {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .step-number {
        font-size: 48px;
    }
    
    .contact {
        padding: 80px 0;
    }
    
    .form-card {
        padding: 32px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-disclaimer {
        text-align: center;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-credentials {
        flex-direction: column;
        gap: 12px;
    }
    
    .logo-mark {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .logo-name {
        font-size: 17px;
    }
}
