/* =========================================
   ATLAS SET — MAIN STYLESHEET
========================================= */


/* =========================================
   RESET
========================================= */

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

:root {
    --gold: #d4af37;
    --gold-dark: #b18a22;
    --white: #ffffff;
    --dark: #08131f;
    --dark-soft: #14202a;
    --cream: #f6f2eb;
    --text-dark: #17232c;
    --text-gray: #687178;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    overflow-x: hidden;
    background: var(--dark);
    color: var(--white);
    font-family: "Manrope", sans-serif;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

a {
    color: inherit;
}

.skip-link {
    position: absolute;
    top: -48px;
    left: 16px;
    z-index: 2000;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--gold);
    color: #000000;
    text-decoration: none;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 16px;
}

::selection {
    background: rgba(212, 175, 55, 0.35);
    color: var(--white);
}

:focus-visible {
    outline: 3px solid rgba(212, 175, 55, 0.6);
    outline-offset: 3px;
}


/* =========================================
   HEADER
========================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(8, 19, 31, 0.84);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    transition:
        background 0.4s ease,
        box-shadow 0.4s ease;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
}

.logo {
    color: var(--white);
    font-family: "Cormorant Garamond", serif;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
}

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

.nav-links a {
    position: relative;
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

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

.right-menu {
    display: flex;
    align-items: center;
    gap: 18px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background: var(--white);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.header.is-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.header.is-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.header.is-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.language {
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 20px;
    background: transparent;
    color: var(--white);
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    cursor: pointer;
    transition:
        border-color 0.3s ease,
        color 0.3s ease;
}

.language:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-nav {
    padding: 12px 26px;
    border: 1px solid var(--gold);
    border-radius: 30px;
    color: var(--white);
    text-decoration: none;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.btn-nav:hover {
    transform: translateY(-2px);
    background: var(--gold);
    color: #000000;
}


/* =========================================
   HERO
========================================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=80")
        center center / cover no-repeat;
    text-align: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(7, 18, 29, 0.34) 0%,
            rgba(7, 18, 29, 0.48) 55%,
            rgba(7, 18, 29, 0.62) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 900px;
    transform: translateY(-25px);
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

section,
.method-card,
.why-card,
.experience-card,
.trending-card,
.footer {
    content-visibility: auto;
    contain-intrinsic-size: 1200px 800px;
}

.subtitle {
    display: inline-block;
    color: var(--gold);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero h1 {
    margin: 25px 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(54px, 6vw, 82px);
    font-weight: 600;
    line-height: 1.05;
}

.hero p {
    max-width: 760px;
    margin: 0 auto 40px;
    color: #eeeeee;
    font-size: 20px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 17px 36px;
    border-radius: 40px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-decoration: none;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.15);
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
}

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

.btn-primary:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 18px 38px rgba(212, 175, 55, 0.28);
}

.btn-secondary {
    border: 2px solid var(--white);
    background: transparent;
    color: var(--white);
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.01);
    background: var(--white);
    color: #000000;
    box-shadow: 0 16px 34px rgba(255, 255, 255, 0.14);
}


/* =========================================
   THE ATLAS METHOD
========================================= */

.atlas-method {
    padding: 130px 5%;
    background: var(--cream);
    color: var(--text-dark);
    scroll-margin-top: 95px;
}

.atlas-method-header {
    max-width: 900px;
    margin: 0 auto 75px;
    text-align: center;
}

.section-eyebrow {
    display: inline-block;
    margin-bottom: 24px;
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.atlas-method-header h2 {
    margin-bottom: 28px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(46px, 5vw, 68px);
    font-weight: 600;
    line-height: 1.05;
}

.atlas-method-header p {
    max-width: 700px;
    margin: auto;
    color: #5f696f;
    font-size: 18px;
    line-height: 1.8;
}

.method-grid {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.method-card {
    min-height: 330px;
    padding: 42px 34px;
    border: 1px solid rgba(23, 35, 44, 0.08);
    border-radius: 22px;
    background: var(--white);
    box-shadow: 0 18px 45px rgba(20, 31, 40, 0.06);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.method-card:hover {
    transform: translateY(-8px);
    border-color: rgba(177, 138, 34, 0.35);
    box-shadow: 0 28px 60px rgba(20, 31, 40, 0.12);
}

.method-number {
    display: inline-block;
    margin-bottom: 55px;
    color: var(--gold-dark);
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-weight: 600;
}

.method-card h3 {
    margin-bottom: 18px;
    font-family: "Cormorant Garamond", serif;
    font-size: 34px;
    font-weight: 600;
    line-height: 1.1;
}

.method-card p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.75;
}


/* =========================================
   EXPERIENCES
========================================= */

.experiences {
    padding: 140px 5%;
    background: var(--dark);
    color: var(--white);
    scroll-margin-top: 95px;
}

.section-title {
    max-width: 900px;
    margin: 0 auto 70px;
    text-align: center;
}

.section-title h2 {
    margin: 25px 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(46px, 5vw, 68px);
    font-weight: 600;
    line-height: 1.05;
}

.section-title p {
    max-width: 700px;
    margin: auto;
    color: #c8ced3;
    font-size: 18px;
    line-height: 1.8;
}

.experience-grid {
    max-width: 1450px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.experience-card {
    position: relative;
    height: 420px;
    overflow: hidden;
    border-radius: 28px;
    background-position: center;
    background-size: cover;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}

.experience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.3);
}

.experience-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    background-position: center;
    background-size: cover;
    transition: transform 0.7s ease;
}

.experience-card:hover::before {
    transform: scale(1.05);
}

.experience-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.8),
            rgba(0, 0, 0, 0.12)
        );
}

.experience-content {
    position: absolute;
    left: 45px;
    bottom: 42px;
    z-index: 2;
}

.experience-content span {
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.experience-content h3 {
    margin-top: 16px;
    color: var(--white);
    font-family: "Cormorant Garamond", serif;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.05;
}

.resort {
    background-image:
        url("https://images.unsplash.com/photo-1573843981267-be1999ff37cd?auto=format&fit=crop&w=1400&q=80");
}

.cruise {
    background-image:
        url("https://images.unsplash.com/photo-1548574505-5e239809ee19?auto=format&fit=crop&w=1400&q=80");
}

.europe {
    background-image:
        url("https://images.unsplash.com/photo-1499856871958-5b9627545d1a?auto=format&fit=crop&w=1400&q=80");
}

.custom {
    background-image:
        url("https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1400&q=80");
}


/* =========================================
   WHY TRAVELERS CHOOSE ATLAS SET
========================================= */

.why-atlas {
    padding: 140px 5%;
    background: #ffffff;
    color: var(--text-dark);
    scroll-margin-top: 95px;
}

.why-atlas-header {
    max-width: 980px;
    margin: 0 auto 80px;
    text-align: center;
}

.why-atlas-header h2 {
    margin: 0 auto 28px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(46px, 5vw, 68px);
    font-weight: 600;
    line-height: 1.05;
}

.why-atlas-header p {
    max-width: 720px;
    margin: auto;
    color: #687178;
    font-size: 18px;
    line-height: 1.8;
}

.why-grid {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    position: relative;
    min-height: 310px;
    padding: 42px 32px;
    border: 1px solid #e7e3dc;
    border-radius: 20px;
    background: #ffffff;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 32px;
    width: 0;
    height: 3px;
    border-radius: 10px;
    background: var(--gold);
    transition: width 0.35s ease;
}

.why-card:hover {
    transform: translateY(-7px);
    border-color: rgba(177, 138, 34, 0.35);
    box-shadow: 0 24px 55px rgba(20, 31, 40, 0.1);
}

.why-card:hover::before {
    width: 70px;
}

.why-number {
    display: inline-block;
    margin-bottom: 48px;
    color: var(--gold-dark);
    font-family: "Cormorant Garamond", serif;
    font-size: 27px;
    font-weight: 600;
}

.why-card h3 {
    margin-bottom: 18px;
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.1;
}

.why-card p {
    color: #687178;
    font-size: 16px;
    line-height: 1.75;
}



/* =========================================
   TRENDING DESTINATIONS
========================================= */

.trending-destinations {
    padding: 130px 5%;
    background: var(--cream);
    color: var(--text-dark);
}

.trending-header {
    max-width: 860px;
    margin: 0 auto 65px;
    text-align: center;
}

.trending-header h2 {
    margin: 0 auto 26px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(46px, 5vw, 66px);
    font-weight: 600;
    line-height: 1.05;
}

.trending-header p {
    max-width: 680px;
    margin: auto;
    color: var(--text-gray);
    font-size: 17px;
    line-height: 1.8;
}

.trending-grid {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.trending-card {
    position: relative;
    min-height: 480px;
    overflow: hidden;
    border-radius: 24px;
    background-position: center;
    background-size: cover;
    box-shadow: 0 18px 45px rgba(20, 31, 40, 0.12);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.trending-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 60px rgba(20, 31, 40, 0.18);
}

.trending-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    background-position: center;
    background-size: cover;
    transition: transform 0.7s ease;
}

.trending-card:hover::before {
    transform: scale(1.05);
}

.trending-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            to top,
            rgba(5, 13, 22, 0.9) 0%,
            rgba(5, 13, 22, 0.45) 52%,
            rgba(5, 13, 22, 0.12) 100%
        );
}

.trending-content {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 34px;
    z-index: 2;
}

.trending-content span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.trending-content h3 {
    margin: 14px 0 14px;
    color: var(--white);
    font-family: "Cormorant Garamond", serif;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.05;
}

.trending-content p {
    color: #e1e5e8;
    font-size: 15px;
    line-height: 1.7;
}

.trending-content .btn {
    margin-top: 18px;
}

.footer {
    padding: 0 5% 40px;
    background: var(--dark);
    color: #dfe4e8;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    align-items: flex-start;
    padding: 44px 0 28px;
}

.footer-brand,
.footer-contact,
.footer-links {
    flex: 1 1 220px;
    min-width: 0;
}

.footer h3,
.footer h4 {
    margin-bottom: 12px;
    color: var(--white);
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    font-weight: 600;
}

.footer p,
.footer a {
    color: #cad2d8;
    font-size: 15px;
    line-height: 1.8;
    text-decoration: none;
}

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

.footer-bottom {
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #9da7b0;
}

.trending-punta-cana {
    background-image:
        url("https://images.unsplash.com/photo-1500375592092-40eb2168fd21?auto=format&fit=crop&w=1200&q=80");
}

.trending-cancun {
    background-image:
        url("https://images.unsplash.com/photo-1519046904884-53103b34b206?auto=format&fit=crop&w=1200&q=80");
}

.trending-orlando {
    background-image:
        url("https://images.unsplash.com/photo-1530549387789-4c1017266635?auto=format&fit=crop&w=1200&q=80");
}

.trending-cruises {
    background-image:
        url("https://images.unsplash.com/photo-1500375592092-40eb2168fd21?auto=format&fit=crop&w=1200&q=80");
}

.trending-europe {
    background-image:
        url("https://images.unsplash.com/photo-1516483638261-f4dbaf036963?auto=format&fit=crop&w=1200&q=80");
}

.trending-hawaii {
    background-image:
        url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1200&q=80");
}

/* =========================================
   FINAL CALL TO ACTION
========================================= */

.final-cta {
    position: relative;
    padding: 150px 5%;
    overflow: hidden;
    background:
        linear-gradient(
            rgba(8, 19, 31, 0.84),
            rgba(8, 19, 31, 0.9)
        ),
        url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=1800&q=80")
        center / cover no-repeat;
    color: var(--white);
    scroll-margin-top: 95px;
}

.final-cta-content {
    max-width: 950px;
    margin: auto;
    text-align: center;
}

.final-cta h2 {
    margin: 0 auto 28px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 600;
    line-height: 1.05;
}

.final-cta p {
    max-width: 700px;
    margin: 0 auto 42px;
    color: #d4d9dd;
    font-size: 18px;
    line-height: 1.8;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-light {
    border: 1px solid rgba(255, 255, 255, 0.75);
    background: transparent;
    color: var(--white);
}

.btn-light:hover {
    transform: translateY(-3px) scale(1.01);
    background: var(--white);
    color: var(--dark);
    box-shadow: 0 16px 34px rgba(255, 255, 255, 0.16);
}

.final-cta-contact {
    margin-top: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    color: #cbd1d5;
    font-size: 14px;
}

.final-cta-contact a {
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.final-cta-contact span {
    width: 34px;
    height: 1px;
    background: rgba(212, 175, 55, 0.65);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .nav-links {
        gap: 20px;
    }

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

    .logo {
        font-size: 32px;
    }

    .hero-content {
        transform: translateY(-10px);
    }

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

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

    .trending-card {
        min-height: 420px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {

    .experiences {
        padding: 100px 5%;
    }

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

    .experience-card {
        height: 340px;
    }
}

@media (max-width: 768px) {

    .container {
        width: 92%;
        padding: 18px 0;
    }

    .logo {
        font-size: 30px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .site-nav,
    .right-menu {
        display: none;
        width: 100%;
    }

    .header.is-open .site-nav,
    .header.is-open .right-menu {
        display: flex;
    }

    .site-nav {
        order: 3;
        padding-top: 6px;
    }

    .right-menu {
        order: 4;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding-top: 8px;
        padding-bottom: 4px;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

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

    .right-menu .language,
    .right-menu .btn-nav {
        display: inline-flex;
        justify-content: center;
        width: 100%;
    }

    .hero {
        min-height: 100svh;
        padding: 110px 0 50px;
    }

    .hero-content {
        width: 90%;
        transform: none;
        padding-top: 12px;
    }

    .subtitle {
        font-size: 12px;
        letter-spacing: 3px;
        line-height: 1.6;
    }

    .hero h1 {
        margin: 20px 0;
        font-size: 50px;
        line-height: 1;
    }

    .hero p {
        margin-bottom: 30px;
        font-size: 17px;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 14px;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        padding: 15px 26px;
    }

    .atlas-method {
        padding: 90px 5%;
    }

    .atlas-method-header {
        margin-bottom: 50px;
    }

    .atlas-method-header h2 {
        font-size: 44px;
    }

    .atlas-method-header p {
        font-size: 16px;
    }

    .method-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .method-card,
    .why-card {
        min-height: auto;
    }

    .method-number {
        margin-bottom: 35px;
    }

    .section-title h2 {
        font-size: 44px;
    }

    .section-title p {
        font-size: 16px;
    }

    .why-atlas {
        padding: 95px 5%;
    }

    .why-atlas-header {
        margin-bottom: 50px;
    }

    .why-atlas-header h2 {
        font-size: 42px;
    }

    .why-atlas-header p {
        font-size: 16px;
    }

    .why-number {
        margin-bottom: 32px;
    }

    .trending-destinations {
        padding: 95px 5%;
    }

    .trending-header {
        margin-bottom: 45px;
    }

    .trending-header h2 {
        font-size: 42px;
    }

    .trending-header p {
        font-size: 16px;
    }

    .trending-card {
        min-height: 360px;
    }

    .final-cta {
        padding: 105px 5%;
    }

    .final-cta h2 {
        font-size: 42px;
    }

    .final-cta p {
        font-size: 16px;
    }

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

    .final-cta-buttons .btn {
        width: 100%;
        max-width: 310px;
    }

    .final-cta-contact {
        flex-direction: column;
        gap: 10px;
    }

    .final-cta-contact span {
        display: none;
    }

    .footer-container {
        flex-direction: column;
        gap: 24px;
    }

    .footer-bottom {
        text-align: left;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 600px) {

    .experience-card {
        height: 300px;
        border-radius: 20px;
    }

    .experience-content {
        left: 28px;
        bottom: 28px;
    }

    .experience-content h3 {
        font-size: 38px;
    }
}

@media (max-width: 480px) {

    .header {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
    }

    .container {
        width: 94%;
        padding: 16px 0;
    }

    .logo {
        font-size: 26px;
        letter-spacing: 1px;
    }

    .hero {
        padding: 118px 0 60px;
    }

    .hero-content {
        width: 94%;
    }

    .hero h1 {
        font-size: 38px;
        line-height: 1.08;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-buttons {
        gap: 12px;
    }

    .hero-buttons .btn,
    .final-cta-buttons .btn {
        max-width: none;
    }

    .atlas-method-header h2,
    .section-title h2,
    .why-atlas-header h2,
    .trending-header h2 {
        font-size: 38px;
    }

    .method-card,
    .why-card {
        padding: 34px 26px;
    }

    .method-card h3,
    .why-card h3 {
        font-size: 30px;
    }

    .trending-content {
        left: 22px;
        right: 22px;
        bottom: 22px;
    }

    .trending-content h3 {
        font-size: 30px;
    }

    .trending-content .btn {
        width: auto;
        display: inline-flex;
    }

    .contact-section {
        padding: 32px 5% 72px;
    }

    .contact-form button {
        max-width: none;
    }
}

@media (max-width: 390px) {

    .hero h1 {
        font-size: 35px;
    }

    .hero p {
        font-size: 14px;
    }

    .subtitle {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .atlas-method-header h2,
    .section-title h2,
    .why-atlas-header h2,
    .trending-header h2 {
        font-size: 34px;
    }

    .trending-content {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .trending-content h3 {
        font-size: 28px;
    }
}

@media (max-width: 375px) {

    .container {
        width: 95%;
    }

    .hero h1 {
        font-size: 32px;
    }

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

    .trending-content {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .trending-content h3 {
        font-size: 26px;
    }
}
/* ==========================================================
   CONTACT FORM
========================================================== */

.contact-section{
    background:#071321;
    padding:40px 8% 100px;
}


.contact-section .container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}


.contact-form{
    margin-top:0;
}

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

.form-group{
    display:flex;
    flex-direction:column;
}

.form-group label{
    color:#d8b44c;
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:10px;
    font-weight:600;
}

.contact-form input,
.contact-form textarea{

    width:100%;
    padding:18px 20px;

    background:#0f1d2d;

    border:1px solid rgba(255,255,255,.10);

    color:#fff;

    border-radius:10px;

    font-size:16px;

    transition:.30s;

    outline:none;

}

.contact-form textarea{

    resize:vertical;

    min-height:180px;

    margin-top:10px;

}

.contact-form input:focus,
.contact-form textarea:focus{

    border-color:#d8b44c;

    box-shadow:0 0 0 3px rgba(216,180,76,.15);

}

.contact-form button{
    margin-top:35px;
    width:100%;
    max-width:320px;
}

@media(max-width:900px){

    .form-grid{

        grid-template-columns:1fr;

    }

    .contact-section .container{
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-section{
        padding: 40px 5% 80px;
    }

}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
