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

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#F8F7F3;
    color:#081B33;
    overflow-x:hidden;
}

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

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

ul{
    list-style:none;
}

.container{
    width:min(1380px,92%);
    margin:auto;
}

/* ===========================
TYPOGRAPHY
=========================== */

h1,h2,h3,h4{
    font-family:'Cormorant Garamond',serif;
}

h1{
    font-size:84px;
    line-height:.98;
    font-weight:600;
    letter-spacing:-2px;
}

p{
    line-height:1.8;
}

/* ===========================
NAVBAR
=========================== */

.navbar{

    position:fixed;

    width:100%;

    top:20px;

    left:0;

    z-index:999;

    transition:.4s;

}

.navbar.scrolled .nav-container{
    background:rgba(8,27,51,.82);
    top:8px;
}

.nav-container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 42px;

    border-radius:24px;

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

    background:rgba(9,26,43,.30);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    box-shadow:
    0 15px 40px rgba(0,0,0,.18);

}

/* ===========================
LOGO
=========================== */

.logo{

    display:flex;

    flex-direction:column;

    color:white;

}

.logo-top{

    font-family:'Cormorant Garamond',serif;

    font-size:30px;

    font-weight:700;

    letter-spacing:2px;

}

.logo-bottom{

    font-size:12px;

    letter-spacing:6px;

    margin-top:-2px;

}

/* ===========================
NAV LINKS
=========================== */

.nav-links{

    display:flex;

    gap:50px;

}

.nav-links .btn-nav-mobile{

    display:none;

}

.nav-links a{

    position:relative;

    color:white;

    font-size:15px;

    font-weight:500;

    transition:.35s;

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:#D8B36A;

    transition:.35s;

}

.nav-links a:hover{

    color:#D8B36A;

}

.nav-links a:hover::after{

    width:100%;

}

/* ===========================
BUTTON
=========================== */

.btn-nav{

    background:#D8B36A;

    color:#081B33;

    padding:16px 28px;

    border-radius:999px;

    font-weight:700;

    transition:.35s;

    box-shadow:

    0 10px 35px rgba(216,179,106,.35);

}

.btn-nav:hover{

    transform:translateY(-4px);

}

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

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    position:relative;

    background-image:url("images/hero.jpg");

    background-size:cover;

    background-position:70% center;

}

.overlay{

    position:absolute;

    inset:0;

    background:

    linear-gradient(

    90deg,

    rgba(5,18,35,.88),

    rgba(5,18,35,.70),

    rgba(5,18,35,.35),

    rgba(5,18,35,.08)

    );

}

.hero-content{

    position:relative;

    z-index:5;

    max-width:650px;

    margin-left:0;

    margin-right:auto;

    text-align:left;

    color:white;

    padding-top:80px;

}

.hero-tag{

    color:#D8B36A;

    letter-spacing:4px;

    font-size:14px;

    margin-bottom:22px;

}

.hero-description{

    font-size:21px;

    opacity:.92;

    margin:38px 0 50px;

    max-width:560px;

}

.hero-buttons{

    display:flex;

    gap:22px;

    flex-wrap:wrap;

}

/* ===========================
PRIMARY BUTTON
=========================== */

.btn-primary{

    background:#D8B36A;

    color:#081B33;

    padding:20px 38px;

    border-radius:999px;

    font-weight:700;

    transition:.35s;

    box-shadow:

    0 12px 40px rgba(216,179,106,.35);

}

.btn-primary:hover{

    transform:translateY(-5px);

}

/* ===========================
SECONDARY BUTTON
=========================== */

.btn-secondary{

    padding:20px 38px;

    border-radius:999px;

    color:white;

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

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    transition:.35s;

}

.btn-secondary:hover{

    background:rgba(255,255,255,.16);

}

/* ===========================
TRUST BAR
=========================== */

.trust-wrapper{

    margin-top:-70px;

    position:relative;

    z-index:10;

}

.trust-bar{

    background:white;

    border-radius:24px;

    display:grid;

    grid-template-columns:repeat(5,1fr);

    padding:40px;

    box-shadow:

    0 25px 60px rgba(0,0,0,.08);

}

.trust-item{

    text-align:center;

}

.trust-item h3{

    color:#D8B36A;

    font-size:34px;

    margin-bottom:12px;

}

.trust-item p{

    font-size:15px;

    color:#555;

    line-height:1.6;

}

/* ===========================
RESPONSIVE
=========================== */

@media(max-width:1100px){

.nav-links{

display:none;

}

h1{

font-size:64px;

}

.hero-description{

font-size:19px;

}

.trust-bar{

grid-template-columns:repeat(2,1fr);

gap:30px;

}

}

@media(max-width:768px){

.nav-container{

padding:16px 22px;

}

.btn-nav{

display:none;

}

.hero{

background-position:center;

}

h1{

font-size:52px;

}

.hero-description{

font-size:17px;

}

.hero-buttons{

flex-direction:column;

}

.btn-primary,

.btn-secondary{

text-align:center;

}

.trust-bar{

grid-template-columns:1fr;

}

}

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

.nav-toggle{
    display:none;
    flex-direction:column;
    justify-content:center;
    gap:5px;
    width:38px;
    height:38px;
    background:none;
    border:none;
    cursor:pointer;
    z-index:1001;
}

.nav-toggle span{
    display:block;
    width:100%;
    height:2px;
    background:white;
    border-radius:2px;
    transition:.3s;
}

.nav-toggle.active span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
}

@media(max-width:1100px){

    .nav-toggle{
        display:flex;
    }

    .nav-links{
        display:flex;
        position:fixed;
        inset:0;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        gap:34px;
        background:#081B33;
        transform:translateY(-100%);
        opacity:0;
        transition:.4s;
        pointer-events:none;
        z-index:1000;
    }

    .nav-links.open{
        transform:translateY(0);
        opacity:1;
        pointer-events:auto;
    }

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

    .nav-links .btn-nav-mobile{
        display:inline-block;
        background:#D8B36A;
        color:#081B33;
        padding:16px 34px;
        border-radius:999px;
        font-weight:700;
    }
}

/* ===========================
WHATSAPP FLOAT BUTTON
=========================== */

.whatsapp-float{
    position:fixed;
    right:26px;
    bottom:26px;
    width:62px;
    height:62px;
    border-radius:50%;
    background:#25D366;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 14px 34px rgba(0,0,0,.28);
    z-index:998;
    transition:.3s;
}

.whatsapp-float:hover{
    transform:translateY(-5px) scale(1.05);
}

.whatsapp-float svg{
    width:32px;
    height:32px;
    fill:white;
}

@media(max-width:768px){
    .whatsapp-float{
        right:16px;
        bottom:16px;
        width:56px;
        height:56px;
    }
}

/* ===========================
SECTION HELPERS
=========================== */

section{
    padding:130px 0;
}

.eyebrow{
    color:#D8B36A;
    letter-spacing:4px;
    font-size:13px;
    font-weight:600;
    text-transform:uppercase;
    margin-bottom:18px;
}

.section-head{
    max-width:680px;
    margin-bottom:60px;
}

.section-head.center{
    margin-left:auto;
    margin-right:auto;
    text-align:center;
}

.section-head h2{
    font-size:48px;
    font-weight:600;
    line-height:1.1;
    letter-spacing:-1px;
    margin-bottom:20px;
}

.section-head p{
    font-size:18px;
    color:#4a5568;
}

.section-dark{
    background:#081B33;
    color:white;
}

.section-dark .section-head p{
    color:rgba(255,255,255,.72);
}

.section-cream{
    background:#EFEBE1;
}

/* ===========================
PROBLEM SECTION
=========================== */

.problem{
    text-align:center;
}

.problem-questions{
    font-family:'Cormorant Garamond',serif;
    font-size:34px;
    line-height:1.4;
    max-width:820px;
    margin:0 auto 46px;
    font-style:italic;
    color:rgba(255,255,255,.88);
}

.problem-statement{
    font-size:22px;
    max-width:720px;
    margin:0 auto;
    color:#D8B36A;
    font-weight:500;
}

/* ===========================
HOW IT WORKS
=========================== */

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

.step-card{
    position:relative;
    padding:44px 34px;
    background:white;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(8,27,51,.06);
}

.step-number{
    font-family:'Cormorant Garamond',serif;
    font-size:56px;
    font-weight:700;
    color:#D8B36A;
    margin-bottom:18px;
}

.step-card h3{
    font-size:24px;
    margin-bottom:14px;
}

.step-card p{
    color:#555;
    font-size:16px;
}

/* ===========================
DESTINATION CARDS
=========================== */

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

.dest-card{
    position:relative;
    height:420px;
    border-radius:20px;
    overflow:hidden;
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:flex-end;
    transition:.45s;
}

.dest-card:hover{
    transform:translateY(-8px);
}

.dest-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,rgba(8,27,51,0) 40%,rgba(8,27,51,.92) 100%);
}

.dest-card-content{
    position:relative;
    z-index:2;
    padding:30px;
    color:white;
    width:100%;
}

.dest-card-content h3{
    font-size:28px;
    margin-bottom:6px;
}

.dest-card-content p{
    font-size:14px;
    opacity:.85;
    margin-bottom:18px;
}

.dest-card .btn-tiny{
    display:inline-block;
    background:#D8B36A;
    color:#081B33;
    padding:11px 22px;
    border-radius:999px;
    font-size:14px;
    font-weight:700;
    transition:.3s;
}

.dest-card .btn-tiny:hover{
    transform:translateY(-3px);
}

.destinations-more{
    text-align:center;
    margin-top:50px;
    font-size:17px;
    color:#4a5568;
}

.destinations-more a{
    color:#081B33;
    font-weight:700;
    border-bottom:2px solid #D8B36A;
}

/* ===========================
COMPARISON TABLE
=========================== */

.compare-table{
    width:100%;
    border-collapse:separate;
    border-spacing:0;
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(8,27,51,.06);
}

.compare-table th{
    font-family:'Cormorant Garamond',serif;
    font-size:26px;
    font-weight:600;
    text-align:left;
    padding:26px 34px;
}

.compare-table th:first-child{
    background:#EFEBE1;
    color:#081B33;
}

.compare-table th:last-child{
    background:#081B33;
    color:#D8B36A;
}

.compare-table td{
    padding:22px 34px;
    font-size:16px;
    border-top:1px solid #eee;
}

.compare-table td:first-child{
    color:#8a8a8a;
}

.compare-table td:last-child{
    color:#081B33;
    font-weight:600;
    background:rgba(216,179,106,.06);
}

.compare-table td::before{
    content:"✕  ";
    color:#d98a8a;
}

.compare-table td:last-child::before{
    content:"✓  ";
    color:#1e9e5a;
}

/* ===========================
FORA TRAVEL SECTION
=========================== */

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

.fora-copy p.lead{
    font-size:24px;
    font-family:'Cormorant Garamond',serif;
    font-style:italic;
    line-height:1.5;
    color:white;
    margin-bottom:34px;
}

.fora-list{
    display:flex;
    flex-direction:column;
    gap:18px;
    margin-bottom:34px;
}

.fora-list li{
    display:flex;
    align-items:center;
    gap:14px;
    font-size:17px;
}

.fora-list li::before{
    content:"✓";
    width:28px;
    height:28px;
    min-width:28px;
    border-radius:50%;
    background:#D8B36A;
    color:#081B33;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:14px;
}

.fora-note{
    font-weight:600;
    color:#D8B36A;
}

.fora-card{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.14);
    border-radius:24px;
    padding:50px 40px;
    text-align:center;
}

.fora-card .stat{
    font-family:'Cormorant Garamond',serif;
    font-size:72px;
    color:#D8B36A;
    font-weight:700;
    line-height:1;
    margin-bottom:10px;
}

.fora-card p{
    color:rgba(255,255,255,.75);
}

.fora-brands{
    margin-top:30px;
    padding-top:30px;
    border-top:1px solid rgba(255,255,255,.14);
    font-size:15px;
    letter-spacing:1px;
    color:rgba(255,255,255,.6);
}

/* ===========================
TESTIMONIALS
=========================== */

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

.testimonial-card{
    background:white;
    border:1px dashed #D8B36A;
    border-radius:20px;
    padding:40px 34px;
}

.testimonial-avatar{
    width:56px;
    height:56px;
    border-radius:50%;
    background:#EFEBE1;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#D8B36A;
    font-family:'Cormorant Garamond',serif;
    font-size:22px;
    font-weight:700;
    margin-bottom:20px;
}

.testimonial-quote{
    font-style:italic;
    color:#4a5568;
    margin-bottom:26px;
    font-size:16px;
}

.testimonial-name{
    font-weight:700;
    color:#081B33;
}

.testimonial-trip{
    font-size:14px;
    color:#999;
}

.testimonial-placeholder-tag{
    display:inline-block;
    margin-top:18px;
    font-size:11px;
    letter-spacing:1.5px;
    text-transform:uppercase;
    color:#D8B36A;
    font-weight:700;
}

/* ===========================
REFUND PROMISE HIGHLIGHT
=========================== */

.refund-highlight{
    background:#EFEBE1;
    border-radius:28px;
    padding:70px;
    text-align:center;
}

.refund-highlight h2{
    font-size:40px;
    margin-bottom:22px;
}

.refund-highlight p{
    max-width:640px;
    margin:0 auto 36px;
    font-size:18px;
    color:#3a3a3a;
}

/* ===========================
FINAL CTA
=========================== */

.final-cta{
    text-align:center;
}

.final-cta h2{
    font-size:52px;
    margin-bottom:18px;
}

.final-cta p{
    font-size:19px;
    color:rgba(255,255,255,.75);
    margin-bottom:44px;
}

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

.btn-outline-light{
    padding:20px 38px;
    border-radius:999px;
    color:white;
    border:1px solid rgba(255,255,255,.35);
    transition:.35s;
    font-weight:600;
}

.btn-outline-light:hover{
    background:rgba(255,255,255,.1);
}

/* ===========================
FOOTER
=========================== */

.site-footer{
    background:#050E1B;
    color:rgba(255,255,255,.65);
    padding:90px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1.2fr;
    gap:50px;
    padding-bottom:60px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.footer-brand .logo-top,
.footer-brand .logo-bottom{
    color:white;
}

.footer-brand p{
    margin-top:18px;
    font-size:15px;
    max-width:280px;
}

.footer-col h4{
    font-family:'Inter',sans-serif;
    color:white;
    font-size:15px;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:22px;
}

.footer-col ul{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.footer-col a{
    font-size:15px;
    transition:.3s;
}

.footer-col a:hover{
    color:#D8B36A;
}

.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-top:30px;
    font-size:13px;
    flex-wrap:wrap;
    gap:14px;
}

.footer-socials{
    display:flex;
    gap:18px;
}

@media(max-width:1100px){
    .footer-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:768px){
    .footer-grid{
        grid-template-columns:1fr;
        gap:36px;
    }
}

/* ===========================
PAGE HERO (interior pages)
=========================== */

.page-hero{
    min-height:56vh;
    display:flex;
    align-items:center;
    position:relative;
    background-size:cover;
    background-position:center;
    color:white;
    text-align:center;
}

.page-hero .overlay{
    background:linear-gradient(180deg,rgba(5,18,35,.75),rgba(5,18,35,.55));
}

.page-hero-content{
    position:relative;
    z-index:5;
    max-width:760px;
    margin:0 auto;
    padding-top:90px;
}

.page-hero h1{
    font-size:60px;
}

.page-hero p{
    font-size:19px;
    opacity:.88;
    margin-top:22px;
}

/* ===========================
ABOUT PAGE
=========================== */

.about-story{
    max-width:820px;
    margin:0 auto;
    text-align:center;
}

.about-story p{
    font-family:'Cormorant Garamond',serif;
    font-size:30px;
    line-height:1.55;
    font-style:italic;
    color:#081B33;
}

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

.team-card{
    text-align:center;
}

.team-avatar{
    width:150px;
    height:150px;
    border-radius:50%;
    background:linear-gradient(140deg,#081B33,#0f3868);
    color:#D8B36A;
    display:flex;
    align-items:center;
    justify-content:center;
    font-family:'Cormorant Garamond',serif;
    font-size:46px;
    font-weight:700;
    margin:0 auto 24px;
}

.team-card h3{
    font-size:22px;
    margin-bottom:6px;
}

.team-card .role{
    color:#D8B36A;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:14px;
}

.team-card p.bio{
    color:#555;
    font-size:15px;
}

/* ===========================
DESTINATIONS FULL PAGE
=========================== */

.region-block{
    margin-bottom:80px;
}

.region-block:last-child{
    margin-bottom:0;
}

.region-title{
    font-size:32px;
    margin-bottom:36px;
    padding-bottom:18px;
    border-bottom:1px solid #e2ddd0;
}

.destinations-grid.full{
    grid-template-columns:repeat(3,1fr);
}

.destinations-grid.full .dest-card{
    height:340px;
}

/* ===========================
SERVICES PAGE
=========================== */

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

.service-card{
    background:white;
    border-radius:20px;
    padding:44px 34px;
    box-shadow:0 20px 50px rgba(8,27,51,.06);
    transition:.35s;
}

.service-card:hover{
    transform:translateY(-6px);
}

.service-icon{
    width:56px;
    height:56px;
    border-radius:16px;
    background:#081B33;
    color:#D8B36A;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    margin-bottom:24px;
}

.service-card h3{
    font-size:23px;
    margin-bottom:14px;
}

.service-card p{
    color:#555;
    font-size:15.5px;
}

/* ===========================
PROMISE / REFUND POLICY PAGE
=========================== */

.policy-intro{
    background:#081B33;
    color:white;
    border-radius:24px;
    padding:60px;
    text-align:center;
    margin-bottom:80px;
}

.policy-intro p{
    font-family:'Cormorant Garamond',serif;
    font-size:28px;
    font-style:italic;
    max-width:760px;
    margin:0 auto;
    line-height:1.5;
}

.policy-list{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.policy-row{
    display:grid;
    grid-template-columns:280px 1fr;
    gap:34px;
    background:white;
    border-radius:16px;
    padding:32px 38px;
    box-shadow:0 15px 40px rgba(8,27,51,.05);
    align-items:center;
}

.policy-row .when{
    font-family:'Cormorant Garamond',serif;
    font-size:24px;
    font-weight:600;
    color:#081B33;
}

.policy-row .refund-amount{
    color:#D8B36A;
    font-weight:700;
}

.policy-row p{
    color:#555;
    font-size:16px;
}

.policy-row.highlight{
    border:1px solid #D8B36A;
}

/* ===========================
CONTACT PAGE
=========================== */

.contact-grid{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:70px;
}

.contact-methods{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.contact-method{
    display:flex;
    align-items:center;
    gap:20px;
    background:white;
    border-radius:16px;
    padding:26px 28px;
    box-shadow:0 15px 40px rgba(8,27,51,.05);
    transition:.3s;
}

.contact-method:hover{
    transform:translateY(-4px);
}

.contact-method-icon{
    width:52px;
    height:52px;
    min-width:52px;
    border-radius:50%;
    background:#081B33;
    color:#D8B36A;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.contact-method h4{
    font-size:17px;
    margin-bottom:4px;
}

.contact-method p{
    font-size:15px;
    color:#666;
}

.contact-form{
    background:white;
    border-radius:24px;
    padding:50px;
    box-shadow:0 25px 60px rgba(8,27,51,.07);
}

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

.form-group label{
    display:block;
    font-size:14px;
    font-weight:600;
    margin-bottom:10px;
    color:#081B33;
}

.form-group input{
    width:100%;
    padding:16px 18px;
    border:1px solid #e2ddd0;
    border-radius:12px;
    font-family:'Inter',sans-serif;
    font-size:15px;
    background:#FBFAF7;
    transition:.3s;
}

.form-group input:focus{
    outline:none;
    border-color:#D8B36A;
    background:white;
}

.btn-submit{
    width:100%;
    padding:20px;
    border:none;
    border-radius:999px;
    background:#D8B36A;
    color:#081B33;
    font-weight:700;
    font-size:16px;
    cursor:pointer;
    transition:.3s;
}

.btn-submit:hover{
    transform:translateY(-3px);
    box-shadow:0 14px 34px rgba(216,179,106,.35);
}

.form-success{
    display:none;
    text-align:center;
    padding:30px;
}

.form-success h3{
    font-size:26px;
    margin-bottom:12px;
}

.form-success p{
    color:#555;
}

/* ===========================
RESPONSIVE — NEW SECTIONS
=========================== */

@media(max-width:1100px){

    section{
        padding:90px 0;
    }

    .section-head h2{
        font-size:36px;
    }

    .steps-grid,
    .destinations-grid,
    .destinations-grid.full,
    .testimonials-grid,
    .services-grid,
    .team-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .fora-grid{
        grid-template-columns:1fr;
        gap:44px;
    }

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

    .policy-row{
        grid-template-columns:1fr;
        gap:10px;
    }

    .page-hero h1{
        font-size:44px;
    }

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

    .refund-highlight{
        padding:44px 30px;
    }

    .compare-table{
        display:block;
        overflow-x:auto;
    }
}

@media(max-width:768px){

    .steps-grid,
    .destinations-grid,
    .destinations-grid.full,
    .testimonials-grid,
    .services-grid,
    .team-grid{
        grid-template-columns:1fr;
    }

    .contact-form{
        padding:32px 26px;
    }

    .policy-intro{
        padding:40px 26px;
    }

    .page-hero h1{
        font-size:34px;
    }

    section{
        padding:70px 0;
    }
}