/* ============================================
   Reset and Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --gold:        #D4A017;
    --gold-dark:   #b8941f;
    --navy:        #1B3A6B;
    --bg-dark:     #1A1A1A;
    --bg-darker:   #111111;
    --bg-mid:      #1E1E1E;
    --accent-blue: #2563EB;
    --text-light:  #F5F5F5;
    --text-muted:  #B0B0B0;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

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

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 1rem auto 0;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gold);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 160, 23, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(245, 245, 245, 0.7);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--bg-dark);
    border-color: var(--text-light);
    transform: translateY(-2px);
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 160, 23, 0.12);
}

.navbar.scrolled {
    background: rgba(17, 17, 17, 0.98);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
    border-bottom-color: rgba(212, 160, 23, 0.2);
}

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

/* Text-only logo mark — no image at small size */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    cursor: default;
}

.logo-mark {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.75rem;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 1px;
}

/* "P" in a navy badge, "M" in gold — echoes the logo's two-tone identity */
.logo-p-box {
    background: var(--navy);
    color: var(--gold);
    padding: 2px 7px 2px 6px;
    border-radius: 4px;
    line-height: 1;
}

.logo-m {
    color: var(--gold);
}

.logo-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    line-height: 1.2;
    max-width: 120px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--gold);
}

/* "Get a Quote" nav item is a filled gold pill */
.nav-link-quote {
    background: var(--gold);
    color: var(--bg-dark) !important;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.82rem;
    transition: background 0.3s ease, transform 0.2s ease;
}

.nav-link-quote:hover {
    background: var(--gold-dark);
    color: var(--bg-dark) !important;
    transform: translateY(-1px);
}

.nav-link-quote::after {
    display: none;
}

.nav-phone {
    color: var(--gold);
    font-weight: 700;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    transition: transform 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.nav-phone:hover {
    transform: scale(1.04);
    color: var(--text-light);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    border-radius: 2px;
    transition: 0.3s ease;
}

/* ============================================
   Hero Section — CSS-only background, no image
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Multi-layer radial gradient creates depth without an image */
    background:
        radial-gradient(ellipse at 20% 55%, rgba(27, 58, 107, 0.55) 0%, transparent 52%),
        radial-gradient(ellipse at 78% 28%, rgba(212, 160, 23, 0.1) 0%, transparent 45%),
        radial-gradient(ellipse at 55% 95%, rgba(27, 58, 107, 0.28) 0%, transparent 55%),
        var(--bg-dark);
}

/* Subtle diagonal line texture at 5% opacity for depth */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 38px,
        rgba(255, 255, 255, 0.018) 38px,
        rgba(255, 255, 255, 0.018) 39px
    );
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 820px;
    padding: 0 20px;
    animation: fadeInUp 0.9s ease both;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.hero-description {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: rgba(245, 245, 245, 0.88);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Trust Badges Bar
   ============================================ */
.trust-bar {
    background: #222222;
    border-top: 1px solid rgba(212, 160, 23, 0.12);
    border-bottom: 1px solid rgba(212, 160, 23, 0.12);
    padding: 14px 0;
}

.trust-badges {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(212, 160, 23, 0.07);
    border: 1px solid rgba(212, 160, 23, 0.18);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--text-light);
    white-space: nowrap;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(212, 160, 23, 0.14);
    border-color: rgba(212, 160, 23, 0.4);
}

.trust-badge i {
    color: var(--gold);
    font-size: 0.95rem;
}

/* ============================================
   Services Section
   ============================================ */
.services {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #1C2233 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.service-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 160, 23, 0.18);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    background: rgba(212, 160, 23, 0.06);
    border-color: rgba(212, 160, 23, 0.5);
    box-shadow: 0 12px 35px rgba(212, 160, 23, 0.14);
}

.service-icon {
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.35rem;
    margin-bottom: 14px;
    color: var(--text-light);
}

.service-description {
    color: var(--text-muted);
    line-height: 1.65;
    font-size: 0.93rem;
}

/* ============================================
   Why Choose Us Section
   ============================================ */
.why-us {
    padding: 100px 0;
    background: linear-gradient(180deg, #1C2233 0%, var(--bg-dark) 100%);
    border-top: 1px solid rgba(27, 58, 107, 0.2);
}

.why-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

.mascot-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: sticky;
    top: 90px;
}

/* Navy-boxed frame makes the cartoon's white bg look intentional */
.mascot-wrapper {
    background: var(--navy);
    border-radius: 18px;
    overflow: hidden;
    border: 3px solid rgba(212, 160, 23, 0.4);
    box-shadow:
        0 20px 55px rgba(212, 160, 23, 0.14),
        0 0 0 1px rgba(212, 160, 23, 0.08);
    width: 100%;
    max-width: 290px;
}

.mascot-large {
    width: 100%;
    display: block;
    object-fit: contain;
}

.mascot-caption {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 14px;
    background: rgba(212, 160, 23, 0.09);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: 8px;
    width: 100%;
    max-width: 290px;
    justify-content: center;
}

.mascot-caption i {
    flex-shrink: 0;
    font-size: 0.85rem;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trust-point {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.trust-point:hover {
    background: rgba(212, 160, 23, 0.05);
    border-color: rgba(212, 160, 23, 0.22);
    transform: translateX(4px);
}

.trust-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    background: rgba(212, 160, 23, 0.13);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
}

.trust-text h3 {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 4px;
    font-weight: 700;
}

.trust-text p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.55;
}

/* ============================================
   Our Work / Carousel Section
   ============================================ */
.work {
    padding: 100px 0;
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.carousel {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(212, 160, 23, 0.15);
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.55s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.slide-placeholder {
    width: 100%;
    height: 430px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border-radius: 12px;
    margin-bottom: 18px;
}

.slide-icon {
    font-size: 3.5rem;
    opacity: 0.45;
}

.slide-coming-soon {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.4;
    color: var(--text-light);
}

/* Each slide has a distinct brand-color gradient */
.slide-1 { background: linear-gradient(135deg, #0C1B38 0%, #1B3A6B 65%, #1A1A1A 100%); }
.slide-1 .slide-icon { color: #7CC4FF; }

.slide-2 { background: linear-gradient(135deg, #1A1A1A 0%, #261F0D 50%, #3A2D10 100%); }
.slide-2 .slide-icon { color: var(--gold); }

.slide-3 { background: linear-gradient(135deg, #0D1B2A 0%, #132235 55%, #1A304A 100%); }
.slide-3 .slide-icon { color: #4FC3F7; }

.slide-4 { background: linear-gradient(135deg, #1A1A1A 0%, #1C2A18 55%, #22321A 100%); }
.slide-4 .slide-icon { color: #81C784; }

.slide-5 { background: linear-gradient(135deg, #1E0D1A 0%, #371528 55%, #1A1A1A 100%); }
.slide-5 .slide-icon { color: #F48FB1; }

.slide-6 { background: linear-gradient(135deg, #1A1205 0%, #352303 55%, #1A1A1A 100%); }
.slide-6 .slide-icon { color: #FFD54F; }

.slide-caption {
    text-align: center;
    font-size: 1.05rem;
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 0 20px;
}

.carousel-btn {
    position: absolute;
    top: calc(50% - 35px);
    transform: translateY(-50%);
    background: rgba(212, 160, 23, 0.85);
    color: var(--bg-dark);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--gold);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 16px rgba(212, 160, 23, 0.45);
}

.carousel-btn-prev { left: 20px; }
.carousel-btn-next { right: 20px; }

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.indicator.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* ============================================
   Reviews Section
   ============================================ */
.reviews {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #1A1F2E 50%, var(--bg-dark) 100%);
    border-top: 1px solid rgba(27, 58, 107, 0.25);
}

.reviews-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reviews-header .section-title {
    margin-bottom: 1.25rem;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 20px;
    background: rgba(24, 119, 242, 0.1);
    border: 1px solid rgba(24, 119, 242, 0.3);
    border-radius: 50px;
    margin-bottom: 2.5rem;
}

.rating-badge .fab.fa-facebook-square {
    color: #1877F2;
    font-size: 1.15rem;
}

.rating-stars {
    color: var(--gold);
    font-size: 0.95rem;
    letter-spacing: 2px;
}

.rating-text {
    color: var(--text-muted);
    font-size: 0.82rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.review-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 160, 23, 0.14);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(212, 160, 23, 0.4);
    box-shadow: 0 8px 28px rgba(212, 160, 23, 0.1);
}

.review-stars {
    color: var(--gold);
    font-size: 1.05rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.review-text {
    font-style: italic;
    margin-bottom: 18px;
    line-height: 1.7;
    color: var(--text-light);
    font-size: 0.93rem;
    flex: 1;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-author {
    font-weight: 600;
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
}

.review-platform {
    font-size: 1.15rem;
}

.fab.fa-facebook.review-platform { color: #1877F2; }
.fab.fa-google.review-platform   { color: #EA4335; }

/* ============================================
   Quote Section
   ============================================ */
.quote-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #111116 50%, var(--bg-dark) 100%);
    position: relative;
}

/* Gold accent lines top and bottom to set this section apart */
.quote-section::before,
.quote-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
}

.quote-section::before { top: 0; }
.quote-section::after  { bottom: 0; }

.quote-header {
    text-align: center;
    margin-bottom: 40px;
}

.quote-header .section-title {
    margin-bottom: 1rem;
}

.quote-subtext {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.65;
}

.quote-card {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: 16px;
    padding: 50px;
    /* Subtle gold glow */
    box-shadow:
        0 0 60px rgba(212, 160, 23, 0.06),
        0 24px 60px rgba(0, 0, 0, 0.35);
}

/* Shared form-group styles (used in both quote and contact forms) */
.form-group {
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label,
.radio-group-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.req { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 15px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 7px;
    color: var(--text-light);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(245, 245, 245, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.12);
}

/* Custom select arrow */
.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B0B0B0' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-group select option {
    background: #1A1A1A;
    color: var(--text-light);
}

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

.form-row .form-group {
    margin-bottom: 22px;
}

/* Radio buttons */
.radio-group-label {
    display: block;
    margin-bottom: 4px;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 11px;
    padding-top: 2px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
}

.radio-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.radio-custom {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
    position: relative;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.radio-label input[type="radio"]:checked ~ .radio-custom {
    border-color: var(--gold);
}

.radio-label input[type="radio"]:checked ~ .radio-custom::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--gold);
}

.urgency-emergency {
    color: #FF8A80;
}

.btn-quote-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.05rem;
    background: var(--gold);
    color: var(--bg-dark);
    border: none;
    border-radius: 7px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 6px;
    letter-spacing: 0.3px;
}

.btn-quote-submit:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(212, 160, 23, 0.38);
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    padding: 100px 0;
    background: var(--bg-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-item i {
    font-size: 1.35rem;
    color: var(--gold);
    width: 28px;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-item h3 {
    color: var(--text-light);
    margin-bottom: 4px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item a,
.contact-item p {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.93rem;
    line-height: 1.65;
}

.contact-item a:hover {
    color: var(--gold);
}

.service-cities {
    font-size: 0.8rem !important;
    color: rgba(176, 176, 176, 0.65) !important;
    margin-top: 5px;
    line-height: 1.8 !important;
}

.contact-form {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 160, 23, 0.15);
    border-radius: 12px;
    padding: 40px;
}

/* Contact form uses placeholders only — no visible labels */
.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form .btn {
    width: 100%;
    padding: 15px;
    font-size: 1.05rem;
    margin-top: 4px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--bg-darker);
    padding: 60px 0 20px;
    border-top: 2px solid rgba(212, 160, 23, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 44px;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* pm_cover.jpg displayed as proper logo lockup */
.footer-logo {
    max-width: 260px;
    width: 100%;
    border-radius: 8px;
    border: 1px solid rgba(212, 160, 23, 0.2);
}

.footer-phone {
    color: var(--text-light);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.footer-phone:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(212, 160, 23, 0.1);
    border-radius: 50%;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 160, 23, 0.18);
}

.social-link:hover {
    background: var(--gold);
    color: var(--bg-dark);
    transform: translateY(-3px);
    border-color: var(--gold);
}

.footer-nav h4,
.footer-area h4 {
    color: var(--gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
    color: var(--gold);
}

.footer-area p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 10px;
}

.footer-cities {
    font-size: 0.76rem !important;
    color: rgba(176, 176, 176, 0.55) !important;
    line-height: 1.9 !important;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom p {
    color: #555;
    font-size: 0.83rem;
    margin-bottom: 4px;
}

/* ============================================
   Floating Emergency CTA — mobile only
   ============================================ */
.emergency-cta {
    /* Hidden on desktop; shown via media query on mobile */
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gold);
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.45);
    /* Start off-screen, slide in when .visible is added by JS */
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: stretch;
}

.emergency-cta.visible {
    transform: translateY(0);
}

.emergency-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 12px 0;
    text-decoration: none;
    color: var(--bg-dark);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: background 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.emergency-btn i {
    font-size: 1.1rem;
}

.emergency-btn:hover,
.emergency-btn:active {
    background: rgba(0, 0, 0, 0.1);
}

.emergency-divider {
    width: 1px;
    background: rgba(0, 0, 0, 0.18);
    margin: 8px 0;
    flex-shrink: 0;
}

/* ============================================
   Scroll to Top Button
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--bg-dark);
    border: none;
    border-radius: 50%;
    font-size: 0.95rem;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 16px rgba(212, 160, 23, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.scroll-top:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(212, 160, 23, 0.5);
}

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

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============================================
   Responsive — 1024px (large tablets)
   ============================================ */
@media (max-width: 1100px) {
    .nav-menu {
        gap: 18px;
    }

    .why-content {
        grid-template-columns: 260px 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 18px;
    }
}

/* ============================================
   Responsive — 768px (tablets / mobile)
   ============================================ */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(17, 17, 17, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
        padding: 20px 0;
        gap: 22px;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

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

    .logo-name {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

    .hero-title       { font-size: 2.5rem; }
    .hero-subtitle    { font-size: 1.5rem; }
    .hero-description { font-size: 0.98rem; }
    .hero-buttons     { flex-direction: column; align-items: center; }

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

    /* Trust badges wrap to 2×2 grid on mobile */
    .trust-badges {
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-items: center;
        gap: 8px;
    }

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

    .why-content {
        grid-template-columns: 1fr;
    }

    .mascot-showcase {
        position: static;
        max-width: 260px;
        margin: 0 auto 10px;
    }

    .carousel        { height: 320px; }
    .slide-placeholder { height: 270px; }

    .carousel-btn { width: 40px; height: 40px; font-size: 1rem; }
    .carousel-btn-prev { left: 10px; }
    .carousel-btn-next { right: 10px; }

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

    .quote-card {
        padding: 28px 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-brand {
        grid-column: auto;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-logo { max-width: 200px; }

    /* Show the floating emergency CTA on mobile */
    .emergency-cta {
        display: flex;
    }

    /* Pad footer bottom so content isn't behind emergency CTA */
    .footer-bottom {
        padding-bottom: 72px;
    }

    /* Keep scroll-top above emergency CTA */
    .scroll-top {
        bottom: 74px;
        right: 16px;
        width: 40px;
        height: 40px;
    }
}

/* ============================================
   Responsive — 480px (small phones)
   ============================================ */
@media (max-width: 480px) {
    .container { padding: 0 15px; }

    .hero-title    { font-size: 2rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .section-title { font-size: 1.75rem; }

    .service-card,
    .review-card {
        padding: 24px 18px;
    }

    .contact-item {
        flex-direction: column;
        gap: 8px;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .navbar,
    .hero-buttons,
    .carousel-btn,
    .contact-form,
    .footer-social,
    .emergency-cta,
    .scroll-top,
    .trust-bar {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    .section-title,
    .hero-title,
    .hero-subtitle {
        color: #000;
    }
}
