/* ============================================
   Life Care Animal Clinic - Premium Styles
   Mobile-first responsive design
   Theme: Deep purple with gold accents
   ============================================ */

/* --- CSS Variables --- */
:root {
    --primary: #5B2C87;
    --primary-dark: #3D1A5E;
    --primary-light: #7E4EAD;
    --primary-subtle: #F3EDF9;
    --accent: #D4A843;
    --accent-light: #E8C97A;
    --accent-dark: #B8912E;
    --pink: #C62D77;
    --text: #1B1340;
    --text-light: #4A4565;
    --text-muted: #8B85A0;
    --bg: #FEFEFE;
    --bg-light: #F9F7FC;
    --bg-warm: #FBF9F6;
    --bg-dark: #140E28;
    --bg-dark-lighter: #1E1538;
    --border: #E8E2F0;
    --border-light: #F0ECF5;
    --shadow-sm: 0 1px 3px rgba(59, 26, 94, 0.06);
    --shadow: 0 4px 16px rgba(59, 26, 94, 0.08);
    --shadow-lg: 0 12px 40px rgba(59, 26, 94, 0.12);
    --shadow-xl: 0 20px 60px rgba(59, 26, 94, 0.15);
    --shadow-gold: 0 4px 20px rgba(212, 168, 67, 0.2);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1240px;
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent-dark);
}

/* --- Container --- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Utility Classes --- */
.section-padding {
    padding: 80px 0;
}

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

/* --- Section Titles --- */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(91, 44, 135, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(91, 44, 135, 0.4);
    color: #fff;
    border-color: var(--primary-dark);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-call {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #fff;
    border-color: var(--accent);
    box-shadow: var(--shadow-gold);
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 168, 67, 0.35);
    color: #fff;
}

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

/* --- Header --- */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(254, 254, 254, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(232, 226, 240, 0.5);
    padding: 14px 0;
    transition: box-shadow var(--transition);
}

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

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

.logo img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

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

.logo-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary-dark);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.logo-tagline {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.nav {
    display: none;
    gap: 4px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    border-radius: 50px;
    transition: all var(--transition);
}

.nav-link:hover {
    color: var(--primary);
    background: var(--primary-subtle);
}

.nav-link.active {
    color: var(--primary);
    background: var(--primary-subtle);
    font-weight: 600;
}

.nav-emergency {
    color: var(--pink);
    font-weight: 600;
}

.nav-emergency:hover {
    background: #fdf0f5;
    color: var(--pink);
}

.header-cta {
    display: none;
    padding: 10px 20px;
    font-size: 0.85rem;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.menu-toggle:hover {
    background: var(--bg-light);
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}

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

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

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

/* Mobile nav */
.nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(254, 254, 254, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    gap: 4px;
}

/* --- Hero --- */
.hero {
    padding: 60px 0 80px;
    background: linear-gradient(160deg, #FEFEFE 0%, var(--bg-light) 40%, #EDE4F7 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(91, 44, 135, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    gap: 40px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: var(--shadow-gold);
    letter-spacing: 0.02em;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 20px;
    letter-spacing: -0.025em;
}

.text-accent {
    color: var(--primary);
    position: relative;
}

.text-accent::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(212, 168, 67, 0.25);
    border-radius: 4px;
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 480px;
    line-height: 1.75;
}

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

.hero-image {
    position: relative;
}

.hero-image::before {
    content: "";
    position: absolute;
    top: -10px;
    right: -10px;
    bottom: -10px;
    left: -10px;
    background: linear-gradient(135deg, var(--primary-subtle) 0%, rgba(212, 168, 67, 0.1) 100%);
    border-radius: var(--radius-lg);
    z-index: 0;
}

.hero-image img {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    max-height: 520px;
    object-fit: cover;
    object-position: top center;
    width: 100%;
}

/* --- Trust Bar --- */
.trust-bar {
    padding: 40px 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border-light);
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.trust-item:hover {
    background: var(--bg-light);
}

.trust-icon {
    font-size: 1.6rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-subtle);
    border-radius: 12px;
    flex-shrink: 0;
}

.trust-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 600;
}

.trust-item span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- Services --- */
.services {
    padding: 80px 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    gap: 20px;
}

.service-card {
    background: var(--bg);
    padding: 32px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

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

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

.service-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-subtle);
    border-radius: 14px;
}

.service-card h3 {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 10px;
    font-weight: 600;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

.services-cta {
    text-align: center;
    margin-top: 40px;
}

/* --- About Snippet --- */
.about-snippet {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    gap: 40px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: "";
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 60%;
    height: 60%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: var(--radius-lg);
    opacity: 0.15;
    z-index: 0;
}

.about-image img {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-height: 420px;
    object-fit: cover;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.about-credentials {
    color: var(--accent-dark);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 14px;
    line-height: 1.8;
}

.about-highlights {
    list-style: none;
    margin: 20px 0 28px;
}

.about-highlights li {
    padding: 8px 0 8px 32px;
    position: relative;
    color: var(--text-light);
    font-size: 0.95rem;
}

.about-highlights li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 20px;
    height: 20px;
    background: var(--primary-subtle);
    border-radius: 50%;
}

.about-highlights li::after {
    content: "\2713";
    position: absolute;
    left: 4px;
    top: 14px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.75rem;
    line-height: 20px;
}

/* --- Gallery --- */
.gallery {
    padding: 80px 0;
    background: var(--bg-warm);
}

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

.gallery-grid img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center 30%;
    transition: all var(--transition);
}

.gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

/* --- FAQ --- */
.faq {
    padding: 80px 0;
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all var(--transition);
    background: var(--bg);
}

.faq-item[open] {
    border-color: var(--primary-light);
    box-shadow: var(--shadow);
    background: var(--bg);
}

.faq-item summary {
    padding: 20px 24px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text);
    font-size: 0.95rem;
    transition: all var(--transition);
    line-height: 1.5;
}

.faq-item summary:hover {
    color: var(--primary);
}

.faq-item summary::after {
    content: "+";
    font-size: 1.4rem;
    color: var(--accent);
    font-weight: 400;
    flex-shrink: 0;
    margin-left: 20px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-subtle);
    border-radius: 50%;
    transition: all var(--transition);
}

.faq-item[open] summary::after {
    content: "\2212";
    background: var(--primary);
    color: #fff;
}

.faq-item p {
    padding: 0 24px 20px;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.92rem;
}

/* --- Location --- */
.location {
    padding: 80px 0;
    background: var(--bg-light);
}

.location-grid {
    display: grid;
    gap: 40px;
}

.location-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--text);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.location-detail {
    margin-bottom: 24px;
    padding-left: 16px;
    border-left: 3px solid var(--accent);
}

.location-detail strong {
    display: block;
    color: var(--primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
    font-weight: 600;
}

.location-detail p {
    color: var(--text-light);
    line-height: 1.7;
}

.location-detail a {
    color: var(--primary);
    font-weight: 600;
}

.location-map iframe {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    min-height: 350px;
}

/* --- CTA Section --- */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

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

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 28px;
    font-size: 1.1rem;
}

.cta-section .btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #fff;
    border-color: var(--accent);
    box-shadow: var(--shadow-gold);
}

.cta-section .btn-primary:hover {
    box-shadow: 0 8px 30px rgba(212, 168, 67, 0.4);
    color: #fff;
}

/* --- Footer --- */
.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    gap: 36px;
}

.footer-brand img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin-bottom: 14px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 6px;
    font-weight: 600;
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer h4 {
    color: var(--accent-light);
    font-size: 0.82rem;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}

.footer-links a,
.footer-services a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    padding: 5px 0;
    font-size: 0.9rem;
    transition: all var(--transition);
}

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

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.7;
}

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

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

.footer-bottom {
    margin-top: 48px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

/* --- Page Header (inner pages) --- */
.page-header {
    padding: 50px 0;
    background: linear-gradient(160deg, #FEFEFE 0%, var(--bg-light) 40%, #EDE4F7 100%);
    text-align: center;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--text);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.page-header p {
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* Breadcrumb */
.breadcrumb {
    padding: 14px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--primary);
    font-weight: 500;
}

.breadcrumb span {
    color: var(--text-muted);
}

.breadcrumb span::before {
    content: "\203A";
    margin: 0 10px;
    opacity: 0.5;
}

/* --- About Page Specifics --- */
.about-hero {
    padding: 80px 0;
}

.about-hero-grid {
    display: grid;
    gap: 48px;
    align-items: center;
}

.timeline {
    margin: 28px 0;
}

.timeline-item {
    padding: 20px 0 20px 36px;
    border-left: 2px solid var(--border);
    position: relative;
    transition: border-color var(--transition);
}

.timeline-item:hover {
    border-color: var(--primary);
}

.timeline-item::before {
    content: "";
    width: 14px;
    height: 14px;
    background: var(--bg);
    border: 3px solid var(--primary);
    border-radius: 50%;
    position: absolute;
    left: -8px;
    top: 24px;
    transition: background var(--transition);
}

.timeline-item:hover::before {
    background: var(--primary);
}

.timeline-item h3 {
    font-size: 1rem;
    color: var(--text);
    font-weight: 600;
}

.timeline-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.memberships-list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.memberships-list li {
    padding: 14px 18px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text-light);
    border-left: 3px solid var(--accent);
    transition: all var(--transition);
}

.memberships-list li:hover {
    background: var(--primary-subtle);
    border-color: var(--primary);
}

/* --- Languages Grid --- */
.languages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 16px;
}

.language-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 20px 32px;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    min-width: 130px;
}

.language-tag:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--primary-subtle);
}

.language-label {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text);
}

.language-script {
    font-size: 0.85rem;
    color: var(--accent-dark);
    font-weight: 500;
}

/* --- Services Page --- */
.service-detail {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-light);
}

.service-detail:nth-child(even) {
    background: var(--bg-light);
}

.service-detail-grid {
    display: grid;
    gap: 40px;
    align-items: center;
}

.service-detail-grid.reverse img {
    order: -1;
}

.service-detail h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.service-detail p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 14px;
}

.service-detail img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-height: 420px;
    object-fit: contain;
}

/* --- Contact Page --- */
.contact-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    gap: 24px;
}

.contact-card {
    background: var(--bg);
    padding: 36px 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

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

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

.contact-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-subtle);
    border-radius: 16px;
    margin: 0 auto 20px;
    color: var(--primary);
    transition: all var(--transition);
}

.contact-card:hover .contact-card-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(91, 44, 135, 0.25);
}

.contact-card h3 {
    color: var(--text);
    margin-bottom: 14px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.contact-card-main {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 8px;
}

.contact-card-sub {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

.contact-card a {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.15rem;
}

.contact-card a:hover {
    color: var(--accent-dark);
}

/* Phone card special styling */
.contact-card--phone {
    border-color: var(--accent);
    background: linear-gradient(160deg, var(--bg) 0%, #FDF8ED 100%);
}

.contact-card--phone::before {
    transform: scaleX(1);
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
}

.contact-card--phone .contact-card-icon {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #fff;
    box-shadow: var(--shadow-gold);
}

.contact-card--phone:hover .contact-card-icon {
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
    box-shadow: 0 8px 25px rgba(212, 168, 67, 0.35);
}

.contact-card--phone a {
    color: var(--accent-dark);
    font-size: 1.25rem;
}

/* Clickable map card */
a.contact-card--map {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a.contact-card--map:hover {
    border-color: var(--primary);
}

a.contact-card--map:hover::before {
    transform: scaleX(1);
}

a.contact-card--map:hover .contact-card-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    box-shadow: 0 8px 25px rgba(91, 44, 135, 0.3);
}

.contact-card-action {
    margin-top: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

a.contact-card--map:hover .contact-card-action {
    color: var(--primary-dark);
    letter-spacing: 0.3px;
}

/* Map section */
.contact-map-section {
    padding: 80px 0;
    background: var(--bg);
}

/* --- Emergency Page --- */
.emergency-hero {
    padding: 80px 0;
    background: linear-gradient(160deg, #D32F2F 0%, #B71C1C 100%);
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.emergency-hero::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.emergency-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 16px;
    color: #fff;
    letter-spacing: -0.02em;
}

.emergency-hero p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 28px;
}

.emergency-hero .btn {
    background: #fff;
    color: #B71C1C;
    font-size: 1.3rem;
    padding: 20px 44px;
    border-color: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
    border-radius: 50px;
}

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

.emergency-list {
    padding: 80px 0;
}

.emergency-list h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.emergency-signs {
    list-style: none;
    margin: 24px 0;
}

.emergency-signs li {
    padding: 14px 0 14px 36px;
    position: relative;
    font-size: 1rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-light);
    transition: color var(--transition);
}

.emergency-signs li:hover {
    color: var(--text);
}

.emergency-signs li::before {
    content: "\26A0";
    position: absolute;
    left: 0;
    color: #D32F2F;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablet (600px+) */
@media (min-width: 600px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .gallery-grid img {
        height: 260px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-card {
        text-align: left;
    }

    .contact-card-icon {
        margin: 0 0 20px;
    }
}

/* Desktop (900px+) */
@media (min-width: 900px) {
    .container {
        padding: 0 48px;
    }

    .nav {
        display: flex;
    }

    .header-cta {
        display: inline-flex;
    }

    .menu-toggle {
        display: none;
    }

    .hero {
        padding: 80px 0 100px;
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .hero h1 {
        font-size: 3rem;
    }

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

    .about-grid,
    .about-hero-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }

    .service-detail-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-detail-grid.reverse {
        direction: rtl;
    }

    .service-detail-grid.reverse > * {
        direction: ltr;
    }

    .contact-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .section-title {
        font-size: 2.6rem;
    }
}

/* Large Desktop (1100px+) */
@media (min-width: 1100px) {
    .hero h1 {
        font-size: 3.4rem;
    }

    .hero-image img {
        max-height: 560px;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }
}
