@font-face {
    font-family: "Auren";
    src: url("../fonts/Auren-Regular-Exfont9ee4.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-yellow: #fec810;
    --dark-bg: #111111;
    --card-bg: #1f1f1f;
}

body {
    font-family: "Auren", sans-serif;
    background-color: #0c0c0c !important;
    overflow-x: hidden;
}

/* Typography Utilities */
.fw-black {
    font-weight: 900 !important;
}

.fs-7 {
    font-size: 0.85rem !important;
}

.tracking-wide {
    letter-spacing: 2px !important;
}

/* Custom Colors */
.text-warning {
    color: var(--primary-yellow) !important;
}

.bg-black {
    background-color: #0c0c0c !important;
}

.text-primary {
    color: #004c8f !important;
}
.text-secondary {
    color: #8a8a8a !important;
}

/* Buttons */
.btn-warning {
    background-color: var(--primary-yellow) !important;
    border-color: var(--primary-yellow) !important;
    color: #000 !important;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background-color: #e5b40e !important;
    border-color: #e5b40e !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(254, 200, 16, 0.3) !important;
}

/* Glow Effects */
.glow-left {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(
        circle,
        rgba(254, 200, 16, 0.12) 0%,
        rgba(12, 12, 12, 0) 65%
    );
    top: 50%;
    left: -400px;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero h1.display-3 {
    font-size: 4rem;
}
@media (min-width: 992px) {
    .hero h1.display-3 {
        font-size: 5rem;
    }
}

.hero-img-container img {
    max-height: 85vh;
    object-position: top center;
}

/* Testimonial Cards */
.testimonial-card {
    background-color: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

/* Utilities */
.transition-all {
    transition: all 0.3s ease;
}

.hover-yellow:hover {
    color: var(--primary-yellow) !important;
}

/* Navbar */
.navbar-nav .nav-link {
    position: relative;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-yellow);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* Quote Page */
.quote-page {
    min-height: calc(100vh - 100px);
    background: #050505;
}

.quote-card {
    background: rgba(14, 14, 14, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.75rem;
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
}

.quote-left {
    min-height: 760px;
    background: linear-gradient(180deg, #0a0a0a 0%, #131313 50%, #0c0c0c 100%);
    position: relative;
    overflow: hidden;
}

.quote-left::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(254, 200, 16, 0.14),
            transparent 15%
        ),
        radial-gradient(
            circle at 80% 30%,
            rgba(255, 255, 255, 0.08),
            transparent 14%
        );
    pointer-events: none;
}

.quote-left::after {
    content: "";
    position: absolute;
    right: -140px;
    bottom: -120px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(254, 200, 16, 0.08);
    filter: blur(18px);
    pointer-events: none;
}

.quote-left-inner {
    position: relative;
    z-index: 2;
    min-height: 100%;
}

.quote-back {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffffff;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.03);
}

.quote-back:hover {
    color: var(--primary-yellow);
    border-color: var(--primary-yellow);
    background-color: rgba(254, 200, 16, 0.1);
}

.quote-left-content .text-warning {
    letter-spacing: 2px;
    font-size: 0.82rem;
    font-weight: 700;
}

.quote-left-copy {
    color: rgba(255, 255, 255, 0.72);
    max-width: 420px;
    line-height: 1.9;
    font-size: 0.98rem;
}

.quote-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    color: #ffffff;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
}

.quote-logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--primary-yellow);
    color: var(--primary-yellow);
    font-size: 0.9rem;
}

.quote-logo-text {
    letter-spacing: 0.45em;
}

.quote-right {
    background: #0b0b0b;
}

.quote-heading h2 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.quote-heading p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
    max-width: 540px;
}

.quote-form-control {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-radius: 0.95rem;
    min-height: 56px;
    box-shadow: none;
}

.quote-form-control::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.quote-form-control:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 0.15rem rgba(254, 200, 16, 0.18);
    color: #ffffff;
}

.quote-form label {
    color: #ffffff;
}

.quote-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.quote-service-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 68px;
}

.quote-service-item input {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-yellow);
}

.quote-service-item span {
    color: #ffffff;
    font-size: 0.92rem;
    line-height: 1.45;
}

.quote-service-item:hover {
    border-color: rgba(254, 200, 16, 0.5);
    background: rgba(254, 200, 16, 0.06);
}

.quote-service-full {
    grid-column: span 2;
}

.quote-textarea {
    min-height: 180px;
    padding-top: 1rem;
}

.quote-submit-btn {
    border-radius: 0.95rem;
    padding: 1rem 1.25rem;
    letter-spacing: 0.14em;
}

@media (max-width: 1199px) {
    .quote-left {
        min-height: 620px;
    }
}

@media (max-width: 991px) {
    .quote-card {
        flex-direction: column;
    }

    .quote-left,
    .quote-right {
        min-height: auto;
    }

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

    .quote-service-full {
        grid-column: auto;
    }
}

@media (max-width: 767px) {
    .quote-page {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .quote-left-inner,
    .quote-right {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .quote-heading h2 {
        font-size: 1.8rem;
    }

    .quote-left-copy {
        max-width: 100%;
    }
}
