/* =========================================================
   POWER WINDOW REPAIR SPECIALIST
   PREMIUM GOLD / BLACK THEME
   ========================================================= */

:root {
    --black: #050505;
    --black-2: #0a0a0a;
    --black-3: #111111;
    --dark: #171717;

    --gold: #d4af37;
    --gold-light: #f5d76e;
    --gold-dark: #9c7b18;
    --gold-soft: rgba(212, 175, 55, 0.15);

    --white: #ffffff;
    --text: #eeeeee;
    --muted: #a8a8a8;

    --border: rgba(212, 175, 55, 0.22);

    --container: 1200px;
    --radius: 14px;

    --shadow:
        0 15px 45px rgba(0, 0, 0, 0.45);

    --gold-shadow:
        0 0 30px rgba(212, 175, 55, 0.16);

    --transition: 0.3s ease;
}


/* =========================================================
   RESET
   ========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 20% 20%, rgba(212,175,55,.06), transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(212,175,55,.04), transparent 25%),
        #050505;
    color: var(--text);
    font-family: "Inter", Arial, sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;

    background:
        radial-gradient(circle at 15% 85%, rgba(212,175,55,.08), transparent 20%),
        radial-gradient(circle at 85% 15%, rgba(255,180,0,.05), transparent 20%);

    animation: ambientGlow 10s ease-in-out infinite alternate;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;

    background-image:
        radial-gradient(circle, rgba(245,215,110,.75) 1px, transparent 1.5px),
        radial-gradient(circle, rgba(212,175,55,.45) 1px, transparent 1.5px);

    background-size: 90px 90px, 140px 140px;
    background-position: 0 0, 40px 70px;
    opacity: .12;

    animation: particlesMove 18s linear infinite;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}


/* =========================================================
   SCROLLBAR
   ========================================================= */

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(
        180deg,
        var(--gold-light),
        var(--gold-dark)
    );
    border-radius: 20px;
}


/* =========================================================
   GLOBAL
   ========================================================= */

.container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto;
}

main {
    position: relative;
    min-height: 600px;
}

.page-section {
    display: none;
}

.page-section.active-page {
    display: block;
}

.dynamic-page {
    min-height: 600px;
}

.section-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--gold-light);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    color: var(--white);
    font-family: "Montserrat", sans-serif;
    line-height: 1.15;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
    font-size: 1.25rem;
}

p {
    color: var(--muted);
}

strong {
    color: var(--gold-light);
}


/* =========================================================
   TOP BAR
   ========================================================= */

.top-bar {
    position: relative;
    z-index: 1000;
    background: #000;
    border-bottom: 1px solid rgba(212,175,55,.2);
}

.top-bar-content {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-bar-message {
    color: #bdbdbd;
    font-size: .78rem;
}

.top-phone {
    color: var(--gold-light);
    font-weight: 800;
    font-size: .82rem;
    transition: var(--transition);
}

.top-phone:hover {
    color: white;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;

    background: rgba(5,5,5,.92);
    border-bottom: 1px solid rgba(212,175,55,.18);

    backdrop-filter: blur(15px);
}

.header-content {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
    flex-shrink: 0;
}

.brand-title {
    color: var(--white);
    font-family: "Montserrat", sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
}

.brand-subtitle {
    margin-top: 5px;
    color: var(--gold);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link,
.nav-dropdown-toggle {
    position: relative;
    display: flex;
    align-items: center;
    gap: 7px;

    padding: 12px 14px;

    color: #d0d0d0;
    background: transparent;
    border: 0;

    font-size: .9rem;
    font-weight: 600;

    transition: var(--transition);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 5px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active,
.nav-dropdown-toggle:hover {
    color: var(--gold-light);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-dropdown {
    position: relative;
}

.dropdown-arrow {
    color: var(--gold);
    transition: var(--transition);
}

.nav-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;

    width: 270px;
    padding: 10px;

    background: rgba(12,12,12,.98);
    border: 1px solid var(--border);
    border-radius: 12px;

    box-shadow: var(--shadow), var(--gold-shadow);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);

    transition: var(--transition);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 11px 13px;
    border-radius: 8px;

    color: #cfcfcf;
    font-size: .88rem;

    transition: var(--transition);
}

.dropdown-menu a:hover {
    color: #000;
    background: var(--gold);
}

.nav-contact-button {
    margin-left: 8px;
    padding: 11px 18px;

    color: #050505;
    background: linear-gradient(
        135deg,
        var(--gold-light),
        var(--gold)
    );

    border-radius: 8px;
    font-size: .85rem;
    font-weight: 900;

    box-shadow: 0 5px 20px rgba(212,175,55,.2);
    transition: var(--transition);
}

.nav-contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212,175,55,.35);
}


/* =========================================================
   MOBILE MENU
   ========================================================= */

.mobile-menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    border: 1px solid var(--border);
    border-radius: 8px;
    background: #0d0d0d;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px auto;

    background: var(--gold-light);

    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}


/* =========================================================
   HERO
   ========================================================= */

.hero-section {
    position: relative;
    min-height: 720px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.97) 0%,
            rgba(0,0,0,.82) 48%,
            rgba(0,0,0,.45) 100%
        ),
        radial-gradient(
            circle at 75% 50%,
            rgba(212,175,55,.16),
            transparent 35%
        );
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: -20%;

    background:
        radial-gradient(
            circle at 70% 50%,
            rgba(255,170,0,.12),
            transparent 18%
        ),
        radial-gradient(
            circle at 85% 30%,
            rgba(212,175,55,.08),
            transparent 15%
        );

    animation: heroFire 7s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.15),
            rgba(0,0,0,.65)
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    padding-block: 100px;
}

.hero-badge {
    display: inline-block;
    padding: 7px 14px;

    color: var(--gold-light);
    border: 1px solid var(--border);
    border-radius: 30px;

    background: rgba(212,175,55,.07);

    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.hero-content h1 {
    margin-top: 20px;
}

.hero-content h1 span {
    display: block;
    color: var(--gold);
}

.hero-tagline {
    margin-top: 25px;

    color: var(--white);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
}

.hero-mobile-service {
    margin-top: 5px;
    color: var(--gold-light);
    font-weight: 700;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.hero-features span {
    padding: 7px 12px;

    color: #ddd;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 6px;

    font-size: .8rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 35px;
}

.hero-phone {
    margin-top: 18px;
    color: var(--gold-light);
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: .04em;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 50px;
    padding: 12px 23px;

    border: 1px solid transparent;
    border-radius: 8px;

    font-weight: 800;
    font-size: .9rem;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease,
        color .25s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    color: #050505;
    background: linear-gradient(
        135deg,
        var(--gold-light),
        var(--gold)
    );

    box-shadow: 0 8px 25px rgba(212,175,55,.18);
}

.btn-primary:hover {
    box-shadow: 0 12px 35px rgba(212,175,55,.35);
}

.btn-secondary,
.btn-outline {
    color: var(--gold-light);
    background: transparent;
    border-color: var(--gold);
}

.btn-secondary:hover,
.btn-outline:hover {
    color: #050505;
    background: var(--gold);
}

.btn-light {
    color: #050505;
    background: white;
}

.btn-large {
    min-height: 58px;
    padding-inline: 30px;
}


/* =========================================================
   TRUST
   ========================================================= */

.trust-section {
    background: #080808;
    border-block: 1px solid rgba(212,175,55,.12);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    padding: 35px 25px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.06);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;
    margin-bottom: 15px;

    color: #050505;
    background: var(--gold);

    border-radius: 50%;

    font-weight: 900;
}

.trust-item h3 {
    margin-bottom: 7px;
    font-size: 1rem;
}

.trust-item p {
    font-size: .82rem;
}


/* =========================================================
   QUOTE HIGHLIGHT
   ========================================================= */

.quote-highlight {
    padding: 55px 0;

    background:
        linear-gradient(
            90deg,
            rgba(212,175,55,.13),
            rgba(212,175,55,.04)
        );

    border-bottom: 1px solid var(--border);
}

.quote-highlight-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.quote-highlight h2 {
    margin-bottom: 8px;
}

.quote-highlight h2 strong {
    color: var(--gold-light);
}


/* =========================================================
   SECTIONS
   ========================================================= */

.content-section {
    padding: 100px 0;
}

.light-section {
    background:
        linear-gradient(
            180deg,
            #0c0c0c,
            #090909
        );
}

.two-column {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: center;
}

.content-text h2 {
    margin-bottom: 22px;
}

.content-text p {
    margin-bottom: 17px;
}

.text-link {
    display: inline-block;
    margin-top: 10px;

    color: var(--gold-light);
    font-weight: 800;

    transition: var(--transition);
}

.text-link:hover {
    color: white;
    transform: translateX(4px);
}

.content-card {
    padding: 32px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.015)
        );

    border: 1px solid var(--border);
    border-radius: var(--radius);

    box-shadow: var(--shadow);

    transition: var(--transition);
}

.content-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212,175,55,.45);
    box-shadow: var(--shadow), var(--gold-shadow);
}

.content-card h3 {
    margin-bottom: 18px;
    color: var(--gold-light);
}


/* =========================================================
   SERVICE LIST
   ========================================================= */

.service-list {
    list-style: none;
    margin-bottom: 25px;
}

.service-list li {
    position: relative;
    padding: 9px 0 9px 23px;
    color: #cfcfcf;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 900;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.section-heading {
    margin-bottom: 45px;
}

.section-heading.centered {
    text-align: center;
    max-width: 760px;
    margin-inline: auto;
}

.section-heading h2 {
    margin-bottom: 14px;
}


/* =========================================================
   WHY US
   ========================================================= */

.why-us-section {
    background: #070707;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    position: relative;

    padding: 30px;

    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: var(--radius);

    overflow: hidden;

    transition: var(--transition);
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;

    background: linear-gradient(
        90deg,
        transparent,
        var(--gold),
        transparent
    );

    transform: scaleX(.3);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-7px);
    border-color: var(--border);
    box-shadow: var(--gold-shadow);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-number {
    margin-bottom: 18px;
    color: var(--gold);
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
}

.feature-card h3 {
    margin-bottom: 10px;
}


/* =========================================================
   SERVICE AREA BANNER
   ========================================================= */

.service-area-banner {
    padding: 80px 0;

    background:
        linear-gradient(
            135deg,
            rgba(212,175,55,.15),
            rgba(0,0,0,.95)
        );

    border-block: 1px solid var(--border);
}

.service-area-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.service-area-banner h2 {
    margin-bottom: 10px;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.final-cta {
    padding: 100px 20px;
    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(212,175,55,.13),
            transparent 45%
        ),
        #050505;

    border-top: 1px solid rgba(212,175,55,.15);
}

.final-cta h2 {
    margin-bottom: 15px;
}

.final-cta p {
    margin-bottom: 28px;
}

.final-cta .btn span {
    margin-left: 5px;
}


/* =========================================================
   PAGE HERO
   ========================================================= */

.page-hero {
    position: relative;
    padding: 110px 0 90px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 70% 40%,
            rgba(212,175,55,.13),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #050505,
            #111111
        );

    border-bottom: 1px solid var(--border);
}

.page-hero::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -100px;
    top: -100px;

    border-radius: 50%;
    border: 1px solid rgba(212,175,55,.12);

    box-shadow:
        0 0 80px rgba(212,175,55,.08);

    animation: slowSpin 15s linear infinite;
}

.page-hero h1 {
    margin-bottom: 18px;
}

.page-hero p {
    font-size: 1.1rem;
}


/* =========================================================
   ABOUT
   ========================================================= */

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.warranty-badge {
    display: inline-flex;
    flex-direction: column;

    margin-top: 20px;
    padding: 15px 20px;

    background: rgba(212,175,55,.08);
    border-left: 3px solid var(--gold);
}

.warranty-badge strong {
    font-size: 1.1rem;
}

.warranty-badge span {
    color: var(--muted);
    font-size: .8rem;
}

.trust-badge-section {
    padding: 70px 0;
    background: #090909;
    border-block: 1px solid rgba(255,255,255,.06);
}

.trust-badge-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.trust-badge-content img {
    width: 190px;
    max-height: 130px;
    object-fit: contain;
    background: white;
    border-radius: 8px;
    padding: 10px;
}

.narrow-content {
    max-width: 850px;
}


/* =========================================================
   SERVICES
   ========================================================= */

.service-buttons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.service-button {
    display: grid;
    grid-template-columns: 55px 1fr 30px;
    align-items: center;

    min-height: 100px;
    padding: 20px;

    background: #0c0c0c;
    border: 1px solid rgba(212,175,55,.16);
    border-radius: var(--radius);

    transition: var(--transition);
}

.service-button:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    background: #111;
    box-shadow: var(--gold-shadow);
}

.service-button-number {
    color: var(--gold);
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
}

.service-button-title {
    color: white;
    font-weight: 800;
}

.service-button-arrow {
    color: var(--gold-light);
    font-size: 1.4rem;
}

.specialized-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.specialized-card {
    padding: 25px;

    background: #0c0c0c;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: var(--radius);

    transition: var(--transition);
}

.specialized-card:hover {
    transform: translateY(-5px);
    border-color: var(--border);
}

.specialized-card h3 {
    margin-bottom: 10px;
    color: var(--gold-light);
}

.three-column {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


/* =========================================================
   DYNAMIC SERVICE PAGE
   ========================================================= */

.dynamic-page {
    background: #060606;
}

.dynamic-content {
    padding: 90px 0;
}

.dynamic-content .back-link {
    display: inline-block;
    margin-bottom: 30px;
    color: var(--gold-light);
    font-weight: 800;
}

.dynamic-content h1 {
    margin-bottom: 20px;
}

.dynamic-content .service-intro {
    max-width: 850px;
    margin-bottom: 45px;
}

.dynamic-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 35px;
}

.dynamic-detail-card {
    padding: 28px;
    background: #0d0d0d;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.dynamic-detail-card h3 {
    margin-bottom: 10px;
    color: var(--gold-light);
}


/* =========================================================
   FAQ
   ========================================================= */

.faq-container {
    max-width: 900px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    overflow: hidden;
    background: #0c0c0c;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 20px;

    color: white;
    background: transparent;
    border: 0;

    text-align: left;
    font-weight: 700;
}

.faq-icon {
    flex-shrink: 0;

    color: var(--gold);
    font-size: 1.5rem;

    transition: var(--transition);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-answer p {
    padding: 0 20px 20px;
}


/* =========================================================
   LOCATIONS
   ========================================================= */

.location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.location-card {
    position: relative;

    min-height: 220px;
    padding: 28px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background:
        linear-gradient(
            145deg,
            #111,
            #080808
        );

    border: 1px solid rgba(212,175,55,.16);
    border-radius: var(--radius);

    overflow: hidden;

    transition: var(--transition);
}

.location-card::after {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -50px;

    width: 130px;
    height: 130px;

    border-radius: 50%;
    border: 1px solid rgba(212,175,55,.12);
}

.location-card:hover {
    transform: translateY(-7px);
    border-color: var(--gold);
    box-shadow: var(--gold-shadow);
}

.location-card-number {
    color: var(--gold);
    font-weight: 800;
}

.location-card h3 {
    margin-top: 20px;
}

.location-card strong {
    font-size: 1.25rem;
}

.location-card-link {
    margin-top: 18px;
    color: var(--gold-light);
    font-weight: 700;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.service-tags span {
    padding: 9px 14px;

    color: #ddd;
    background: #0d0d0d;

    border: 1px solid rgba(212,175,55,.18);
    border-radius: 30px;

    font-size: .85rem;
}


/* =========================================================
   DYNAMIC LOCATION PAGE
   ========================================================= */

.location-detail {
    padding: 90px 0;
}

.location-detail h1 {
    margin-bottom: 15px;
}

.location-detail-intro {
    max-width: 850px;
    margin-bottom: 45px;
}

.location-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-image {
    position: relative;
    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: var(--radius);

    box-shadow: var(--shadow);
}

.contact-image img {
    width: 100%;
    min-height: 560px;
    object-fit: cover;
}

.contact-image-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    display: flex;
    flex-direction: column;

    padding: 30px;

    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,.95)
        );

    color: white;
}

.contact-image-overlay strong {
    margin: 6px 0;
    font-size: 1.4rem;
}

.contact-form-wrapper {
    padding: 35px;

    background: #0b0b0b;
    border: 1px solid var(--border);
    border-radius: var(--radius);

    box-shadow: var(--shadow);
}

.contact-form-wrapper h2 {
    margin-bottom: 12px;
}

.contact-form {
    margin-top: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;

    color: #ddd;
    font-size: .85rem;
    font-weight: 700;
}

.form-group label span {
    color: var(--gold);
}

.form-group input,
.form-group textarea {
    width: 100%;

    padding: 13px 14px;

    color: white;
    background: #050505;

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 7px;

    outline: none;

    transition: var(--transition);
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212,175,55,.08);
}

.btn-submit {
    width: 100%;
}

.form-message {
    min-height: 24px;
    margin-bottom: 10px;
    font-size: .85rem;
}

.form-message.success {
    color: #70e69a;
}

.form-message.error {
    color: #ff7777;
}

.free-advice {
    margin-top: 22px;
    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,.08);

    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.free-advice a {
    color: var(--gold-light);
    font-weight: 800;
}

.contact-info-section {
    padding: 50px 0;
    background: #090909;
    border-top: 1px solid var(--border);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.contact-info-item {
    padding: 25px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.07);
}

.contact-info-item:last-child {
    border-right: 0;
}

.contact-info-label {
    display: block;
    margin-bottom: 6px;

    color: var(--gold);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.contact-info-item a {
    color: white;
    font-size: 1.2rem;
    font-weight: 900;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    background: #020202;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 45px;

    padding: 70px 0;
}

.footer-brand p {
    max-width: 330px;
    margin: 20px 0;
}

.footer-phone {
    color: var(--gold-light);
    font-size: 1.15rem;
    font-weight: 900;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-column h3 {
    margin-bottom: 10px;
    color: white;
    font-size: 1rem;
}

.footer-column a {
    color: #909090;
    font-size: .88rem;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--gold-light);
    transform: translateX(3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.07);
}

.footer-bottom-content {
    min-height: 65px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    font-size: .75rem;
}


/* =========================================================
   BACK TO TOP
   ========================================================= */

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;

    width: 46px;
    height: 46px;

    color: #050505;
    background: var(--gold);

    border: 0;
    border-radius: 50%;

    font-size: 1.2rem;
    font-weight: 900;

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);

    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
}


/* =========================================================
   CURSOR GLOW
   ========================================================= */

.cursor-glow {
    position: fixed;
    width: 180px;
    height: 180px;

    pointer-events: none;
    z-index: 9999;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(212,175,55,.11),
            transparent 65%
        );

    transform: translate(-50%, -50%);

    mix-blend-mode: screen;

    transition:
        left .08s linear,
        top .08s linear;
}


/* =========================================================
   RIPPLE
   ========================================================= */

.ripple {
    position: absolute;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: rgba(255,255,255,.45);

    transform: translate(-50%, -50%) scale(0);
    animation: ripple .65s ease-out forwards;

    pointer-events: none;
}


/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes ambientGlow {
    from {
        opacity: .65;
    }

    to {
        opacity: 1;
    }
}

@keyframes particlesMove {
    from {
        background-position: 0 0, 40px 70px;
    }

    to {
        background-position: 0 -180px, 40px -300px;
    }
}

@keyframes heroFire {
    from {
        transform: scale(1);
        opacity: .6;
    }

    to {
        transform: scale(1.15);
        opacity: 1;
    }
}

@keyframes slowSpin {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes ripple {
    to {
        transform: translate(-50%, -50%) scale(35);
        opacity: 0;
    }
}


/* =========================================================
   RESPONSIVE TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .main-navigation {
        gap: 0;
    }

    .nav-link,
    .nav-dropdown-toggle {
        padding-inline: 9px;
        font-size: .82rem;
    }

    .nav-contact-button {
        padding-inline: 13px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .specialized-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .location-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 800px) {

    .container {
        width: min(100% - 28px, var(--container));
    }

    .top-bar-content {
        justify-content: center;
        min-height: 48px;
    }

    .top-bar-message {
        display: none;
    }

    .top-phone {
        font-size: .85rem;
    }

    .header-content {
        min-height: 70px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .main-navigation {
        position: absolute;
        left: 14px;
        right: 14px;
        top: calc(100% + 8px);

        display: flex;
        flex-direction: column;
        align-items: stretch;

        padding: 12px;

        background: rgba(7,7,7,.98);
        border: 1px solid var(--border);
        border-radius: 12px;

        box-shadow: var(--shadow);

        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);

        transition: var(--transition);
    }

    .main-navigation.mobile-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-link,
    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;

        padding: 14px;
    }

    .nav-link::after {
        display: none;
    }

    .nav-dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;

        width: 100%;
        margin-top: 5px;

        display: none;

        opacity: 1;
        visibility: visible;
        transform: none;

        box-shadow: none;
        border-color: rgba(212,175,55,.12);
    }

    .nav-dropdown.open .dropdown-menu {
        display: block;
    }

    .nav-contact-button {
        margin: 7px 0 0;
        text-align: center;
    }

    .hero-section {
        min-height: 650px;
    }

    .hero-content {
        padding-block: 80px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-item:nth-child(2) {
        border-right: 0;
    }

    .trust-item:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,.06);
    }

    .quote-highlight-content,
    .service-area-content,
    .trust-badge-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .two-column,
    .about-intro,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid,
    .specialized-services-grid,
    .location-grid,
    .three-column {
        grid-template-columns: 1fr;
    }

    .service-buttons-grid {
        grid-template-columns: 1fr;
    }

    .dynamic-detail-grid,
    .location-detail-grid {
        grid-template-columns: 1fr;
    }

    .contact-image img {
        min-height: 350px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.07);
    }

    .contact-info-item:last-child {
        border-bottom: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 18px 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .free-advice {
        flex-direction: column;
    }

    .page-hero {
        padding: 80px 0 65px;
    }

    .content-section {
        padding: 70px 0;
    }

    .final-cta {
        padding: 75px 15px;
    }

    .cursor-glow {
        display: none;
    }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {

    .brand-title {
        font-size: 1.08rem;
    }

    .brand-subtitle {
        font-size: .62rem;
    }

    .hero-section {
        min-height: 610px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.25rem;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-item,
    .trust-item:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.06);
    }

    .trust-item:last-child {
        border-bottom: 0;
    }

    .service-button {
        grid-template-columns: 42px 1fr 25px;
        padding: 17px;
    }

    .service-button-title {
        font-size: .9rem;
    }

    .content-card,
    .contact-form-wrapper {
        padding: 23px;
    }

    .location-card {
        min-height: 195px;
    }

    .back-to-top {
        right: 15px;
        bottom: 15px;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

}