/* ── Reset & Base ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy-deep: #0A1628;
    --navy: #1A2744;
    --navy-light: #243352;
    --navy-lighter: #2E4060;
    --gold: #C9A84C;
    --gold-light: #D4B96A;
    --gold-pale: #E8D5A0;
    --gold-dim: rgba(201, 168, 76, 0.15);
    --cream: #F5F0E8;
    --cream-light: #FAF7F2;
    --text-primary: #F5F0E8;
    --text-secondary: #A8B4C8;
    --text-muted: #6B7B94;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--navy-deep);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(10, 22, 40, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.nav-logo-mark {
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.05em;
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

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

.nav-links a {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.04em;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

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

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

.nav-cta {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase;
    transition: var(--transition) !important;
}

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

.nav-cta:hover {
    background: var(--gold) !important;
    color: var(--navy-deep) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle-bar {
    width: 24px;
    height: 1.5px;
    background: var(--text-primary);
    transition: var(--transition);
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* ── Hero ── */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 22, 40, 0.95) 0%,
        rgba(26, 39, 68, 0.85) 40%,
        rgba(26, 39, 68, 0.6) 70%,
        rgba(10, 22, 40, 0.9) 100%
    );
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 22, 40, 0.3) 0%,
        transparent 30%,
        transparent 70%,
        rgba(10, 22, 40, 0.8) 100%
    );
    z-index: 1;
}

.hero-grid {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
}

.hero-eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 28px;
}

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

.hero-subhead {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.hero-trust-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-trust-num {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--gold);
}

.hero-trust-label {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

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

.hero-image-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-img-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    position: relative;
}

.hero-img-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius-lg);
    z-index: 1;
    pointer-events: none;
}

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

.hero-accent-block {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: var(--radius-md);
    font-size: 13px;
    color: var(--gold-light);
    letter-spacing: 0.04em;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.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: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.6); }
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    background: none;
}

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

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

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(245, 240, 232, 0.25);
}

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

.btn-outline-light {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(245, 240, 232, 0.3);
}

.btn-outline-light:hover {
    border-color: var(--text-primary);
    background: rgba(245, 240, 232, 0.05);
}

.btn-lg {
    padding: 20px 40px;
    font-size: 15px;
}

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

/* ── Section Shared ── */
.section-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.gold {
    color: var(--gold);
    font-style: italic;
}

.section-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 560px;
}

/* ── Intro / About ── */
.intro {
    padding: 120px 0;
    position: relative;
}

.intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--gold));
    opacity: 0.3;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.intro-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.intro-values {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.intro-value {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    color: var(--text-primary);
}

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

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

.intro-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    position: relative;
}

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

.intro-img-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 3px solid var(--navy-deep);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

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

/* ── Services ── */
.services {
    padding: 120px 0;
    background: var(--navy);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.2), transparent);
}

.section-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 72px;
}

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

.service-card {
    background: var(--navy-deep);
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.service-card:hover {
    border-color: rgba(201, 168, 76, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

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

.service-card-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 400;
    color: var(--gold);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 24px;
}

.service-card-icon {
    width: 56px;
    height: 56px;
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 24px;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.service-card p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-secondary);
}

/* ── Approach ── */
.approach {
    padding: 120px 0;
    position: relative;
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.approach-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.approach-step {
    display: flex;
    gap: 24px;
}

.approach-step-num {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    color: var(--gold);
    opacity: 0.5;
    line-height: 1.2;
    flex-shrink: 0;
    width: 48px;
}

.approach-step-body h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.approach-step-body p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-secondary);
}

.approach-image-col {
    position: relative;
    padding-top: 40px;
}

.approach-img-stack {
    position: relative;
    min-height: 600px;
}

.approach-img-1 {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
}

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

.approach-img-2 {
    position: absolute;
    bottom: 0;
    right: -30px;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 3px solid var(--navy-deep);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

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

.approach-accent {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--gold);
    opacity: 0.4;
}

/* ── CTA Banner ── */
.cta-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
}

.cta-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    position: relative;
    z-index: 1;
}

.cta-banner-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 16px;
}

.cta-banner-sub {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.cta-banner-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* ── Contact ── */
.contact {
    padding: 120px 0;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.2), transparent);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 8px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-detail-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-detail-value {
    display: block;
    font-size: 15px;
    color: var(--text-primary);
    line-height: 1.6;
}

.contact-detail-value a {
    transition: var(--transition);
}

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

/* ── Contact Form ── */
.contact-form-col {
    background: var(--navy);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: var(--radius-lg);
    padding: 48px;
}

.contact-form-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 32px;
}

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

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: var(--navy-deep);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition);
    outline: none;
}

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

.form-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%23C9A84C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

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

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius-md);
    margin-top: 16px;
    font-size: 14px;
    color: var(--gold-light);
}

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

.form-success svg {
    color: var(--gold);
    flex-shrink: 0;
}

/* ── Footer ── */
.footer {
    padding: 64px 0 40px;
    background: var(--navy-deep);
    border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-brand .nav-logo-mark {
    width: 48px;
    height: 48px;
}

.footer-brand-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.5;
}

.footer-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-secondary);
    transition: var(--transition);
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-contact a {
    font-size: 14px;
    color: var(--text-secondary);
    transition: var(--transition);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ── Animations ── */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 320px;
        gap: 40px;
    }

    .intro-grid,
    .approach-grid,
    .contact-grid {
        gap: 48px;
    }

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 22, 40, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        font-size: 20px;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        padding: 100px 24px 60px;
        gap: 40px;
    }

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

    .hero-trust {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

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

    .intro-grid,
    .approach-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .intro-image-col {
        min-height: 400px;
    }

    .intro-img-accent {
        right: -20px;
        bottom: -20px;
    }

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

    .approach-img-stack {
        min-height: 400px;
    }

    .approach-img-2 {
        right: -15px;
    }

    .cta-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .cta-banner-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-banner-actions .btn {
        justify-content: center;
    }

    .contact-form-col {
        padding: 32px 24px;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 20px;
    }

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

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

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

    .hero-actions .btn {
        justify-content: center;
    }

    .section-title {
        font-size: 32px;
    }

    .service-card {
        padding: 28px 24px;
    }
}
