/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Skip Navigation - Accessibility */
.skip-nav {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 0 0 6px 6px;
    font-weight: 600;
    z-index: 9999;
    transition: top 0.3s ease;
}

.skip-nav:focus {
    top: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #f5f0e8;
    color: #2d2d2d;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

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

/* ===== COLORS (Nova ID Visual - Light/Cream Theme) ===== */
:root {
    --gold: #c8a84b;
    --gold-light: #e0c76a;
    --gold-dark: #a08030;
    --cream-bg: #f5f0e8;
    --cream-light: #faf7f2;
    --gray-card: #6b6b6b;
    --gray-card-bg: rgba(107, 107, 107, 0.85);
    --dark-text: #2d2d2d;
    --dark-section: #1a1a1a;
    --medium-gray: #555555;
    --light-gray: #888888;
    --border-gold: rgba(200, 168, 75, 0.4);
}

/* ===== HEADER / NAVBAR ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 52px;
    width: auto;
}

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

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

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

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
    background: #1a1a1a;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/vertex-general-contractor-hero-bg.webp') center/cover no-repeat;
    z-index: 0;
    opacity: 0.5;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 15, 15, 0.75) 0%, rgba(20, 20, 20, 0.55) 50%, rgba(26, 26, 26, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 40px 20px;
}

/* Hero 3-column layout */
.hero-3col {
    display: grid;
    grid-template-columns: 1fr auto 400px;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
    text-align: left;
    align-items: center;
    padding: 30px 20px 60px;
}

.hero-left {
    max-width: 550px;
}

.hero-center-spacer {
    width: 40px;
}

.hero-right {
    width: 100%;
    scroll-margin-top: 80px;
}

.hero-form {
    background: linear-gradient(145deg, #1c1c1c 0%, #111111 100%);
    border-radius: 14px;
    padding: 36px 32px;
    border: 1px solid rgba(200, 168, 75, 0.4);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 30px rgba(200, 168, 75, 0.08);
}

.hero-form h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 6px;
    text-align: center;
    letter-spacing: 0.3px;
}

.hero-form-subtitle {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.5;
}

.hero-form .form-group {
    margin-bottom: 14px;
}

.hero-form input,
.hero-form select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.hero-form input:hover,
.hero-form select:hover {
    border-color: rgba(200, 168, 75, 0.5);
    background: rgba(255, 255, 255, 0.09);
}

.hero-form input::placeholder {
    color: rgba(255, 255, 255, 0.45);
    font-style: italic;
}

.hero-form input:focus,
.hero-form select:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(200, 168, 75, 0.15);
}

.hero-form select {
    appearance: none;
    -webkit-appearance: none;
    color: rgba(255, 255, 255, 0.6);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23c8a84b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.select-wrapper {
    position: relative;
}

.hero-form select option {
    background: #1c1c1c;
    color: #ffffff;
}

.hero-form .btn-submit {
    width: 100%;
    margin-top: 10px;
    padding: 15px;
    font-size: 1.05rem;
    background: var(--gold);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 1.5s infinite;
}

/* SMS Disclosure */
.sms-disclosure {
    margin-bottom: 8px !important;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    position: relative;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    accent-color: var(--gold);
    cursor: pointer;
}

.disclosure-text {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
}

.disclosure-text a {
    color: var(--gold);
    text-decoration: underline;
}

.disclosure-text a:hover {
    color: var(--gold-light);
}

.hero-form .btn-submit:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(200, 168, 75, 0.4);
    animation: none;
}

.hero-badge {
    display: inline-block;
    background: rgba(200, 168, 75, 0.15);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero-location {
    display: block;
    color: var(--gold-light);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero h1 span {
    color: var(--gold);
}

.hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 30px;
}

.hero-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 168, 75, 0.1);
    border: 1px solid rgba(200, 168, 75, 0.4);
    padding: 10px 16px;
    border-radius: 6px;
}

.hero-badge-item i {
    color: var(--gold);
    font-size: 1rem;
}

.hero-badge-item span {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(200, 168, 75, 0.6);
    }
    50% {
        box-shadow: 0 0 0 18px rgba(200, 168, 75, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(200, 168, 75, 0);
    }
}

.btn-primary {
    background: var(--gold);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid var(--gold);
    animation: pulse 1.8s infinite;
}

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 168, 75, 0.3);
    animation: none;
}

.btn-secondary {
    background: transparent;
    color: var(--dark-text);
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid var(--medium-gray);
    animation: pulse 1.5s infinite;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
    animation: none;
}

.nav-cta {
    background: var(--gold);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    animation: none;
}

.nav-cta::after {
    display: none !important;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--gold);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    animation: none;
}

.btn-submit:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 168, 75, 0.3);
    animation: none;
}

.hero-form .btn-submit {
    width: 100%;
    margin-top: 8px;
    padding: 14px;
    font-size: 1rem;
    background: var(--gold);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 1.5s infinite;
}

.hero-form .btn-submit:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 168, 75, 0.4);
    animation: none;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 100px 0;
    background: var(--cream-light);
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border: 2px solid var(--border-gold);
}

.about-img-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    border-radius: 8px;
    overflow: hidden;
    border: 3px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-img-secondary img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-text);
    line-height: 1.15;
}

.about-content h2 span {
    color: var(--gold);
}

.about-content p {
    color: var(--medium-gray);
    margin-bottom: 15px;
    font-size: 1rem;
}

.about-license {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(200, 168, 75, 0.1);
    border: 1px solid var(--border-gold);
    padding: 12px 20px;
    border-radius: 6px;
    margin-top: 20px;
}

.about-license .icon {
    color: var(--gold);
    font-size: 1.2rem;
}

.about-license span {
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-about {
    margin-top: 25px;
}

/* Team Gallery */
.team-gallery {
    margin-top: 90px;
}

.team-gallery .container {
    display: flex;
    justify-content: center;
}

.team-gallery-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.team-photo {
    border-radius: 14px;
    overflow: hidden;
    width: 230px;
    height: 270px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    position: relative;
}

.team-photo::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: #ffffff;
    font-size: 1.5rem;
    background: rgba(200, 168, 75, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
}

.team-photo:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.team-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(200, 168, 75, 0.2);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.team-photo:hover img {
    filter: brightness(0.7);
}

/* Hide extra mobile photo on desktop */
.mobile-extra-photo {
    display: none;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: lightboxIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 30px;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    color: var(--gold);
}

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

.about-caption {
    padding: 10px 0 5px;
    text-align: center;
}

.about-caption p {
    font-size: 0.82rem;
    font-style: italic;
    color: #444444;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 100px 0;
    background: var(--cream-bg);
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.section-header h2 span {
    color: var(--gold);
}

.section-header p {
    color: var(--medium-gray);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(200, 168, 75, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    display: block;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(200, 168, 75, 0.2);
}

.service-card:hover .service-card-content h3 {
    color: var(--gold);
}

.service-card-img {
    height: 180px;
    overflow: hidden;
    background-color: #e8e3db;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    aspect-ratio: 16/9;
}

.service-card:hover .service-card-img img {
    transform: scale(1.05);
}

.service-card-content {
    padding: 20px;
}

.service-card-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-text);
    transition: color 0.3s ease;
}

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

.services-cta {
    text-align: center;
    margin-top: 50px;
}

.services-cta p {
    color: var(--medium-gray);
    margin-bottom: 20px;
    font-size: 1rem;
}

/* ===== STATS SECTION ===== */
.stats {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 100px 0;
    background: var(--cream-light);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 15px;
}

.testimonials-header .stars {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(200, 168, 75, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.testimonial-card:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(200, 168, 75, 0.12);
}

.testimonial-photo {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.testimonial-card:hover .testimonial-photo img {
    transform: scale(1.05);
}

.testimonial-body {
    padding: 24px;
    text-align: center;
}

.testimonial-body h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 2px;
}

.testimonial-body .testimonial-location {
    font-size: 0.8rem;
    color: var(--light-gray);
    display: block;
    margin-bottom: 10px;
}

.testimonial-card .stars {
    color: var(--gold);
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.testimonial-body p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
}

/* David's photo positioning */
.testimonial-card:nth-child(3) .testimonial-photo img {
    object-position: center 30%;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #ffffff;
    font-size: 0.9rem;
}

.testimonial-author .author-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-gold);
}

.google-reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--medium-gray);
    margin-top: 10px;
}

.google-reviews-badge svg {
    flex-shrink: 0;
}

.testimonial-author .info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-text);
}

.testimonial-author .info span {
    font-size: 0.8rem;
    color: var(--light-gray);
}

/* ===== VISIT US SECTION ===== */
.visit-section {
    padding: 100px 0;
    background: var(--dark-section);
}

.visit-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.visit-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.visit-content h2 span {
    color: var(--gold);
}

.visit-content p {
    color: #b0b0b0;
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.6;
}

.visit-info-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
}

.visit-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.visit-info-item .icon {
    width: 42px;
    height: 42px;
    background: rgba(200, 168, 75, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.visit-info-item div strong {
    display: block;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.visit-info-item div span {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.visit-info-item a {
    color: #b0b0b0;
    transition: color 0.3s ease;
}

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

.visit-cta {
    margin-top: 10px;
}

.visit-map {
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
    border: 2px solid rgba(200, 168, 75, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.visit-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: #b0b0b0;
    margin-bottom: 6px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    color: #ffffff;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23c8a84b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

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

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

/* ===== FOOTER ===== */
.footer {
    padding: 60px 0 30px;
    background: #1a1a1a;
    border-top: 2px solid var(--gold);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 15px;
}

.footer-brand p {
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(200, 168, 75, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-social a:hover {
    background: var(--gold);
    color: #ffffff;
}

.footer-links h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #b0b0b0;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-links ul li span {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Footer Areas */
.footer-areas {
    padding-top: 25px;
    margin-bottom: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-areas h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-areas-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-areas-list span {
    font-size: 0.8rem;
    color: #888888;
    padding: 5px 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.footer-areas-list span:hover {
    border-color: rgba(200, 168, 75, 0.4);
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #888888;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--gold);
}

.footer-bottom .privacy-link {
    color: #888888;
}

.footer-bottom .privacy-link:hover {
    color: var(--gold);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .team-gallery-grid {
        flex-wrap: wrap;
    }

    .team-photo {
        width: 160px;
        height: 200px;
    }
}

@media (max-width: 992px) {
    .hero-3col {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-center-spacer {
        display: none;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-form {
        max-width: 440px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #1a1a1a;
        flex-direction: column;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.4);
    }

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

    .hamburger {
        display: flex;
    }

    /* 1. Hide hero description on mobile (keep location) */
    .hero-left > p {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    /* Hero bg better on mobile */
    .hero {
        background-position: center top;
    }

    .hero-bg {
        opacity: 0.5;
        background-position: 70% center;
        background-size: cover;
    }

    .hero-bg::after {
        background: linear-gradient(to bottom, rgba(15, 15, 15, 0.65) 0%, rgba(20, 20, 20, 0.45) 50%, rgba(26, 26, 26, 0.35) 100%);
    }

    /* 2. Reduce section spacing */
    .about,
    .services,
    .testimonials,
    .visit-section {
        padding: 60px 0;
    }

    .stats {
        padding: 40px 0;
    }

    .team-gallery {
        margin-top: 50px;
    }

    .about .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-img-secondary {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: 15px;
    }

    /* 3. Show 6th photo on mobile */
    .mobile-extra-photo {
        display: block;
    }

    .team-gallery-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .team-photo {
        width: 100%;
        height: 200px;
    }

    .team-gallery .container {
        padding: 0 12px;
    }

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

    /* 4. Reduce section-header spacing */
    .section-header {
        margin-bottom: 35px;
    }

    .section-header h2 {
        line-height: 1.2;
    }

    .stats .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .testimonial-photo {
        height: 220px;
    }

    .testimonial-body {
        padding: 20px;
        padding-top: 24px;
    }

    .cta-section .container,
    .visit-section .container {
        grid-template-columns: 1fr;
    }

    .visit-map {
        height: 300px;
    }

    /* 5. Narrower CTA buttons */
    .btn-primary {
        padding: 12px 18px;
        font-size: 0.9rem;
    }

    /* Center CTA buttons and license badge */
    .about-content,
    .services-cta {
        text-align: center;
    }

    .about-license {
        justify-content: center;
    }

    .visit-cta {
        display: block;
        text-align: center;
    }

    .visit-cta.btn-primary {
        padding: 12px 20px;
        font-size: 0.88rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

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

    .section-header h2,
    .about-content h2,
    .cta-content h2 {
        font-size: 2rem;
    }

    /* 6. Footer logo bigger and centered */
    .footer-brand {
        text-align: center;
    }

    .footer-brand .logo {
        justify-content: center;
    }

    .footer-brand .logo img {
        height: 69px;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* ===== ANIMATIONS ===== */
.header.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(200, 168, 75, 0.2);
}

/* Hamburger animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== DECORATIVE ELEMENTS ===== */
.about-img-main img,
.about-img-secondary img {
    background-color: #e8e3db;
}

/* ===== FLOATING CTA BUTTON ===== */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

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

.floating-cta a {
    display: inline-block;
    background: var(--gold);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(200, 168, 75, 0.4);
    animation: pulse 1.8s infinite;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.floating-cta a:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(200, 168, 75, 0.5);
    animation: none;
}

@media (max-width: 768px) {
    .floating-cta {
        bottom: 20px;
        right: 0;
        left: 0;
        display: flex;
        justify-content: center;
        transform: translateY(20px);
    }

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

    .floating-cta a {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
}
