/* ============================================
   ANGEL VASQUEZ — AZ LOAN OFFICER
   Bold Editorial Style | Deep Navy + Warm Gold
   ============================================ */

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

:root {
    --navy: #0A1628;
    --navy-light: #132240;
    --navy-mid: #1A2F52;
    --gold: #C9A84C;
    --gold-light: #D4B96A;
    --gold-dark: #A8893D;
    --cream: #F7F4EE;
    --cream-dark: #EDE8DD;
    --white: #FFFFFF;
    --text-dark: #0A1628;
    --text-mid: #3A4F6F;
    --text-light: #6B7F9E;
    --text-on-dark: #C8D0DC;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    transition: background 0.4s var(--ease-out);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.nav-brand-mark {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.02em;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.nav-brand-text {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.01em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-on-dark);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: color 0.3s, background 0.3s;
    letter-spacing: 0.01em;
}

.nav-link:hover {
    color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
}

.nav-link--cta {
    background: var(--gold);
    color: var(--navy) !important;
    font-weight: 600;
    margin-left: 0.5rem;
    transition: background 0.3s, transform 0.2s;
}

.nav-link--cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.3s;
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.06);
}

.hamburger {
    position: relative;
    width: 18px;
    height: 14px;
    display: block;
}

.hamburger::before,
.hamburger::after,
.hamburger span {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--gold);
    border-radius: 1px;
    transition: all 0.35s var(--ease-out);
}

.hamburger::before { top: 0; }
.hamburger span { top: 50%; transform: translateY(-50%); }
.hamburger::after { bottom: 0; }

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger span {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* ---------- HERO ---------- */
.hero {
    min-height: 100vh;
    background: var(--navy);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 72px;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 10% 90%, rgba(201, 168, 76, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero-bg-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M0 60L60 0' stroke='rgba(201,168,76,0.03)' stroke-width='0.5'/%3E%3C/svg%3E");
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 2rem;
    position: relative;
    z-index: 1;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 1.75rem;
    letter-spacing: -0.015em;
}

.hero-accent {
    color: var(--gold);
    font-style: italic;
    font-weight: 500;
}

.hero-sub {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-on-dark);
    max-width: 480px;
    margin-bottom: 2.5rem;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: all 0.3s var(--ease-out);
}

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

.btn--primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

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

.btn--full {
    width: 100%;
    justify-content: center;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-trust-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hero-trust-num {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.hero-trust-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
}

.hero-trust-divider {
    width: 1px;
    height: 48px;
    background: rgba(201, 168, 76, 0.25);
}

.hero-image-col {
    position: relative;
    min-height: 600px;
}

.hero-img-hero {
    width: 100%;
    aspect-ratio: 600/780;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.hero-img-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-float {
    position: absolute;
    bottom: -2rem;
    left: -3rem;
    width: 60%;
    aspect-ratio: 400/280;
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid var(--navy);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.hero-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ---------- SECTION COMMON ---------- */
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 1rem;
}

.section-eyebrow--dark {
    color: var(--gold-dark);
}

.section-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--text-dark);
    letter-spacing: -0.015em;
    margin-bottom: 1.5rem;
}

.section-heading--light {
    color: var(--white);
}

.section-heading--dark {
    color: var(--text-dark);
}

.text-gold {
    color: var(--gold-dark);
    font-style: italic;
    font-weight: 500;
}

.text-gold-dark {
    color: var(--gold-dark);
    font-style: italic;
    font-weight: 500;
}

/* ---------- ABOUT ---------- */
.about {
    padding: 8rem 0;
    background: var(--cream);
}

.about-layout {
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: 5rem;
    align-items: center;
}

.about-image-side {
    position: relative;
}

.about-img-main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(10, 22, 40, 0.15);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 560/700;
}

.about-accent-bar {
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    width: 60%;
    height: 60%;
    border: 2px solid var(--gold);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.4;
}

.about-content-side {
    padding-top: 1rem;
}

.about-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 1.25rem;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.value-item svg {
    color: var(--gold-dark);
    flex-shrink: 0;
}

/* ---------- SERVICES ---------- */
.services {
    padding: 8rem 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h40v40H0z' fill='none'/%3E%3Cpath d='M0 40L40 0' stroke='rgba(201,168,76,0.025)' stroke-width='0.5'/%3E%3C/svg%3E");
    background-size: 40px 40px;
    pointer-events: none;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 16px;
    padding: 2.25rem;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-4px);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 1.5rem;
    transition: background 0.3s;
}

.service-card:hover .service-icon {
    background: rgba(201, 168, 76, 0.18);
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.service-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-on-dark);
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 0.7rem;
}

/* ---------- PROCESS ---------- */
.process {
    padding: 8rem 0;
    background: var(--cream);
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.process-step {
    padding: 2rem 1.5rem;
    position: relative;
    text-align: center;
}

.process-step-num {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gold);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
    transition: opacity 0.3s;
}

.process-step:hover .process-step-num {
    opacity: 0.5;
}

.process-step-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.process-step-desc {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--text-mid);
}

.process-connector {
    position: absolute;
    bottom: -1.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 2rem;
    background: linear-gradient(to bottom, var(--gold), rgba(201, 168, 76, 0.2));
}

.process-step:last-child .process-connector {
    display: none;
}

/* ---------- AREA ---------- */
.area {
    padding: 8rem 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.area::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h80v80H0z' fill='none'/%3E%3Cpath d='M0 80L80 0' stroke='rgba(201,168,76,0.02)' stroke-width='0.5'/%3E%3C/svg%3E");
    background-size: 80px 80px;
    pointer-events: none;
}

.area-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.area-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-on-dark);
    margin-bottom: 2rem;
}

.area-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.area-feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-on-dark);
}

.area-feature svg {
    color: var(--gold);
    flex-shrink: 0;
}

.area-image-col {
    position: relative;
    min-height: 500px;
}

.area-img-main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.area-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 520/640;
}

.area-img-accent {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 60%;
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid var(--navy);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.area-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 340/240;
}

/* ---------- TESTIMONIAL ---------- */
.testimonial-section {
    padding: 6rem 0;
    background: var(--cream-dark);
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 2rem;
}

.testimonial-quote-mark {
    font-family: var(--font-serif);
    font-size: 8rem;
    line-height: 0.8;
    color: var(--gold);
    opacity: 0.25;
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    user-select: none;
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.65;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.testimonial-meta {
    margin-top: 2rem;
}

.testimonial-author {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
}

/* ---------- CTA / CONTACT ---------- */
.cta-section {
    padding: 8rem 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 60% 50% at 80% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M0 60L60 0' stroke='rgba(201,168,76,0.025)' stroke-width='0.5'/%3E%3C/svg%3E");
    background-size: 100% 100%, 60px 60px;
    pointer-events: none;
}

.cta-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.cta-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-on-dark);
    margin-bottom: 2.5rem;
}

.cta-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-on-dark);
    font-size: 0.95rem;
}

.cta-contact-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

.cta-contact-item a {
    color: var(--text-on-dark);
    transition: color 0.3s;
}

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

/* ---------- FORM ---------- */
.contact-form {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
}

.form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
}

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

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: border-color 0.3s, background 0.3s;
    outline: none;
}

.form-input::placeholder {
    color: var(--text-light);
}

.form-input:focus {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-select option {
    background: var(--navy);
    color: var(--white);
}

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

.form-success {
    display: none;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 10px;
    margin-top: 1rem;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-success.show {
    display: flex;
}

/* ---------- FOOTER ---------- */
.footer {
    background: #060E1A;
    padding: 4rem 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: start;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-brand-mark {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    width: 44px;
    height: 44px;
    border: 1.5px solid var(--gold);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-brand-name {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-light);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--text-on-dark);
    transition: color 0.3s;
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: right;
}

.footer-contact a {
    font-size: 0.9rem;
    color: var(--text-on-dark);
    transition: color 0.3s;
}

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

.footer-bottom {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-light);
}

.footer-legal {
    font-size: 0.75rem;
    color: var(--text-light);
    opacity: 0.6;
    max-width: 600px;
    text-align: right;
    line-height: 1.5;
}

/* ---------- ANIMATIONS ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---------- MOBILE NAV OVERLAY ---------- */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    top: 72px;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.mobile-nav-overlay.open {
    display: flex;
}

.mobile-nav-overlay .nav-link {
    font-size: 1.25rem;
    padding: 1rem 2rem;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-image-col {
        display: none;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-side {
        max-width: 480px;
    }

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

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .process-connector {
        display: none;
    }

    .area-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .area-image-col {
        max-width: 480px;
    }

    .cta-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-contact {
        text-align: center;
    }

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

    .footer-legal {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 8rem 0 5rem;
    }

    .hero-inner {
        padding: 2rem 1.5rem;
    }

    .hero-headline {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }

    .hero-trust {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .hero-trust-divider {
        display: none;
    }

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

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .area-features {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 1.5rem;
    }

    .about, .services, .process, .area, .cta-section {
        padding: 5rem 0;
    }

    .contact-form {
        padding: 1.75rem;
    }

    .testimonial-quote-mark {
        font-size: 5rem;
    }
}

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
    }

    .btn {
        justify-content: center;
    }

    .hero-scroll-indicator {
        display: none;
    }
}
