:root {
    --bg-base: #111111;
    --bg-card: #1c1c1e;
    --accent-gold: #d4af37;
    --light-gold: #f3e5ab;
    --text-light: #ffffff;
    --text-muted: #aaaaaa;
    --container-width: 1100px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-base);
    color: var(--text-light);
    line-height: 1.6;
}

h1, h2, h3, .logo-title {
    font-family: "Times New Roman", Times, Georgia, serif;
    letter-spacing: 1px;
}

.top-bar {
    background-color: #000000;
    padding: 0.6rem 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    text-align: right;
}

.phone-link {
    color: var(--accent-gold);
    font-weight: bold;
    text-decoration: none;
}

header {
    background-color: #000000;
    border-bottom: 2px solid var(--accent-gold);
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-top: 4px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

.page-section {
    padding: 6rem 2rem;
}

.bg-lighter {
    background-color: #161618;
}

.section-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.content-block {
    flex: 1.3;
}

.content-block h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.content-block h2 span {
    color: var(--accent-gold);
    display: block;
}

.content-block p {
    font-size: 1.15rem;
    color: #e5e5e5;
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.3rem !important;
    color: var(--light-gold) !important;
    font-weight: 500;
}

.form-sidebar {
    flex: 0.8;
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--accent-gold);
    height: fit-content;
}

.form-sidebar h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--light-gold);
    text-align: center;
}

.form-sidebar p {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 1.8rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group input, .form-sidebar textarea {
    width: 100%;
    padding: 0.9rem;
    background-color: #000000;
    border: 1px solid #444444;
    border-radius: 4px;
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
}

.form-sidebar textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    background-color: var(--accent-gold);
    color: #000000;
    border: none;
    padding: 1.1rem;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s;
}

.submit-btn:hover {
    background-color: var(--light-gold);
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-card {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: 6px;
    border-left: 4px solid var(--accent-gold);
}

.info-card h3 {
    color: var(--light-gold);
    margin-bottom: 0.5rem;
}

.pub-item {
    background-color: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 2rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.pub-tag {
    font-size: 0.85rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.pub-title {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.cta-banner {
    background-color: var(--accent-gold);
    color: #000000;
    text-align: center;
    padding: 4rem 2rem;
}

.cta-banner h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.cta-phone {
    color: #000000;
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    margin-top: 0.5rem;
    border-bottom: 2px solid #000000;
}

footer {
    background-color: #000000;
    padding: 4rem 2rem;
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

@media (max-width: 990px) {
    .nav-container, .section-container {
        flex-direction: column;
    }
    .nav-menu {
        margin-top: 1rem;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .form-sidebar {
        width: 100%;
    }
    .content-block h2 {
        font-size: 2.2rem;
    }
}
.nav-link {
    position: relative;
    padding: 0.3rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-gold);
    transform-origin: bottom center;
    transition: transform 0.25s ease-out;
}

.nav-link:hover::after, 
.nav-link.active::after {
    transform: scaleX(1);
}

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

/* SUBMIT BUTTON SCALE ANIMATION */
.submit-btn {
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.submit-btn:active {
    transform: scale(0.98);
}

@media (max-width: 990px) {
    .nav-container, .section-container {
        flex-direction: column;
    }
    .nav-menu {
        margin-top: 1rem;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .form-sidebar {
        width: 100%;
    }
    .content-block h2 {
        font-size: 2.2rem;
    }
    /* ENSURES THE IMAGE SCALES NATURALLY ON SMARTPHONES */
    .image-block {
        width: 100%;
        margin-bottom: 2rem;
    }
}
    .page-section {
        background-image: none !important; /* Disables image scale stretching on vertical smartphone screens */
        background-color: var(--bg-base);   /* Preserves clean solid dark background on mobile devices */
    }
}
.faq-item summary {
    padding: 18px 25px;
    font-size: 1.1rem;
    font-weight: 700 !important; /* Forces the browser to display bold text */
    color: #ffffff;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.faq-item summary:hover {
    background-color: rgba(212, 175, 55, 0.08) !important;
    color: #d4af37 !important;
}