/* ============================================
   Pet Home Euthanasia Service
   Modern Redesign CSS
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Enhanced Color Palette */
    --color-teal: #5bb9cc;
    --color-teal-hover: #1ab5a0;
    --color-teal-dark: #3da8bd;
    --color-teal-deep: #2a8fa3;
    --color-blue: #6b96d1;
    --color-blue-light: #d4e2f7;
    --color-blue-dark: #5578b0;
    --color-coral: #ff565c;
    --color-coral-dark: #e04a50;
    --color-green: #008c76;

    /* Primary mapped */
    --color-primary: #5bb9cc;
    --color-primary-dark: #3da8bd;
    --color-primary-light: #a8e4ef;
    --color-secondary: #6b96d1;
    --color-accent: #ff565c;
    --color-accent-dark: #e04a50;
    --color-cta: #008c76;

    /* Text */
    --color-text: #3d4852;
    --color-text-dark: #1a202c;
    --color-text-heading: #1a202c;
    --color-text-light: #636e72;
    --color-text-muted: #a0aec0;

    /* Backgrounds */
    --color-bg-white: #ffffff;
    --color-bg-light: #f7f9fc;
    --color-bg-teal: #5bb9cc;
    --color-bg-blue: #6b96d1;
    --color-bg-card: #e8eef8;
    --color-bg-dark: #3da8bd;

    /* Borders */
    --color-border: #d2d6dc;
    --color-border-light: #e9ecef;

    /* Typography */
    --font-heading: 'Dancing Script', cursive;
    --font-body: 'Playfair Display', Georgia, serif;
    --font-accent: 'Oswald', sans-serif;

    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-md: 1.125rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 1.75rem;
    --font-size-3xl: 2.25rem;
    --font-size-4xl: 3rem;
    --font-size-5xl: 4rem;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Borders & Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-card: 0 4px 24px rgba(107, 150, 209, 0.18);
    --shadow-teal: 0 4px 24px rgba(91, 185, 204, 0.3);
    --shadow-glow-teal: 0 0 30px rgba(91, 185, 204, 0.4);
    --shadow-glow-coral: 0 0 20px rgba(255, 86, 92, 0.35);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Layout */
    --container-max: 1200px;
    --header-height: 100px;
    --topbar-height: 40px;
}

/* ---------- Keyframe Animations ---------- */
@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 8px rgba(255, 86, 92, 0.3);
    }

    50% {
        box-shadow: 0 0 24px rgba(255, 86, 92, 0.6);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes floatUp {

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

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

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

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

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

body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    line-height: 1.75;
    color: var(--color-text);
    background-color: var(--color-bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--color-teal-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover,
a:focus {
    color: var(--color-text-heading);
}

ul {
    list-style: none;
}

/* ---------- Accessibility ---------- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--color-teal);
    color: #fff;
    padding: var(--space-sm) var(--space-md);
    z-index: 10000;
    font-weight: 600;
    border-radius: 0 0 var(--radius-md) 0;
}

.skip-link:focus {
    top: 0;
    color: #fff;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:focus-visible {
    outline: 3px solid var(--color-teal);
    outline-offset: 2px;
}

/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-text-heading);
}

h1 {
    font-size: var(--font-size-5xl);
}

h2 {
    font-size: var(--font-size-4xl);
}

h3 {
    font-size: var(--font-size-2xl);
}

h4 {
    font-size: var(--font-size-xl);
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-3xl);
    position: relative;
    padding-bottom: var(--space-lg);
    font-size: var(--font-size-4xl);
    letter-spacing: 0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-teal), var(--color-blue), var(--color-teal));
    background-size: 200% 100%;
    animation: gradientShift 4s ease infinite;
    border-radius: var(--radius-full);
}

.section-dark .section-title,
.section-teal .section-title,
.section-blue .section-title {
    color: #fff;
}

.section-dark .section-title::after,
.section-teal .section-title::after,
.section-blue .section-title::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.7));
    background-size: 200% 100%;
    animation: gradientShift 4s ease infinite;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    font-weight: 600;
    text-align: center;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    line-height: 1.5;
    letter-spacing: 0.3px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn:active {
    transform: translateY(-1px);
}

.btn-primary {
    background-color: var(--color-teal);
    color: #fff;
    border-color: var(--color-teal);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--color-teal-hover);
    border-color: var(--color-teal-hover);
    color: #fff;
    box-shadow: var(--shadow-teal);
}

.btn-coral {
    background-color: var(--color-coral);
    color: #fff;
    border-color: var(--color-coral);
}

.btn-coral:hover,
.btn-coral:focus {
    background-color: var(--color-coral-dark);
    border-color: var(--color-coral-dark);
    color: #fff;
}

.btn-cta {
    background-color: var(--color-cta);
    color: #fff;
    border-color: var(--color-cta);
}

.btn-cta:hover,
.btn-cta:focus {
    background-color: #006d5c;
    border-color: #006d5c;
    color: #fff;
}

.btn-outline {
    background-color: transparent;
    color: var(--color-teal-dark);
    border-color: var(--color-teal-dark);
}

.btn-outline:hover,
.btn-outline:focus {
    background-color: var(--color-teal);
    color: #fff;
    border-color: var(--color-teal);
}

.btn-outline-white {
    background-color: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover,
.btn-outline-white:focus {
    background-color: #fff;
    color: var(--color-blue);
    border-color: #fff;
}

.btn-lg {
    padding: 16px 40px;
    font-size: var(--font-size-lg);
}

.btn-block {
    width: 100%;
}

/* ---------- Forms ---------- */
.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 600;
    font-size: var(--font-size-sm);
    color: var(--color-text);
}

.form-group .required {
    color: var(--color-coral);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    color: #454545;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--color-teal);
    box-shadow: 0 0 0 4px rgba(125, 208, 224, 0.15);
    outline: none;
}

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

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

.form-success {
    background: linear-gradient(135deg, rgba(125, 208, 224, 0.15), rgba(134, 170, 222, 0.15));
    color: var(--color-cta);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
    display: none;
    border: 1px solid var(--color-teal);
}

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

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: linear-gradient(135deg, var(--color-teal-deep) 0%, var(--color-teal-dark) 100%);
    color: #fff;
    padding: 10px 0;
    font-size: var(--font-size-sm);
    z-index: 1001;
    position: relative;
    letter-spacing: 0.3px;
}

.top-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar a {
    color: #fff;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.top-bar a:hover {
    opacity: 0.85;
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.top-bar-item svg {
    width: 16px;
    height: 16px;
    opacity: 0.9;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
    position: absolute;
    top: var(--topbar-height);
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    height: var(--header-height);
    transition: transform 0.3s ease-in-out, background var(--transition-base), height var(--transition-base), box-shadow var(--transition-base);
}

.site-header.scrolled {
    position: fixed;
    top: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    height: 75px;
    transform: translateY(-100%);
}

.site-header.scrolled.scrolled-up {
    transform: translateY(0);
}

@keyframes slideDownHeader {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 80px;
    width: auto;
    transition: height var(--transition-base);
}

.logo-img-mobile {
    display: none;
    height: 50px;
    width: auto;
}

.site-header.scrolled .logo-img {
    height: 55px;
}

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

.nav-link {
    display: block;
    padding: 10px 14px;
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: #fff;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
}

.site-header.scrolled .nav-link {
    color: var(--color-text);
}

.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link:focus,
.site-header.scrolled .nav-link.active {
    color: var(--color-teal-dark);
    background: rgba(125, 208, 224, 0.1);
}

/* Header Phone */
.header-phone {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 10px 20px;
    font-weight: 700;
    font-size: var(--font-size-sm);
    color: #fff;
    background: var(--color-coral);
    border: 2px solid var(--color-coral);
    border-radius: var(--radius-md);
    white-space: nowrap;
    transition: all var(--transition-fast);
    animation: pulseGlow 2.5s infinite;
}

.header-phone:hover,
.header-phone:focus {
    background: var(--color-coral-dark);
    border-color: var(--color-coral-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-coral);
    animation: none;
}

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    position: relative;
    transition: var(--transition-fast);
}

.site-header.scrolled .hamburger,
.site-header.scrolled .hamburger::before,
.site-header.scrolled .hamburger::after {
    background: var(--color-text);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 26px;
    height: 2px;
    background: #fff;
    left: 0;
    transition: var(--transition-fast);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

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

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

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Static Background */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* Removed linear gradient filter to match original site */
    background: transparent;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: var(--space-3xl) 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: var(--space-3xl);
    align-items: center;
}

.hero-text {
    color: #fff;
}

.hero-text h1 {
    color: #fff;
    font-size: var(--font-size-5xl);
    margin-bottom: var(--space-lg);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: var(--font-size-md);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
    opacity: 0.95;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Hero Form */
.hero-form-wrapper {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: floatUp 6s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.hero-form-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(91, 185, 204, 0.05), transparent);
    animation: shimmer 6s ease infinite;
    pointer-events: none;
}

.hero-form-wrapper h2 {
    font-size: var(--font-size-2xl);
    text-align: center;
    margin-bottom: var(--space-lg);
    color: var(--color-blue);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255, 255, 255, 0.7);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 0;
}

.slider-dot:hover,
.slider-dot.active {
    background: #fff;
    border-color: #fff;
    transform: scale(1.2);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: var(--space-4xl) 0;
    position: relative;
}

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

.section-teal {
    background: linear-gradient(135deg, #4db5c9 0%, #5bb9cc 50%, #4aafbf 100%);
    color: #fff;
}

.section-blue {
    background: linear-gradient(135deg, #5a86c3 0%, #6b96d1 50%, #5578b0 100%);
    color: #fff;
}

.section-gray {
    background: var(--color-bg-light);
}

.section-dark {
    background: linear-gradient(135deg, var(--color-bg-dark), var(--color-teal-deep));
    color: #fff;
}

/* Background image overlay sections */
.section-bg-image {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.section-bg-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(107, 150, 209, 0.9), rgba(91, 185, 204, 0.85));
    z-index: 0;
}

.section-bg-image>.container {
    position: relative;
    z-index: 1;
}

/* ============================================
   ABOUT EUTHANASIA - Content Blocks
   ============================================ */
.content-intro {
    max-width: 900px;
    margin: 0 auto var(--space-3xl);
    text-align: center;
}

.content-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    margin-bottom: var(--space-3xl);
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-block-reverse {
    direction: rtl;
}

.content-block-reverse>* {
    direction: ltr;
}

.content-text p {
    margin-bottom: var(--space-md);
    font-size: var(--font-size-base);
    line-height: 1.75;
}

.section-teal .content-text p,
.section-blue .content-text p {
    color: rgba(255, 255, 255, 0.92);
}

.content-text p:last-child {
    margin-bottom: 0;
}

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

.content-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

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

.content-image:hover img {
    transform: scale(1.04);
}

/* ============================================
   CREMATION SECTION
   ============================================ */
.cremation-section {
    position: relative;
    padding: var(--space-4xl) 0;
    background-image: url('../images/cremation-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}

.cremation-section .container {
    display: flex;
    justify-content: flex-end;
    /* Align box to the right */
    width: 100%;
}

.cremation-overlay-box {
    background: rgba(135, 171, 219, 0.95);
    /* Matched blue overlay */
    padding: var(--space-3xl) var(--space-2xl);
    max-width: 650px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.cremation-overlay-box .section-title {
    color: #fff;
    margin-bottom: var(--space-lg);
    text-align: left;
}

.cremation-overlay-box p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #fff;
    margin: 0;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    align-items: stretch;
}

.pricing-card {
    background: var(--color-bg-card);
    border: none;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    transition: all var(--transition-base);
    position: relative;
    box-shadow: var(--shadow-card);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-teal), var(--color-blue));
    z-index: 1;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 50px rgba(107, 150, 209, 0.25);
}

.pricing-card-featured {
    border: 2px solid rgba(91, 185, 204, 0.4);
    transform: scale(1.03);
    box-shadow: var(--shadow-glow-teal);
}

.pricing-card-featured::before {
    height: 5px;
    background: linear-gradient(90deg, var(--color-coral), var(--color-teal), var(--color-blue));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.pricing-card-featured:hover {
    transform: scale(1.03) translateY(-12px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(135deg, var(--color-coral), var(--color-coral-dark));
    color: #fff;
    padding: 8px 20px;
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 30px;
    font-family: var(--font-accent);
    box-shadow: 0 4px 15px rgba(220, 83, 83, 0.4);
    z-index: 10;
    transform: none;
}

.pricing-header {
    background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-teal-dark) 100%);
    padding: var(--space-lg);
    text-align: center;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-card-featured .pricing-header {
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-teal) 100%);
}

.pricing-header h3 {
    font-size: var(--font-size-2xl);
    color: #fff;
    margin: 0;
}

.pricing-body {
    padding: var(--space-xl);
    flex: 1;
}

.pricing-body p {
    font-size: var(--font-size-sm);
    line-height: 1.8;
    color: var(--color-text);
}

.pricing-footer {
    padding: var(--space-lg) var(--space-xl) var(--space-xl);
    text-align: center;
}

.price {
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-md);
    color: var(--color-text-light);
    font-family: var(--font-body);
}

.price strong {
    font-size: var(--font-size-4xl);
    font-family: var(--font-accent);
    font-weight: 500;
    color: var(--color-teal-dark);
    display: block;
    margin-top: var(--space-xs);
    letter-spacing: -1px;
}

.pricing-notice {
    margin: var(--space-4xl) auto 0;
    max-width: 900px;
    background: #f4f4f4;
    border: 3px solid #cc0000;
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
}

.pricing-notice .notice-title {
    color: #cc0000;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.pricing-notice .notice-text {
    color: #cc0000;
    font-size: 1.15rem;
    margin-bottom: var(--space-md);
}

.pricing-notice .notice-contact {
    color: #cc0000;
    font-size: 1.15rem;
    margin: 0;
}

.pricing-notice a {
    color: #0000ee;
    font-weight: 700;
    text-decoration: underline;
}

.pricing-notice a:hover {
    color: var(--color-blue);
}

/* ============================================
   PAYMENT SECTION
   ============================================ */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
}

.payment-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.12);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
    backdrop-filter: blur(5px);
}

.payment-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.payment-card img {
    margin: 0 auto var(--space-md);
    width: 100px;
    height: auto;
    object-fit: contain;
}

.payment-card h3 {
    color: #fff;
    margin-bottom: var(--space-sm);
    font-size: var(--font-size-xl);
}

.payment-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--font-size-sm);
}

.payment-note {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    text-align: center;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto;
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.75);
    font-style: italic;
    line-height: 1.7;
}

.payment-note svg {
    flex-shrink: 0;
    margin-top: 4px;
    opacity: 0.75;
}

/* ============================================
   ABOUT DOCTOR SECTION
   ============================================ */
.doctor-block {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.doctor-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: calc(var(--header-height) + var(--space-xl));
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.doctor-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.doctor-text p {
    font-size: var(--font-size-base);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.section-blue .doctor-text p {
    color: rgba(255, 255, 255, 0.92);
}

.doctor-text p:last-child {
    margin-bottom: 0;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact-info p {
    font-size: var(--font-size-base);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.section-teal .contact-info p {
    color: rgba(255, 255, 255, 0.92);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.contact-item svg {
    color: #fff;
    flex-shrink: 0;
    opacity: 0.9;
}

.section-teal .contact-item a {
    color: #fff;
    font-weight: 600;
    font-size: var(--font-size-md);
}

.section-teal .contact-item a:hover {
    opacity: 0.8;
    color: #fff;
}

.section-teal .contact-item span {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
}

.contact-info h3 {
    margin-bottom: var(--space-md);
    color: #fff;
}

/* Service Area Tags */
.service-area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 30px;
    font-size: var(--font-size-xs);
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all var(--transition-fast);
}

.tag:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.contact-form-wrapper h3 {
    text-align: center;
    margin-bottom: var(--space-xl);
    color: var(--color-blue);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: linear-gradient(135deg, #2a7a8c 0%, #1d6b7c 50%, #1a5f6e 100%);
    color: rgba(255, 255, 255, 0.85);
    padding: var(--space-3xl) 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-2xl);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer-logo {
    max-width: 180px;
    height: auto;
    object-fit: contain;
}

.footer-brand p {
    font-size: var(--font-size-sm);
    line-height: 1.7;
    opacity: 0.8;
}

.footer-links h4,
.footer-contact h4 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-lg);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: var(--font-size-sm);
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

.footer-links a::before {
    content: '›';
    font-size: 1.2em;
    opacity: 0.5;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-contact p {
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-sm);
    line-height: 1.6;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: var(--space-lg) 0;
    text-align: center;
}

.footer-bottom p {
    font-size: var(--font-size-sm);
    opacity: 0.6;
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-teal);
    color: #fff;
    border: none;
    border-radius: 0;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-teal-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-teal);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger animation delay for children */
.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Large Desktop */
@media (max-width: 1200px) {
    .hero-grid {
        grid-template-columns: 1fr 380px;
        gap: var(--space-2xl);
    }

    .pricing-grid {
        gap: var(--space-md);
    }
}

/* Tablet - 1024px */
@media (max-width: 1024px) {
    :root {
        --font-size-5xl: 3rem;
        --font-size-4xl: 2.5rem;
        --font-size-3xl: 2rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }

    .hero-subtitle {
        max-width: none;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-form-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .pricing-card-featured {
        transform: none;
    }

    .pricing-card-featured:hover {
        transform: translateY(-10px);
    }

    .doctor-block {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .doctor-image {
        max-width: 320px;
        margin: 0 auto;
        position: static;
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .top-bar-left {
        display: none;
    }

    .top-bar-right {
        width: 100%;
        justify-content: center;
    }
}

/* Tablet Small - 768px */
@media (max-width: 768px) {
    :root {
        --font-size-5xl: 2.5rem;
        --font-size-4xl: 2rem;
        --font-size-3xl: 1.75rem;
        --font-size-2xl: 1.5rem;
        --header-height: 70px;
    }

    .top-bar {
        display: none;
    }

    .site-header {
        top: 0;
    }

    .logo-img {
        display: none;
    }

    .logo-img-mobile {
        display: block;
    }

    /* Mobile Navigation */
    .nav-toggle {
        display: block;
    }

    .main-nav .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        height: 100dvh;
        background: var(--color-blue);
        flex-direction: column;
        align-items: stretch;
        padding: calc(var(--header-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
        transition: right var(--transition-base);
        overflow-y: auto;
        z-index: 1000;
    }

    .main-nav .nav-list.open {
        right: 0;
    }

    .nav-link {
        font-size: var(--font-size-base);
        padding: var(--space-md) var(--space-lg);
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        color: #fff;
        border-radius: 0;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(255, 255, 255, 0.15);
    }

    .site-header.scrolled .nav-link {
        color: #fff;
    }

    .site-header.scrolled .nav-link:hover,
    .site-header.scrolled .nav-link.active {
        color: #fff;
        background: rgba(255, 255, 255, 0.15);
    }

    .header-phone span {
        display: none;
    }

    .header-phone {
        padding: 10px;
        border-radius: var(--radius-full);
        width: 42px;
        height: 42px;
    }

    /* Mobile Overlay */
    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .hero-content {
        padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-2xl);
    }

    .content-block {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .content-block-reverse {
        direction: ltr;
    }

    .payment-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto var(--space-2xl);
    }

    .section {
        padding: var(--space-3xl) 0;
    }

    .section-title {
        margin-bottom: var(--space-2xl);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }

    .footer-links a::before {
        display: none;
    }
}

/* Mobile - 480px */
@media (max-width: 480px) {
    :root {
        --font-size-5xl: 2rem;
        --font-size-4xl: 1.75rem;
        --font-size-3xl: 1.5rem;
        --space-4xl: 4rem;
    }

    .container {
        padding: 0 var(--space-md);
    }

    .hero-section {
        min-height: auto;
    }

    .hero-content {
        padding: calc(var(--header-height) + var(--space-lg)) 0 var(--space-xl);
    }

    .hero-form-wrapper {
        padding: var(--space-lg);
    }

    .hero-form-wrapper h2 {
        font-size: var(--font-size-xl);
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: var(--font-size-base);
    }

    .pricing-card {
        margin: 0;
    }

    .service-area-tags {
        justify-content: center;
    }

    .content-text p {
        font-size: 13px;
        line-height: 1.6;
    }

    .doctor-block {
        gap: var(--space-xl);
    }

    .doctor-image {
        max-width: 250px;
    }

    .contact-details {
        gap: var(--space-md);
    }
}

/* Small Mobile - 360px */
@media (max-width: 360px) {
    :root {
        --font-size-5xl: 1.75rem;
        --font-size-4xl: 1.5rem;
    }

    .hero-form-wrapper {
        padding: var(--space-md);
    }

    .pricing-header {
        padding: var(--space-md);
    }

    .pricing-body {
        padding: var(--space-md);
    }
}

/* ---------- Landscape Mobile ---------- */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: var(--space-xl) 0;
    }

    .hero-text h1 {
        font-size: var(--font-size-3xl);
    }
}

/* ---------- Print Styles ---------- */
@media print {

    .site-header,
    .top-bar,
    .hero-slider,
    .hero-overlay,
    .slider-controls,
    .back-to-top,
    .nav-toggle {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
    }

    .section {
        padding: 1rem 0;
        break-inside: avoid;
        background: #fff !important;
        color: #000 !important;
    }

    .hero-section {
        min-height: auto;
        padding: 1rem 0;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    .btn {
        border: 1px solid #000 !important;
        background: transparent !important;
        color: #000 !important;
    }
}

/* ============================================
   TRUST BADGES BAR
   ============================================ */
.trust-badges {
    background: var(--color-bg-light);
    padding: var(--space-2xl) 0;
    border-bottom: 1px solid var(--color-border-light);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.trust-item:hover {
    background: rgba(91, 185, 204, 0.08);
    transform: translateY(-4px);
}

.trust-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, rgba(91, 185, 204, 0.15), rgba(107, 150, 209, 0.15));
    color: var(--color-teal-dark);
    margin-bottom: var(--space-xs);
}

.trust-number {
    font-family: var(--font-accent);
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--color-teal-dark);
    line-height: 1;
}

.trust-label {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.18);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg) var(--space-xl);
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: var(--font-size-base);
    color: #fff;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    gap: var(--space-md);
    transition: all var(--transition-fast);
}

.faq-question:hover {
    color: rgba(255, 255, 255, 0.9);
}

.faq-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.15);
    transition: transform var(--transition-base);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    padding: 0 var(--space-xl) var(--space-xl);
    font-size: var(--font-size-sm);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

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

/* ============================================
   TRUST BADGES RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
}

@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-sm);
    }

    .trust-item {
        padding: var(--space-md);
    }

    .trust-icon {
        width: 44px;
        height: 44px;
    }

    .trust-number {
        font-size: var(--font-size-xl);
    }
}

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

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

    html {
        scroll-behavior: auto;
    }

    .hero-slide {
        transition: none;
    }

    .fade-in-up,
    .fade-in-left,
    .fade-in-right {
        opacity: 1;
        transform: none;
    }
}

/* ============================================
   CUSTOM CONTACT SECTION (Map Layout)
   ============================================ */
.contact-custom-section {
    padding: var(--space-4xl) 0;
}

.contact-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.contact-info-new {
    text-align: center;
    color: #fff;
}

.contact-new-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: var(--space-xs);
    font-weight: 700;
}

.contact-new-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
    opacity: 0.95;
}

.contact-new-phone a {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    margin-bottom: var(--space-xs);
}

.contact-new-phone a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.contact-new-phone p {
    font-size: 1.1rem;
    margin-bottom: var(--space-xl);
    opacity: 0.9;
}

.contact-new-divider {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
    margin: 0 auto var(--space-xl);
    width: 60%;
}

.contact-new-hours p {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
}

.contact-new-appt {
    display: inline-block;
    border: 1px solid #333;
    padding: var(--space-sm) var(--space-lg);
    margin: var(--space-xl) 0;
}

.contact-new-appt p {
    color: #e63946 !important;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.contact-new-thanks {
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: var(--space-md);
}

.contact-map-wrapper {
    text-align: center;
    color: #fff;
}

.service-area-map {
    width: 100%;
    max-width: 650px;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: var(--space-xl);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.contact-map-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: #fff;
    margin-bottom: var(--space-sm);
    font-weight: 700;
}

.contact-map-text {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
}

@media (max-width: 992px) {
    .contact-grid-new {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .contact-new-divider {
        width: 80%;
    }
}