@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@600;700;800&display=swap');

:root {
    /* Color Palette */
    --primary: #0F172A;
    /* Sophisticated Deep Navy */
    --secondary: #1E293B;
    --accent: #F97316;
    /* Action Orange */
    --accent-hover: #EA580C;
    --text-light: #F8FAFC;
    --text-muted: #94A3B8;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Borders */
    --radius: 12px;
    --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--primary);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* Glassmorphism Utility */
.glass {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
}

/* 3D Hover States & Modern Cards */
.card-3d {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    perspective: 1000px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-3d:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px -15px rgba(249, 115, 22, 0.4), 0 0 20px rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.4);
}

/* Gradient Text Functionality */
.text-gradient {
    background: linear-gradient(135deg, #F97316, #FCD34D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hover Image Zoom */
.img-zoom-container {
    overflow: hidden;
    position: relative;
}
.img-zoom-container img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.img-zoom-container:hover img {
    transform: scale(1.1);
}

/* Glow Effects */
.glow-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.1);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.2);
    transition: var(--transition);
}
.card-3d:hover .glow-icon {
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.6);
    background: rgba(249, 115, 22, 0.2);
}

/* Clean UI Badges */
.badge {
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.badge:hover {
    background: rgba(249, 115, 22, 0.2);
    border-color: var(--accent);
    color: var(--accent);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    font-family: var(--font-heading);
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: scale(1.05);
}

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

.btn-outline:hover {
    background-color: var(--accent);
    color: #fff;
}

/* Local SEO FAQ Accordion */
details {
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--secondary);
    border-radius: var(--radius);
    transition: var(--transition);
}

details[open] {
    background: var(--glass);
}

summary {
    list-style: none;
    cursor: pointer;
    font-weight: 600;
    font-family: var(--font-heading);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent);
    transition: var(--transition);
}

details[open] summary::after {
    content: '-';
    transform: rotate(90deg);
}

/* Mobile Menu */
.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
}

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

@media (max-width: 900px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--primary);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
        z-index: 99;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
    }
    
    .header-phone {
        display: none !important;
    }
}

/* Sticky Tap-to-Call Mobile */
.mobile-sticky-call {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--accent);
    color: white;
    text-align: center;
    padding: 15px;
    display: none;
    z-index: 1000;
    font-weight: 800;
    font-family: var(--font-heading);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .mobile-sticky-call {
        display: block;
    }

    body {
        padding-bottom: 60px;
    }
}

/* Grid System */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

@media (max-width: 1200px) {
    .grid-cols-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {

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

@media (max-width: 600px) {

    .grid-cols-2,
    .grid-cols-3,
    .grid-cols-4 {
        grid-template-columns: 1fr;
    }
}

/* Location Specific Cards */
.location-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    text-decoration: none;
    color: white;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    z-index: 1;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), transparent);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.location-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 15px 30px -10px rgba(249, 115, 22, 0.2);
}

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

.location-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 15px;
    transition: var(--transition);
}

.location-card:hover i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px var(--accent));
}

.location-card h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.location-card span {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.location-card .cta-mini {
    margin-top: 15px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.location-card:hover .cta-mini {
    opacity: 1;
    transform: translateX(0);
}