/*
Theme Name: PG Starter SEO
Theme URI: https://pglocksmith.co.uk
Author: PrimeGuard Locksmith
Author URI: https://pglocksmith.co.uk
Description: Professional 24/7 emergency locksmith landing page for Watford, Harrow and Northwest London. Mobile-first, SEO-optimised, with video hero background.
Version: 2.1.3
Requires at least: 5.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pg-starter-seo
Tags: one-page, custom-background, full-width-template, landing-page
*/

/* ============================================
   MOBILE-FIRST CSS
   Base styles = Mobile (< 768px)
   @media (min-width: 768px) = Tablet
   @media (min-width: 1024px) = Desktop
   ============================================ */

/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
    --primary: #0a1628;
    --primary-light: #132240;
    --accent: #f0a500;
    --accent-light: #ffc344;
    --accent-glow: rgba(240, 165, 0, 0.3);
    --white: #ffffff;
    --gray-100: #f7f8fa;
    --gray-200: #e8ebf0;
    --gray-300: #c4c9d4;
    --gray-600: #6b7280;
    --gray-800: #2d3748;
    --success: #22c55e;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.2;
}

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

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

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

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

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes rotateKey {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    75% { transform: rotate(15deg); }
    100% { transform: rotate(0deg); }
}

@keyframes ripple {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(2.5); opacity: 0; }
}

@keyframes slideInBadge {
    from { opacity: 0; transform: translateX(-20px) scale(0.8); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px var(--accent-glow); }
    50% { box-shadow: 0 0 40px var(--accent-glow), 0 0 60px rgba(240, 165, 0, 0.15); }
}

@keyframes borderGlow {
    0%, 100% { border-color: rgba(240, 165, 0, 0.3); }
    50% { border-color: rgba(240, 165, 0, 0.8); }
}

@keyframes videoZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

/* ============================================
   CONTAINER
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================================
   NAVBAR — MOBILE BASE
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    gap: 6px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeInLeft 0.8s ease;
    flex-shrink: 0;
}

.navbar-logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
    transition: var(--transition);
}

.navbar-logo img:hover {
    transform: scale(1.05);
}

/* Hide logo text on mobile */
.navbar-logo span {
    display: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
}

.navbar-logo span em {
    font-style: normal;
    color: var(--accent);
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
    animation: fadeInRight 0.8s ease;
}

/* Navbar badges — inline on ALL devices */
.navbar-badges {
    display: flex;
    align-items: center;
    gap: 5px;
    flex: 1 1 auto;
    justify-content: center;
    min-width: 0;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.nav-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 50px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    animation: slideInBadge 0.8s ease 0.6s both;
}

.badge-available {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: var(--success);
}

.badge-eta {
    background: rgba(240, 165, 0, 0.12);
    border: 1px solid rgba(240, 165, 0, 0.3);
    color: var(--accent-light);
    animation-delay: 0.8s;
}

.badge-eta svg {
    width: 10px;
    height: 10px;
    animation: pulse 2.5s ease infinite;
}

.nav-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: var(--primary);
    padding: 9px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    animation: glowPulse 3s infinite;
    flex-shrink: 0;
}

.nav-phone:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-glow);
}

.nav-phone svg {
    width: 18px;
    height: 18px;
    animation: rotateKey 3s infinite;
}

/* Hide nav-phone on mobile when floating buttons appear */
.nav-phone.scroll-hidden {
    opacity: 0;
    transform: scale(0.6);
    pointer-events: none;
}

/* Hide phone text on mobile */
.nav-phone .phone-text {
    display: none;
}

/* ============================================
   HERO SECTION — MOBILE BASE
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, #0d1f3c 50%, #132240 100%);
    overflow: hidden;
}

/* Video background — visible on all devices */
.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-video-wrap video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: videoZoom 25s ease-in-out infinite alternate;
}

/* Dark overlay over video */
.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 22, 40, 0.88) 0%,
        rgba(13, 31, 60, 0.82) 50%,
        rgba(19, 34, 64, 0.88) 100%
    );
    z-index: 1;
}

/* Decorative orbs */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(240, 165, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    z-index: 2;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(240, 165, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite reverse;
    z-index: 2;
}

/* Grid pattern overlay */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(240, 165, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(240, 165, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 90px 20px 80px;
}

.hero-logo {
    margin-bottom: 24px;
    animation: scaleIn 1s ease;
}

.hero-logo img {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 8px 30px rgba(240, 165, 0, 0.3));
    transition: var(--transition);
}

.hero-logo img:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 12px 40px rgba(240, 165, 0, 0.4));
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(240, 165, 0, 0.1);
    border: 1px solid rgba(240, 165, 0, 0.25);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    animation: slideInBadge 1s ease 0.3s both;
}

.hero-badge svg {
    width: 14px;
    height: 14px;
}

.hero h1 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
    animation: fadeInUp 1s ease 0.4s both;
    letter-spacing: -1px;
}

.hero h1 .highlight {
    color: var(--accent);
    position: relative;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    opacity: 0.4;
}

.hero-subtitle {
    font-size: 0.95rem;
    color: var(--gray-300);
    max-width: 650px;
    margin: 0 auto 28px;
    line-height: 1.7;
    animation: fadeInUp 1s ease 0.6s both;
}

/* Buttons stacked on mobile */
.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: fadeInUp 1s ease 0.8s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
    width: 100%;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 35px var(--accent-glow);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(240, 165, 0, 0.05);
    transform: translateY(-3px);
}

.btn svg {
    width: 20px;
    height: 20px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 36px;
    margin-bottom: 16px;
    animation: fadeInUp 1s ease 1s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
}

.hero-stat-label {
    font-size: 0.78rem;
    color: var(--gray-300);
    margin-top: 2px;
}

/* Scroll indicator — hidden on mobile */
.scroll-indicator {
    display: none;
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-300);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 1.2s both;
    z-index: 5;
}

.scroll-indicator .mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--gray-300);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator .mouse::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    animation: fadeInUp 1.5s ease infinite;
}

/* ============================================
   SECTIONS — MOBILE BASE
   ============================================ */
.section {
    padding: 56px 16px;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(240, 165, 0, 0.08);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   SERVICES — MOBILE BASE (1 column)
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px 22px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(240, 165, 0, 0.2);
}

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

.service-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(240, 165, 0, 0.1), rgba(240, 165, 0, 0.05));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--accent);
    transform: scale(1.1);
}

.service-icon svg {
    width: 26px;
    height: 26px;
    color: var(--accent);
    transition: var(--transition);
}

.service-card:hover .service-icon svg {
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ============================================
   WHY US — MOBILE BASE (1 column)
   ============================================ */
.why-us {
    background: var(--gray-100);
}

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

.feature-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius);
    background: var(--white);
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--gray-200);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: rotate(-5deg) scale(1.1);
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
    transition: var(--transition);
}

.feature-card:hover .feature-icon svg {
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* ============================================
   COVERAGE / MAP — MOBILE BASE (1 column)
   ============================================ */
.coverage {
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.coverage::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(240, 165, 0, 0.08), transparent 70%);
    border-radius: 50%;
}

.coverage .section-tag {
    background: rgba(240, 165, 0, 0.15);
}

.coverage .section-title {
    color: var(--white);
}

.coverage .section-desc {
    color: var(--gray-300);
}

.coverage-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.coverage-info {
    position: relative;
    z-index: 2;
}

.coverage-info h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.coverage-info p {
    color: var(--gray-300);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.area-tag {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--gray-300);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    transition: var(--transition);
}

.area-tag:hover {
    background: rgba(240, 165, 0, 0.15);
    border-color: rgba(240, 165, 0, 0.3);
    color: var(--accent);
}

.coverage-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
}

.coverage-cta:hover {
    gap: 14px;
}

.map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(240, 165, 0, 0.2);
    animation: borderGlow 3s infinite;
    position: relative;
    z-index: 2;
}

.map-wrapper iframe {
    width: 100%;
    height: 280px;
    display: block;
}

/* ============================================
   CTA SECTION — MOBILE BASE
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--accent) 0%, #d4900a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    border-radius: 50%;
}

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

.cta-section h2 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.cta-section p {
    font-size: 1rem;
    color: rgba(10, 22, 40, 0.7);
    margin-bottom: 28px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.cta-phone-big {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 60px;
    font-size: 1.1rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(10, 22, 40, 0.3);
}

.cta-phone-big:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 40px rgba(10, 22, 40, 0.4);
}

.cta-phone-big svg {
    width: 24px;
    height: 24px;
    animation: pulse 2s infinite;
}

/* ============================================
   FOOTER — MOBILE BASE
   ============================================ */
.footer {
    background: var(--primary);
    padding: 40px 16px 28px;
    text-align: center;
}

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

.footer-logo img {
    height: 44px;
    width: auto;
    opacity: 0.85;
}

.footer-info {
    color: var(--gray-300);
    font-size: 0.88rem;
    margin-bottom: 6px;
}

.footer-info a {
    color: var(--accent);
    font-weight: 600;
    transition: var(--transition);
}

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

.footer-location-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 14px;
    max-width: 820px;
    margin: 18px auto 0;
}

.footer-location-links a {
    color: var(--gray-300);
    font-size: 0.82rem;
    font-weight: 600;
    transition: var(--transition);
}

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

.footer-divider {
    width: 60px;
    height: 2px;
    background: rgba(240, 165, 0, 0.3);
    margin: 20px auto;
    border-radius: 1px;
}

.footer-copy {
    color: var(--gray-600);
    font-size: 0.78rem;
}

/* ============================================
   FLOATING PHONE — HIDDEN INITIALLY (scroll reveal)
   ============================================ */
.floating-phone {
    display: flex;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: var(--accent);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 25px var(--accent-glow);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(100px);
    opacity: 0;
}

.floating-phone.visible {
    transform: translateY(0);
    opacity: 1;
    animation: pulse 2s infinite;
}

.floating-phone:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 10px 35px var(--accent-glow);
}

.floating-phone svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.floating-phone .ripple-ring {
    position: absolute;
    inset: -4px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    animation: ripple 2s infinite;
}

/* ============================================
   FLOATING WHATSAPP — HIDDEN INITIALLY
   ============================================ */
.floating-whatsapp {
    display: flex;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(100px);
    opacity: 0;
}

.floating-whatsapp.visible {
    transform: translateY(0);
    opacity: 1;
}

.floating-whatsapp:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
}

.floating-whatsapp .ripple-ring {
    position: absolute;
    inset: -4px;
    border: 2px solid #25D366;
    border-radius: 50%;
    animation: ripple 2.5s infinite;
}

.floating-whatsapp .wa-tooltip {
    position: absolute;
    right: 70px;
    background: #ffffff;
    color: #2d3748;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 10px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.floating-whatsapp .wa-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #ffffff;
}

.floating-whatsapp:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   PAGE LOADER
   ============================================ */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    animation: scaleIn 0.6s ease;
}

.loader-content img {
    width: 70px;
    height: auto;
    margin-bottom: 16px;
    animation: float 2s ease-in-out infinite;
}

.loader-bar {
    width: 100px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
    background-size: 200% 100%;
    animation: shimmer 1.5s ease infinite;
    width: 60%;
    border-radius: 2px;
}

/* ============================================
   LOCATION SEO PAGES
   ============================================ */
.location-hero .hero-content {
    padding-bottom: 96px;
}

.location-intro {
    background: var(--white);
}

.location-split,
.location-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
}

.location-copy h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.location-copy p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

.location-panel,
.location-checklist,
.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.location-panel h3,
.location-checklist h3,
.faq-item h3 {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.location-panel p,
.faq-item p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.65;
}

.location-checklist ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.location-checklist li {
    color: var(--gray-800);
    padding-left: 26px;
    position: relative;
    font-size: 0.95rem;
}

.location-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(240, 165, 0, 0.12);
}

.location-seo {
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.coverage .faq-item {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: none;
}

.coverage .faq-item h3 {
    color: var(--white);
}

.coverage .faq-item p {
    color: var(--gray-300);
}

.location-page .service-icon::before {
    content: '';
    width: 22px;
    height: 22px;
    border: 3px solid currentColor;
    border-radius: 6px;
    box-shadow: inset 0 0 0 5px transparent;
}

.location-page .service-icon {
    color: var(--accent);
}

.location-page .service-card:hover .service-icon {
    color: var(--primary);
}

/* ============================================
   GLOBAL SERVICE AREAS
   ============================================ */
.service-areas-strip {
    background: var(--gray-100);
    border-top: 1px solid var(--gray-200);
    padding: 36px 16px;
}

.service-areas-copy {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 22px;
}

.service-areas-kicker {
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.service-areas-copy h2 {
    color: var(--primary);
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.25;
}

.service-areas-copy p {
    color: var(--gray-600);
    font-size: 0.92rem;
    line-height: 1.65;
}

.service-areas-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-areas-links a,
.service-areas-links span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 50px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    color: var(--gray-800);
    font-size: 0.84rem;
    font-weight: 650;
    transition: var(--transition);
}

.service-areas-links a:hover {
    color: var(--primary);
    border-color: rgba(240, 165, 0, 0.45);
    box-shadow: 0 8px 20px rgba(10, 22, 40, 0.08);
    transform: translateY(-2px);
}

/* ============================================
   TABLET — min-width: 768px
   ============================================ */
@media (min-width: 768px) {
    .navbar {
        padding: 16px 0;
    }

    .navbar.scrolled {
        padding: 10px 0;
    }

    .navbar .container {
        padding: 0 24px;
        gap: 12px;
    }

    .navbar-logo img {
        height: 52px;
    }

    .navbar-logo span {
        display: inline;
    }

    .navbar-badges {
        gap: 10px;
    }

    .navbar-right {
        gap: 20px;
    }

    .nav-badge {
        font-size: 0.8rem;
        padding: 7px 16px;
        gap: 8px;
    }

    .badge-eta svg {
        width: 14px;
        height: 14px;
    }

    .nav-badge .dot {
        width: 8px;
        height: 8px;
    }

    .nav-phone {
        padding: 10px 22px;
        border-radius: 50px;
        font-size: 0.95rem;
    }

    .nav-phone .phone-text {
        display: inline;
    }

    .hero-content {
        padding: 100px 24px 120px;
    }

    .hero-logo img {
        width: 160px;
    }

    .hero-badge {
        padding: 8px 20px;
        font-size: 0.85rem;
        margin-bottom: 24px;
    }

    .hero-badge svg {
        width: 16px;
        height: 16px;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 6vw, 4.2rem);
        margin-bottom: 20px;
        letter-spacing: -1.5px;
    }

    .hero-subtitle {
        font-size: clamp(1.05rem, 2.5vw, 1.25rem);
        margin: 0 auto 36px;
    }

    /* Buttons side by side on tablet+ */
    .hero-actions {
        flex-direction: row;
        justify-content: center;
        gap: 16px;
    }

    .btn {
        width: auto;
        padding: 16px 32px;
        font-size: 1.05rem;
    }

    .hero-stats {
        gap: 48px;
        flex-wrap: nowrap;
        margin-top: 48px;
        margin-bottom: 20px;
    }

    .hero-stat-number {
        font-size: 2.2rem;
    }

    .hero-stat-label {
        font-size: 0.85rem;
        margin-top: 4px;
    }

    /* Show scroll indicator on tablet+ */
    .scroll-indicator {
        display: flex;
    }

    /* Sections — tablet */
    .section {
        padding: 80px 24px;
    }

    .section-header {
        margin-bottom: 56px;
    }

    .section-tag {
        padding: 6px 18px;
        font-size: 0.82rem;
        margin-bottom: 16px;
    }

    .section-title {
        font-size: clamp(2rem, 4vw, 2.8rem);
        margin-bottom: 16px;
        letter-spacing: -1px;
    }

    .section-desc {
        font-size: 1.1rem;
    }

    /* Services — tablet (auto-fit) */
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }

    .service-card {
        padding: 36px 28px;
    }

    .service-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }

    .service-icon svg {
        width: 28px;
        height: 28px;
    }

    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .service-card p {
        font-size: 0.95rem;
    }

    /* Features — tablet (2 col) */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

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

    .feature-icon {
        width: 72px;
        height: 72px;
        margin-bottom: 20px;
        border-radius: 20px;
    }

    .feature-icon svg {
        width: 32px;
        height: 32px;
    }

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

    .feature-card p {
        font-size: 0.9rem;
    }

    /* Coverage — tablet */
    .coverage-info h3 {
        font-size: 1.6rem;
        margin-bottom: 16px;
    }

    .coverage-info p {
        font-size: 1.05rem;
        margin-bottom: 28px;
    }

    .area-tags {
        gap: 10px;
        margin-bottom: 32px;
    }

    .area-tag {
        padding: 8px 18px;
        font-size: 0.88rem;
    }

    .map-wrapper iframe {
        height: 350px;
    }

    /* CTA — tablet */
    .cta-section h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        letter-spacing: -1px;
    }

    .cta-section p {
        font-size: 1.15rem;
    }

    .cta-phone-big {
        font-size: 1.3rem;
        padding: 18px 36px;
        gap: 14px;
    }

    .cta-phone-big svg {
        width: 28px;
        height: 28px;
    }

    /* Footer — tablet */
    .footer {
        padding: 48px 24px 32px;
    }

    .footer-logo img {
        height: 50px;
    }

    .footer-info {
        font-size: 0.92rem;
        margin-bottom: 8px;
    }

    .footer-location-links a {
        font-size: 0.88rem;
    }

    .footer-copy {
        font-size: 0.82rem;
    }

    .footer-divider {
        margin: 24px auto;
    }

    /* Hide floating phone on tablet+ (nav-phone shows full number) */
    .floating-phone {
        display: none !important;
    }

    /* Nav-phone always visible on tablet+ regardless of scroll */
    .nav-phone.scroll-hidden {
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }

    /* WhatsApp slightly bigger on tablet+ */
    .floating-whatsapp {
        width: 64px;
        height: 64px;
        bottom: 28px;
        right: 28px;
    }

    .floating-whatsapp svg {
        width: 36px;
        height: 36px;
    }

    /* Loader — tablet */
    .loader-content img {
        width: 80px;
        margin-bottom: 20px;
    }

    .loader-bar {
        width: 120px;
    }

    .location-split {
        grid-template-columns: 1.35fr 0.65fr;
        gap: 40px;
    }

    .location-content-grid {
        grid-template-columns: 1.4fr 0.6fr;
        gap: 36px;
    }

    .location-copy h2 {
        font-size: 2.3rem;
    }

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

    .service-areas-strip {
        padding: 46px 24px;
    }

    .service-areas-copy {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 36px;
        align-items: end;
    }

    .service-areas-copy h2 {
        font-size: 1.7rem;
    }
}

/* ============================================
   DESKTOP — min-width: 1024px
   ============================================ */
@media (min-width: 1024px) {
    /* Bigger orbs on desktop */
    .hero::before {
        width: 800px;
        height: 800px;
    }

    .hero::after {
        width: 600px;
        height: 600px;
    }

    /* Sections — desktop */
    .section {
        padding: 100px 24px;
    }

    .section-header {
        margin-bottom: 64px;
    }

    /* Features — desktop (4 columns) */
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Coverage — desktop (2 col side by side) */
    .coverage-content {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }

    .coverage-info h3 {
        font-size: 1.8rem;
    }

    .coverage::before {
        width: 400px;
        height: 400px;
    }

    .map-wrapper iframe {
        height: 420px;
    }

    /* CTA — desktop */
    .cta-section::before {
        width: 600px;
        height: 600px;
    }

    .cta-phone-big {
        font-size: 1.4rem;
        padding: 18px 40px;
    }
}
