/* ========================================
   JEDDAH CLINIC — Premium Domain Landing
   ======================================== */

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

:root {
    --bg-primary: #050a14;
    --bg-secondary: #0a1628;
    --bg-card: #0d1f3c;
    --bg-card-hover: #112a4d;
    --text-primary: #f0f4ff;
    --text-secondary: #8ba3c7;
    --text-muted: #5a7299;
    --accent: #0ea5e9;
    --accent-light: #38bdf8;
    --accent-dark: #0284c7;
    --accent-glow: rgba(14, 165, 233, 0.15);
    --green: #10b981;
    --purple: #8b5cf6;
    --pink: #ec4899;
    --gold: #f59e0b;
    --border: rgba(139, 163, 199, 0.08);
    --border-light: rgba(139, 163, 199, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(-10vh) scale(1);
    }
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(5, 10, 20, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-icon {
    font-size: 28px;
    filter: drop-shadow(0 0 8px rgba(14, 165, 233, 0.4));
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-dot {
    color: var(--accent);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(14, 165, 233, 0.5);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(14, 165, 233, 0.12) 0%, rgba(139, 92, 246, 0.06) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--accent-glow);
    border: 1px solid rgba(14, 165, 233, 0.25);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-light);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

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

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-domain {
    background: linear-gradient(135deg, #fff 0%, #c7d8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-dot {
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(14, 165, 233, 0.5);
}

.btn-secondary {
    background: rgba(139, 163, 199, 0.08);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background: rgba(139, 163, 199, 0.15);
    border-color: rgba(139, 163, 199, 0.25);
    transform: translateY(-2px);
}

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

/* Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-light), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-light);
}

/* ========================================
   Animations
   ======================================== */
.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.15s;
}

.delay-2 {
    animation-delay: 0.3s;
}

.delay-3 {
    animation-delay: 0.45s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   Section Styles
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent-glow);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #fff, #c7d8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========================================
   Why Section / Features
   ======================================== */
.why-section {
    padding: 100px 0;
    position: relative;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

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

.feature-icon {
    font-size: 36px;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ========================================
   Clinics Section
   ======================================== */
.clinics-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, transparent 0%, rgba(14, 165, 233, 0.02) 50%, transparent 100%);
}

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

.clinic-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

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

.clinic-image {
    position: relative;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.clinic-icon-large {
    font-size: 56px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    animation: float-icon 4s ease-in-out infinite;
}

@keyframes float-icon {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

.clinic-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.clinic-content {
    padding: 24px;
}

.clinic-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.clinic-specialty {
    font-size: 13px;
    color: var(--accent-light);
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.clinic-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.clinic-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
}

.clinic-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    padding: 80px 0;
}

.cta-card {
    position: relative;
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(14, 165, 233, 0.08) 100%);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: var(--radius-xl);
    padding: 72px 48px;
    text-align: center;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(14, 165, 233, 0.12), transparent 70%);
    pointer-events: none;
}

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

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #fff, var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content>p {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.cta-actions {
    margin-bottom: 20px;
}

.cta-note {
    font-size: 13px;
    color: var(--text-muted);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    padding: 48px 0 24px;
    border-top: 1px solid var(--border);
}

.footer-content {
    text-align: center;
    margin-bottom: 32px;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-text {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-light);
}

.footer-divider {
    color: var(--text-muted);
}

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

.footer-bottom p {
    font-size: 12px;
    color: var(--text-muted);
}

/* ========================================
   Scroll Animations
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Responsive — Tablet Landscape (1024px)
   ======================================== */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .clinics-grid {
        gap: 20px;
    }

    .why-section,
    .clinics-section {
        padding: 80px 0;
    }

    .cta-card {
        padding: 60px 40px;
    }

    .hero-glow {
        width: 600px;
        height: 400px;
    }
}

/* ========================================
   Responsive — Tablet Portrait (768px)
   ======================================== */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    /* Navbar */
    .navbar {
        padding: 12px 0;
    }

    .nav-container {
        padding: 0 16px;
    }

    .nav-cta {
        padding: 10px 20px;
        font-size: 13px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    .logo-icon {
        font-size: 24px;
    }

    .logo-text {
        font-size: 18px;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding: 100px 16px 60px;
    }

    .hero-title {
        font-size: clamp(36px, 10vw, 56px);
        letter-spacing: -1.5px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
        padding: 0 8px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 48px;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        min-height: 48px;
        padding: 14px 28px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 12px;
    }

    .badge {
        font-size: 11px;
        padding: 6px 16px;
        margin-bottom: 24px;
    }

    .hero-glow {
        width: 400px;
        height: 300px;
    }

    /* Sections */
    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: clamp(24px, 5vw, 32px);
        padding: 0 8px;
    }

    .section-desc {
        font-size: 15px;
        padding: 0 8px;
    }

    .section-tag {
        font-size: 11px;
        padding: 5px 14px;
        margin-bottom: 16px;
    }

    /* Features */
    .why-section {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 28px 24px;
    }

    .feature-icon {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .feature-card h3 {
        font-size: 16px;
    }

    .feature-card p {
        font-size: 13px;
    }

    /* Clinics */
    .clinics-section {
        padding: 60px 0;
    }

    .clinics-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .clinic-image {
        height: 140px;
    }

    .clinic-icon-large {
        font-size: 48px;
    }

    .clinic-content {
        padding: 20px;
    }

    .clinic-content h3 {
        font-size: 16px;
    }

    .clinic-desc {
        font-size: 13px;
    }

    .clinic-meta {
        font-size: 12px;
    }

    .clinic-meta span {
        padding: 4px 0;
        min-height: 32px;
    }

    /* CTA */
    .cta-section {
        padding: 60px 0;
    }

    .cta-card {
        padding: 48px 20px;
        border-radius: var(--radius-lg);
    }

    .cta-content h2 {
        font-size: clamp(24px, 5vw, 32px);
    }

    .cta-content>p {
        font-size: 15px;
        padding: 0 8px;
    }

    .btn-large {
        padding: 16px 32px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
        min-height: 52px;
    }

    .cta-note {
        font-size: 12px;
        padding: 0 8px;
    }

    /* Footer */
    .footer {
        padding: 36px 0 20px;
    }

    .footer-content {
        margin-bottom: 24px;
    }

    .footer-text {
        font-size: 13px;
        padding: 0 16px;
    }

    .footer-links a {
        font-size: 14px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    .footer-bottom p {
        font-size: 11px;
    }
}

/* ========================================
   Responsive — Large Phone (480px)
   ======================================== */
@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }

    /* Hero */
    .hero {
        padding: 90px 14px 48px;
    }

    .hero-title {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 28px;
    }

    .hero-actions {
        margin-bottom: 40px;
    }

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

    .stat {
        flex-direction: row;
        gap: 12px;
    }

    .stat-number {
        font-size: 22px;
    }

    .badge {
        font-size: 10px;
        padding: 5px 12px;
        gap: 6px;
    }

    .badge-dot {
        width: 6px;
        height: 6px;
    }

    /* Sections */
    .section-title {
        font-size: 24px;
        letter-spacing: -0.5px;
    }

    .section-desc {
        font-size: 14px;
    }

    /* Features */
    .why-section {
        padding: 48px 0;
    }

    .feature-card {
        padding: 24px 20px;
    }

    .feature-icon {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .feature-card h3 {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .feature-card p {
        font-size: 13px;
        line-height: 1.55;
    }

    /* Clinics */
    .clinics-section {
        padding: 48px 0;
    }

    .clinic-image {
        height: 120px;
    }

    .clinic-icon-large {
        font-size: 42px;
    }

    .clinic-badge {
        font-size: 10px;
        padding: 3px 10px;
        top: 10px;
        right: 10px;
    }

    .clinic-content {
        padding: 16px;
    }

    .clinic-content h3 {
        font-size: 15px;
    }

    .clinic-specialty {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .clinic-desc {
        font-size: 12px;
        line-height: 1.55;
        margin-bottom: 12px;
    }

    .clinic-meta {
        font-size: 11px;
        gap: 4px;
    }

    /* CTA */
    .cta-section {
        padding: 40px 0;
    }

    .cta-card {
        padding: 40px 16px;
    }

    .cta-content h2 {
        font-size: 22px;
    }

    .cta-content>p {
        font-size: 14px;
        margin-bottom: 24px;
    }

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

    .cta-glow {
        width: 300px;
        height: 200px;
    }

    /* Footer */
    .footer {
        padding: 32px 0 16px;
    }

    .footer-brand .logo-icon {
        font-size: 22px;
    }

    .footer-brand .logo-text {
        font-size: 16px;
    }

    .footer-text {
        font-size: 12px;
    }

    .footer-bottom p {
        font-size: 10px;
    }
}

/* ========================================
   Responsive — Small Phone (360px)
   ======================================== */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

    .hero {
        padding: 84px 12px 40px;
    }

    .hero-title {
        font-size: 28px;
        letter-spacing: -0.8px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .nav-cta {
        padding: 8px 14px;
        font-size: 12px;
    }

    .logo-text {
        font-size: 16px;
    }

    .logo-icon {
        font-size: 22px;
    }

    .section-title {
        font-size: 20px;
    }

    .section-desc {
        font-size: 13px;
    }

    .feature-card {
        padding: 20px 16px;
    }

    .clinic-image {
        height: 100px;
    }

    .clinic-icon-large {
        font-size: 36px;
    }

    .clinic-content {
        padding: 14px;
    }

    .cta-card {
        padding: 32px 14px;
    }

    .cta-content h2 {
        font-size: 20px;
    }

    .btn-large {
        padding: 14px 20px;
        font-size: 13px;
    }
}

/* ========================================
   Touch & Interaction Enhancements
   ======================================== */
@media (hover: none) and (pointer: coarse) {

    /* Enlarge all touch targets to at least 44px */
    .btn {
        min-height: 48px;
    }

    .nav-cta {
        min-height: 44px;
    }

    .footer-links a {
        min-height: 44px;
        padding: 8px 4px;
    }

    /* Remove hover-dependent effects on touch */
    .feature-card:hover,
    .clinic-card:hover {
        transform: none;
        box-shadow: none;
    }

    .feature-card:active {
        background: var(--bg-card-hover);
        border-color: var(--border-light);
    }

    .clinic-card:active {
        border-color: var(--border-light);
    }

    .btn-primary:hover {
        transform: none;
    }

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

    .btn-secondary:hover {
        transform: none;
    }

    .btn-secondary:active {
        background: rgba(139, 163, 199, 0.15);
    }

    .nav-cta:hover {
        transform: none;
    }

    .nav-cta:active {
        transform: scale(0.97);
    }
}

/* ========================================
   Landscape Phone
   ======================================== */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 24px 40px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-actions {
        flex-direction: row;
        margin-bottom: 24px;
    }

    .hero-actions .btn {
        width: auto;
    }

    .hero-stats {
        flex-direction: row;
    }

    .stat-divider {
        display: block;
    }
}

/* ========================================
   Prefers Reduced Motion
   ======================================== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .particle {
        display: none;
    }

    .clinic-icon-large {
        animation: none;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}