.gtrip-page,
.gtrip-airport-transfer{

    background:#f8fafc;
    color:#111827;
    min-height:100vh;
}

.gtrip-page > section h1,
.gtrip-page > section h2,
.gtrip-page > section h3,
.gtrip-page > section p,
.gtrip-page > section li{

    color:#111827;
}

/* =====================================
   KILL THEME WIDTH
===================================== */

main,
.wp-site-blocks,
.entry-content,
.wp-block-post-content,
.is-layout-constrained,
.wp-block-group{

    width:100% !important;
    max-width:none !important;

    margin:0 !important;
    padding:0 !important;
}

/* =====================================
   FULL WIDTH PAGE
===================================== */

.gtrip-page{

    width:100%;
    max-width:none;

    background:#f8fafc;
    min-height:100vh;
}



/* =====================================
   CONTAINER
===================================== */

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

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

.gtrip-page-hero{
    padding:100px 0 80px;
}

.gtrip-page-hero h1{
    font-size:64px;
    line-height:1.1;
    font-weight:700;
    margin-bottom:24px;
}

.gtrip-page-hero p{
    font-size:22px;
    line-height:1.7;
    color:#4b5563;
    max-width:850px;
}

.gtrip-page-hero-buttons{
    display:flex;
    gap:16px;
    margin-top:40px;
}

.gtrip-btn{
    display:inline-block;
    padding:14px 28px;
    border-radius:10px;
    font-weight:600;
    text-decoration:none;
}

.gtrip-btn-primary{
    background:#14b8a6;
    color:#fff !important;
}

.gtrip-btn-primary:hover{
    background:#0f766e;
}

.gtrip-btn-secondary{
    border:1px solid #d1d5db;
    color:#111827 !important;
}

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

.gtrip-section{
    padding:90px 0;
}

.gtrip-section-title{
    text-align:center;
    margin-bottom:60px;
}

.gtrip-section-title h2{
    font-size:42px;
    margin-bottom:16px;
}

.gtrip-section-title p{
    color:#6b7280;
}

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

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

.gtrip-card{
    background:#fff;
    border-radius:16px;
    padding:32px;
    border:1px solid #e5e7eb;
}

.gtrip-card h3{
    margin-bottom:14px;
}

.gtrip-card p{
    color:#6b7280;
}

/* =====================================
   COUNTRIES
===================================== */

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

.gtrip-country-card{
    background:#fff;
    border-radius:16px;
    padding:32px;
    border:1px solid #e5e7eb;
}

.gtrip-country-card ul{
    margin-top:16px;
    padding-left:18px;
}

/* =====================================
   WHY US
===================================== */

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

.gtrip-feature{
    background:#fff;
    padding:24px;
    border-radius:16px;
    text-align:center;
    border:1px solid #e5e7eb;
}

.gtrip-feature h3{
    margin-bottom:10px;
}

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

.gtrip-steps{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.gtrip-step{
    background:#fff;
    border-radius:16px;
    padding:30px;
    border:1px solid #e5e7eb;
}

.gtrip-step-number{
    font-size:42px;
    font-weight:700;
    color:#14b8a6;
    margin-bottom:16px;
}

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

.gtrip-cta{
    background:#111827;
    color:#fff;
    text-align:center;
    border-radius:24px;
    padding:80px 40px;
}

.gtrip-cta h2{
    color:#fff !important;
    font-size:48px;
    margin-bottom:20px;
}

.gtrip-cta p{
    color:#cbd5e1 !important;
    margin-bottom:30px;
}

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

@media(max-width:768px){

    .gtrip-page-hero{
        padding:60px 0;
    }

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

    .gtrip-page-hero p{
        font-size:18px;
    }

    .gtrip-grid-3,
    .gtrip-country-grid,
    .gtrip-feature-grid,
    .gtrip-steps{

        grid-template-columns:1fr;
    }

    .gtrip-section{
        padding:60px 0;
    }

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

    .gtrip-cta h2{
        font-size:36px;
    }

    .gtrip-page-hero-buttons{
        flex-direction:column;
    }
}

.gtrip-vehicle-grid{
    display:grid;

    grid-template-columns:
    repeat(4,260px);

    justify-content:center;

    gap:24px;
}

.gtrip-vehicle-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:16px;
    overflow:hidden;

    display:flex;
    flex-direction:column;
}

.gtrip-vehicle-content{
    padding:24px;
    border-top:1px solid #f1f5f9;
}

.gtrip-vehicle-card img{
    width:100%;
    height:160px;

    object-fit:contain;

    padding:15px;

    background:#fff;
}

.gtrip-vehicle-content{
    padding:24px;
    border-top:1px solid #f1f5f9;
}

.gtrip-vehicle-meta{
    color:#14b8a6;
    font-weight:600;
    margin:10px 0;
}

@media(max-width:768px){

    .gtrip-vehicle-grid{
        grid-template-columns:1fr;
    }

}



