/* ============================================
   ONALASKA TIRE — Classic & Elegant
   Color Palette: Deep Navy + Warm Gold
   ============================================ */

:root {
    --color-navy:        #1a2d50;
    --color-navy-dark:   #111e36;
    --color-navy-light:  #2c4470;
    --color-navy-muted:  #3d5a88;
    --color-gold:        #c8a45a;
    --color-gold-light:  #d4b76e;
    --color-gold-dark:   #b08d3f;
    --color-cream:       #f8f6f1;
    --color-warm-white:  #faf9f6;
    --color-off-white:   #f0ede6;
    --color-text:        #1a1a1a;
    --color-text-light:  #5a5a5a;
    --color-text-muted:  #8a8a8a;
    --color-border:      #e0dbd0;
    --color-white:       #ffffff;

    --font-serif:        'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body:         'Lora', 'Palatino Linotype', Palatino, serif;
    --font-sans:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --shadow-sm: 0 1px 3px rgba(26, 45, 80, 0.06), 0 1px 2px rgba(26, 45, 80, 0.04);
    --shadow-md: 0 4px 16px rgba(26, 45, 80, 0.08), 0 2px 6px rgba(26, 45, 80, 0.04);
    --shadow-lg: 0 12px 40px rgba(26, 45, 80, 0.12), 0 4px 12px rgba(26, 45, 80, 0.06);
    --shadow-xl: 0 24px 60px rgba(26, 45, 80, 0.16);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-warm-white);
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

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

ul {
    list-style: none;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--color-navy);
    color: var(--color-gold);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-family: var(--font-sans);
    font-size: 0.875rem;
}

.skip-link:focus {
    top: 1rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-navy);
}

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

/* Section Labels */
.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold-dark);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.5px;
    background: var(--color-gold);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.25rem;
    color: var(--color-navy);
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 560px;
    line-height: 1.8;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
    border: 2px solid transparent;
}

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

.btn--primary:hover {
    background: var(--color-gold-light);
    border-color: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--outline {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.5);
}

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

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

.btn--dark:hover {
    background: var(--color-navy-dark);
    border-color: var(--color-navy-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn--gold:hover {
    background: var(--color-gold-light);
    border-color: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--white {
    background: var(--color-white);
    color: var(--color-navy);
    border-color: var(--color-white);
}

.btn--white:hover {
    background: var(--color-cream);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.0);
    backdrop-filter: blur(0px);
    transition: all var(--transition);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-bottom-color: var(--color-border);
    box-shadow: var(--shadow-sm);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-white);
    transition: color var(--transition);
}

.header.scrolled .logo {
    color: var(--color-navy);
}

.logo__icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.logo__text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo__name {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.logo__tagline {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.7;
}

.logo--light .logo__name {
    color: var(--color-white);
}

.header.scrolled .logo--light .logo__name {
    color: var(--color-navy);
}

/* Navigation */
.nav__menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav__link {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav__link:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
}

.header.scrolled .nav__link {
    color: var(--color-text-light);
}

.header.scrolled .nav__link:hover {
    color: var(--color-navy);
    background: var(--color-cream);
}

.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-gold);
    padding: 0.6rem 1.25rem;
    border: 1.5px solid var(--color-gold);
    border-radius: var(--radius-sm);
    margin-left: 0.75rem;
    transition: all var(--transition);
}

.nav__cta:hover {
    background: var(--color-gold);
    color: var(--color-navy-dark);
}

.header.scrolled .nav__cta {
    color: var(--color-gold-dark);
    border-color: var(--color-gold-dark);
}

.header.scrolled .nav__cta:hover {
    background: var(--color-gold-dark);
    color: var(--color-white);
}

.nav__cta svg {
    width: 14px;
    height: 14px;
}

/* Mobile Nav Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    z-index: 110;
}

.nav__hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all var(--transition);
}

.header.scrolled .nav__hamburger {
    background: var(--color-navy);
}

.nav__toggle[aria-expanded="true"] .nav__hamburger {
    background: var(--color-white) !important;
}

.nav__toggle[aria-expanded="true"] .nav__hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle[aria-expanded="true"] .nav__hamburger:nth-child(2) {
    opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(17, 30, 54, 0.92) 0%,
        rgba(26, 45, 80, 0.85) 40%,
        rgba(44, 68, 112, 0.75) 100%
    );
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem 1.5rem;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    background: rgba(200, 164, 90, 0.12);
    border: 1px solid rgba(200, 164, 90, 0.3);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.hero__badge svg {
    width: 14px;
    height: 14px;
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

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

.hero__subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.75);
    max-width: 580px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.hero__actions .btn svg {
    width: 16px;
    height: 16px;
}

.hero__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
}

.hero__trust-item svg {
    width: 16px;
    height: 16px;
    color: var(--color-gold);
}

.hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: 7rem 0;
    background: var(--color-warm-white);
}

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

.section-header .section-subtitle {
    margin: 0 auto;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--color-border);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card__img {
    overflow: hidden;
    height: 200px;
}

.service-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.service-card__body {
    padding: 2rem;
}

.service-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
}

.service-card__icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
}

.service-card__title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--color-navy);
}

.service-card__desc {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

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

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

.about__image-wrapper {
    position: relative;
}

.about__image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about__image-accent {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--color-white);
}

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

.about__experience-badge {
    position: absolute;
    top: -1.5rem;
    right: 2rem;
    background: var(--color-navy);
    color: var(--color-gold);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.about__experience-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
}

.about__experience-word {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    font-style: italic;
    line-height: 1.2;
}

.about__experience-sub {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-top: 0.25rem;
}

.about__content .section-title {
    margin-top: 0.5rem;
}

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

.about__highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin: 2rem 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-navy);
}

.highlight-item svg {
    width: 18px;
    height: 18px;
    color: var(--color-gold-dark);
    flex-shrink: 0;
}

.about__content .btn {
    margin-top: 0.5rem;
}

/* ============================================
   WHY US
   ============================================ */
.why-us {
    padding: 7rem 0;
    background: var(--color-navy);
    overflow: hidden;
}

.why-us__inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.why-us__content .section-label {
    color: var(--color-gold);
}

.why-us__content .section-title {
    color: var(--color-white);
}

.why-us__content .section-title em {
    color: var(--color-gold);
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1rem;
}

.why-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.why-item__number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-gold);
    opacity: 0.4;
    line-height: 1;
    flex-shrink: 0;
    width: 3rem;
}

.why-item__title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 0.4rem;
}

.why-item__desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.why-us__image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 550px;
}

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

.why-us__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 30, 54, 0.5), transparent 50%);
    border-radius: var(--radius-lg);
}

/* ============================================
   CTA
   ============================================ */
.cta {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.cta__bg {
    position: absolute;
    inset: 0;
}

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

.cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(17, 30, 54, 0.93) 0%,
        rgba(26, 45, 80, 0.88) 100%
    );
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta__content {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.cta__label {
    color: var(--color-gold);
}

.cta__title {
    color: var(--color-white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.25rem;
}

.cta__title em {
    color: var(--color-gold);
}

.cta__text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta__actions .btn svg {
    width: 16px;
    height: 16px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: 7rem 0;
    background: var(--color-warm-white);
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact__text {
    font-size: 1.05rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.contact-detail {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.contact-detail__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-navy);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact-detail__icon svg {
    width: 22px;
    height: 22px;
    color: var(--color-gold);
}

.contact-detail__text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-detail__text strong {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.contact-detail__text span,
.contact-detail__text a {
    font-size: 1rem;
    color: var(--color-navy);
    font-weight: 500;
}

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

/* Contact Form */
.contact__form-wrapper {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
}

.contact__form-header {
    margin-bottom: 2rem;
}

.contact__form-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact__form-subtitle {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

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

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

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

.form-input {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-cream);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    outline: none;
}

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

.form-input:focus {
    border-color: var(--color-gold);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(200, 164, 90, 0.15);
}

.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 24 24' fill='none' stroke='%235a5a5a' 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 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: var(--radius-md);
    margin-top: 1rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: #166534;
}

.form-success svg {
    width: 20px;
    height: 20px;
    color: #22c55e;
    flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-navy-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 0;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__desc {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-top: 1.25rem;
    max-width: 320px;
}

.footer__heading {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.25rem;
}

.footer__links ul,
.footer__contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer__links a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition);
}

.footer__links a:hover {
    color: var(--color-gold);
    padding-left: 0.25rem;
}

.footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
}

.footer__contact svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--color-gold);
}

.footer__contact a {
    color: rgba(255, 255, 255, 0.6);
}

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

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem 0;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

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

    .about__inner,
    .why-us__inner,
    .contact__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about__image-accent {
        right: 1rem;
        bottom: -1.5rem;
    }

    .why-us__image {
        height: 400px;
    }

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

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-navy-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 0.5rem;
        transition: right var(--transition);
        box-shadow: var(--shadow-xl);
    }

    .nav__menu.active {
        right: 0;
    }

    .nav__link {
        color: rgba(255, 255, 255, 0.8);
        font-size: 1rem;
        padding: 0.75rem 1rem;
        width: 100%;
    }

    .nav__link:hover {
        color: var(--color-white);
        background: rgba(255, 255, 255, 0.08);
    }

    .nav__cta {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
        color: var(--color-gold);
        border-color: var(--color-gold);
    }

    .nav__overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 99;
    }

    .nav__overlay.active {
        display: block;
    }

    .hero__title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero__trust {
        gap: 1.5rem;
    }

    .services__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

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

    .about__image-accent {
        width: 65%;
        right: -0.5rem;
        bottom: -1rem;
    }

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

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .cta__actions {
        flex-direction: column;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .services,
    .about,
    .why-us,
    .contact {
        padding: 5rem 0;
    }

    .hero__actions {
        flex-direction: column;
        width: 100%;
    }

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

    .contact__form-wrapper {
        padding: 1.5rem;
    }
}
