/*
Theme Name: SkynTravel
Theme URI: https://skyntravel.com
Author: SkynTravel Dev
Description: A premium, SEO-optimized travel theme for Car Rentals, Flights, and Trains. Fully customizable with long-form content support.
Version: 0.0.1
Text Domain: skyntravel
Tags: travel, luxury, booking, e-commerce, blog
Requires at least: 5.0
Requires PHP: 7.4
*/

/* --- PREMIUM VARIABLES --- */
:root {
    --primary: #0b1120;
	--secondary: #cd1b35;
    --accent: #d4af37;
    --accent-hover: #b5952f;
    --text-body: #4a5568;
    --bg-light: #f7f9fc;
    --border-subtle: #e2e8f0;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* --- RESET & BASE --- */
html,body{margin: 0; padding: 0;}
* { box-sizing: border-box; }
body { font-family: var(--font-body); color: var(--text-body); background: #fff; line-height: 1.7; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--primary); font-weight: 600; line-height: 1.2; margin-bottom: 1rem; }
h1 { font-size: clamp(2rem, 5vw, 2.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2rem); }
h3 { font-size: clamp(1.5rem, 3.5vw, 1.75rem); }
h4 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h5 { font-size: clamp(1.1rem, 2.5vw, 1.25rem); }
h6 { font-size: clamp(1rem, 2vw, 1rem); }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; display: block; }
/* ul { list-style: none; } */

/* --- UTILITIES --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 30px; }
.section { padding: 40px 0; }
.text-center { text-align: center; }
.btn { display: inline-block; padding: 14px 32px; font-family: var(--font-body); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; font-size: 0.75rem; border: 1px solid transparent; cursor: pointer; transition: all 0.4s ease; border-radius: 4px;}
.btn-gold { background: var(--accent); color: white; }
.btn-gold:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn-outline { border-color: var(--primary); color: var(--primary); background:transparent; }
.btn-outline:hover { background: var(--primary); color: white; }
.btn-white { background: white; color: var(--primary); }
.btn-white:hover { background: var(--accent); color: white; }


.btn-accent{background: var(--accent); color: #fff !important; }
.btn-accent:hover{background: color-mix( in srgb, var(--accent) 80%, transparent); color: #fff !important; }

.btn-secondary{background: var(--secondary); color: #fff !important; }
.btn-secondary:hover{background: color-mix( in srgb, var(--secondary) 90%, var(--accent) 15%); color: #fff !important; }

.text-accent{ color: var(--accent) !important; }
.text-primary{ color: var(--primary) !important; }
.text-secondary{ color: var(--secondary) !important; }

.bg-white{ background-color: #fff !important;}
.bg-light{ background-color: var(--bg-light) !important;}
.bg-accent{ background-color: var(--accent) !important;}
.bg-primary{ background-color: var(--primary) !important;}
.bg-secondary{ background-color: var(--secondary) !important;}


/* --- HEADER & NAV --- */
header { background: white; border-bottom: 1px solid var(--border-subtle); padding: 10px 0; position: sticky; top: 0; z-index: 100; }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--primary); }
.logo span { color: var(--accent); }
.nav-wrapper a.custom-logo-link img {
    max-width: 180px;
}
.main-nav ul { display: flex; gap: 30px; list-style: none; padding: 0; }
.main-nav a { font-size: 0.9rem; text-transform: capitalize; letter-spacing: 1.5px; font-weight: 500; color: var(--primary); }
.main-nav a:hover, .main-nav a.current-menu-item { color: var(--accent); }

/* --- HERO --- */
.hero { height: 75dvh; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; text-align: center; color: white; position: relative; }
.hero::before { content: ''; position: absolute; top:0; left:0; right:0; bottom:0; background: rgba(11, 17, 32, 0.4); z-index: 1; }
.hero-content { position: relative; z-index: 2; }
.hero h1 { color: white; font-size: 4.5rem; margin-bottom: 20px; font-style: italic; }

/* --- SEARCH WIDGET --- */
.search-container { background: white; padding: 40px; box-shadow: 0 20px 40px rgba(0,0,0,0.08); margin-top: -80px; position: relative; z-index: 10; border-radius: 2px; }
.tabs { display: flex; gap: 50px; border-bottom: 1px solid var(--border-subtle); margin-bottom: 30px; }
.tab-btn { background: none; border: none; padding-bottom: 15px; font-family: var(--font-heading); font-size: 1.4rem; color: #a0aec0; cursor: pointer; transition: 0.3s; }
.tab-btn.active { color: var(--primary); border-bottom: 2px solid var(--accent); font-weight: 600; }
.search-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.form-group label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1.5px; color: #718096; margin-bottom: 8px; font-weight: 600; }
.form-control { width: 100%; padding: 12px; border: 1px solid var(--border-subtle); font-family: var(--font-body); color: var(--primary); transition: 0.3s; }
.form-control:focus { outline: none; border-color: var(--accent); }

/* --- CARDS & GRIDS --- */
.dest-grid, .journal-grid, .car-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.card { position: relative; overflow: hidden; cursor: pointer; background: white; }
.dest-img, .journal-img, .car-img { height: 350px; width: 100%; object-fit: cover; transition: transform 0.6s; }
.card:hover .dest-img, .card:hover .journal-img, .card:hover .car-img { transform: scale(1.05); }
.dest-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); padding: 30px; color: white; }
.dest-overlay h3 { color: white; font-size: 1.8rem; margin-bottom: 5px; }

/* --- SIDEBAR --- */
.sidebar-widget { margin-bottom: 50px; }
.widget-title { font-family: var(--font-body); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1.5px; border-bottom: 2px solid var(--accent); padding-bottom: 10px; margin-bottom: 25px; display: inline-block; }
.recent-post { display: block; margin-bottom: 20px; color: var(--primary); font-weight: 500; }
.recent-post:hover { color: var(--accent); }

/* --- FOOTER --- */
.site-footer { background: var(--primary); color: #a0aec0; padding: 80px 0 30px; font-size: 0.9rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.footer-col h4 { color: white; font-family: var(--font-body); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 25px; font-size: 0.8rem; }
.footer-links{ list-style: none; padding: 0;}
.footer-links li { margin-bottom: 12px; }
.footer-links a:hover { color: var(--accent); }

/* --- MODAL --- */
.modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.6); backdrop-filter: blur(5px); }
.modal-content { background-color: white; margin: 10% auto; padding: 0; width: 450px; border-radius: 4px; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); animation: slideDown 0.3s ease-out; }
.modal-header { padding: 10px 30px; border-bottom: 1px solid #edf2f7; display: flex; justify-content: space-between; align-items: center; }
.modal-body { padding: 40px; }
.close { color: #a0aec0; font-size: 28px; font-weight: bold; cursor: pointer; }
.close:hover { color: var(--primary); }
.auth-tabs { display: flex; margin-bottom: 30px; border-bottom: 1px solid #edf2f7; }
.auth-tab { flex: 1; text-align: center; padding: 10px; cursor: pointer; font-weight: 600; color: #718096; }
.auth-tab.active { color: var(--primary); border-bottom: 2px solid var(--accent); }
.form-full { width: 100%; padding: 12px; margin-bottom: 20px; border: 1px solid #e2e8f0; }
@keyframes slideDown { from {transform: translateY(-50px); opacity: 0;} to {transform: translateY(0); opacity: 1;} }

/* --- COMPONENTS (Tables, Lists) --- */
.table-wrap { overflow-x: auto; margin-top: 20px; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 15px; text-align: left; border-bottom: 1px solid #edf2f7; }
th { background: var(--primary); color: white; font-family: var(--font-body); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }

details { margin-bottom: 15px; border-bottom: 1px solid var(--border-subtle); padding-bottom: 15px; }
summary { font-family: var(--font-heading); font-size: 1.3rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; }
summary::after { content: '+'; font-size: 1.5rem; color: var(--accent); }
details[open] summary::after { content: '-'; }
details p { margin-top: 15px; color: #718096; }
.content-section{ padding: 30px 0; }
.entry-content { margin: auto; box-shadow: 0 0 20px color-mix(in srgb, var(--accent) 20%, transparent); padding: 8px 30px; border-radius: 12px; }

/* Grid */
/* .dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
} */

/* Card */
.dest-card {
    display: block;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    text-decoration: none;
    position: relative;
    transition: all 0.35s ease;
    border: 1px solid rgba(0,0,0,0.08);
}

/* Hover lift */
.dest-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Image */
.dest-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dest-card:hover .dest-img {
    transform: scale(1.08);
}

/* Gradient overlay */
.dest-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0) 55%,
        rgba(50,55,60,0.85) 100%
    );
}

/* Content */
.dest-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

/* Title */
.dest-overlay h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

/* CTA button */
.dest-price-tag {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Arrow */
.dest-price-tag::after {
    content: "→";
    font-size: 18px;
    color: #fff;
}

/* Hover CTA (gold) */
.dest-card:hover .dest-price-tag {
    background: var(--accent);
    border-color: var(--accent);
}

.dest-card:hover .dest-price-tag::after {
    color: #eee;
}

/* Shine effect (ONLY on hover) */
.dest-price-tag::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.8) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-20deg);
}

/* Trigger shine on hover */
.dest-card:hover .dest-price-tag::before {
    animation: dest-shine 0.8s ease forwards;
}

/* Keyframes */
@keyframes dest-shine {
    0% { left: -75%; }
    100% { left: 125%; }
}

/* Grid */
.pop-routes-section {
	padding: 40px 0;
    border: 1px solid #ececec;
}
.pop-routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pop-routes-header{
	margin-bottom: 30px;
}

/* Card */
.pop-routes-card {
    background: #fff;
    color: #eee;
    padding: 28px;
    border-radius: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    overflow: hidden;
	box-shadow: 0 2px 5px rgba(0,0,0,0.4);
}

/* Subtle gold border glow */
.pop-routes-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(120deg, transparent, rgba(212,175,55,0.5), transparent);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: 0.4s;
}

/* Hover luxury effect */
.pop-routes-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

.pop-routes-card:hover::before {
    opacity: 1;
}

/* Top row */
.pop-routes-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

/* Label */
.pop-routes-label {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
}

/* Tag */
.pop-routes-tag {
    font-size: 12px;
    font-weight: 600;
    color: var(--tag-color);
}

/* Route */
.pop-routes-route {
    font-size: 20px;
    font-weight: 600;
    margin: 10px 0 5px;
    color: var(--primary);
}

/* Type */
.pop-routes-type {
    font-size: 13px;
    color: #a0aec0;
    margin-bottom: 25px;
}

/* Bottom */
.pop-routes-bottom {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 18px;
}

/* Price */
.pop-routes-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent);
}

.pop-routes-old {
    font-size: 14px;
    color: #888;
    text-decoration: line-through;
    margin-left: 8px;
}

/* Button */
.pop-routes-btn {
    position: relative;
    padding: 10px 18px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #eee;
    background: var(--accent);
    border-radius: 30px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Shine effect on hover */
.pop-routes-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.8) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-20deg);
}

.pop-routes-btn:hover::before {
    animation: pop-routes-shine 0.8s ease forwards;
}

@keyframes pop-routes-shine {
    0% { left: -75%; }
    100% { left: 125%; }
}

/* Button hover */
.pop-routes-btn:hover {
    background: var(--accent-hover);
}

/* Section */
.cta-strip {
    background: var(--accent);
    padding: 40px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Subtle luxury gradient glow */
.cta-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(212,175,55,0.15), transparent 70%);
}

/* Heading */
.cta-strip h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #fff;
}

/* Text */
.cta-strip p {
    font-size: 16px;
    color: #eee;
    margin-bottom: 30px;
}

/* Button */
.cta-btn {
    position: relative;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Shine effect */
.cta-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.8) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-20deg);
}

/* Shine on hover */
.cta-btn:hover::before {
    animation: cta-shine 0.8s ease forwards;
}

@keyframes cta-shine {
    0% { left: -75%; }
    100% { left: 125%; }
}


/* Section */
.about-skyntravel {
    background: #fff;
    padding: 40px 0;
    overflow: hidden;
}

/* Layout */
.about-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT Visual */
.about-visual {
    position: relative;
    width: 450px;
    flex-shrink: 0;
}

/* Image */
.parallax-img {
    width: 100%;
    position: relative;
    z-index: 2;
    transition: transform 0.2s ease-out;
}

/* Flight Path */
.flight-path {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    z-index: 1;
}

.flight-path path {
    fill: none;
    stroke: var(--accent);
    stroke-width: 2;
    stroke-dasharray: 6 6;
    animation: dashMove 6s linear infinite;
}

/* Animated dashed line */
@keyframes dashMove {
    from { stroke-dashoffset: 0; }
    to { stroke-dashoffset: -200; }
}

/* Content */
.about-content {
    max-width: 520px;
}

/* Label */
.about-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    display: inline-block;
}

/* Title */
.about-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--accent);
}

/* Text */
.about-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 18px;
}

/* Button */
.about-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    background: var(--accent);
    color: #eee;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

/* Shine */
.about-btn::before {
    content: "";
    position: absolute;
    left: -75%;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.8), transparent);
    transform: skewX(-20deg);
}

.about-btn:hover::before {
    animation: shine 0.8s forwards;
}

@keyframes shine {
    100% { left: 125%; }
}

/* Responsive */
@media (max-width: 992px) {
    .about-wrap {
        flex-direction: column;
        text-align: center;
    }

    .about-visual {
        width: 300px;
    }
}

/* Car Rentals */

/* Section */
.car-section {
    background: var(--primary);
    padding: 100px 0;
}

/* Header */
.car-header h2 {
    color: #fff;
    margin-bottom: 10px;
}

.car-header p {
    color: #a0aec0;
    margin-bottom: 50px;
}

/* Grid */
.car-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Card */
.car-card {
    background: #eee;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid color-mix(in srgb, var(--accent) 60%, transparent);
    position: relative;
}

/* Luxury border glow */
.car-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(120deg, transparent, color-mix(in srgb, var(--accent) 20%, transparent), transparent);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: 0.4s;
}

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

/* Hover */
.car-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* Image */
.car-img-wrap {
    overflow: hidden;
}

.car-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.car-card:hover .car-img {
    transform: scale(1.08);
}

/* Body */
.car-body {
    padding: 20px;
}

/* Category */
.car-cat {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
}

/* Title */
.car-title {
    color: var(--accent);
    margin: 8px 0 10px;
    font-size: 18px;
}

/* Meta */
.car-meta {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 18px;
}

/* Bottom */
.car-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Price */
.car-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
}

.car-price small {
    font-size: 12px;
    color: #94a3b8;
}

/* Button */
.car-btn {
    position: relative;
    padding: 8px 18px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    text-decoration: none;
    overflow: hidden;
    transition: 0.3s;
}

/* Shine */
.car-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.7),
        transparent
    );
    transform: skewX(-20deg);
}

.car-btn:hover::before {
    animation: car-shine 0.8s forwards;
}

@keyframes car-shine {
    100% { left: 125%; }
}

/* --- Contact Page --- */
/* Description */
.contact-desc {
    margin-bottom: 30px;
    color: #718096;
}

/* Form box */
.contact-form-box {
    background: #fff;
    padding: 30px;
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Contact card */
.contact-card {
    background: var(--bg-light);
    padding: 25px;
    border-left: 4px solid var(--accent);
    margin-bottom: 30px;
}

.contact-card p {
    margin-bottom: 10px;
    color: #555;
}

.contact-card i {
    color: var(--accent);
    width: 20px;
    margin-right: 8px;
}

/* Social */
.contact-social h3 {
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    font-size: 1.3rem;
    color: var(--primary);
    transition: 0.3s;
}

.social-icons a:hover {
    color: var(--accent);
}

/* --- CONTACT FORM 7 SPECIFIC FIXES --- */

.wpcf7-form label br {
    display: none;
}

/* 2. Make Labels block-level and styled like your Search Form labels */
.wpcf7-form label {
    display: block;
    margin-bottom: 8px;
    color: #718096;
    font-family: var(--font-body); /* Uses your theme font */
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* 3. Force Inputs and Textarea to be Full Width (Block) */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    display: block;
    width: 100%; /* Full width */
    padding: 12px 15px;
    border: 1px solid var(--border-subtle); /* Matches your theme border */
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--primary);
    background-color: #fff;
    transition: 0.3s;
    box-sizing: border-box; /* Ensures padding doesn't break width */
}

/* 4. Focus State (Gold Border) */
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* 5. Style the Submit Button to match your .btn-gold class */
.wpcf7-submit {
    display: block;
    width: 100%;
    background-color: var(--accent) !important;
    color: white !important;
    padding: 14px 32px;
    border: none;
    border-radius: 0; /* Or var(--radius) if you use rounded corners */
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.4s ease;
}

.wpcf7-submit:hover {
    background-color: var(--accent-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.grid-cards,
.flight-routes-grid{
	display: grid; 
	grid-template-columns: repeat(3, 1fr); 
	gap: 30px;
}
.why-us-grid{display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; text-align: center;}

/* MOBILE HEADER FIX */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary);
}

/* CTA visibility */
.desktop-cta {
    display: flex;
    font-size: 9px;
    padding: 2px 15px;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: visible; /* required for waves */
    color: var(--accent);
    border: 2px solid var(--accent);
    border-radius: 50px;
    line-height: 1.4;
    gap: 8px;
    z-index: 1;
    background: #fff;
}

/* Prevent horizontal scroll globally (important fix) */
body {
    overflow-x: hidden;
}

/* Text styling */
.desktop-cta span {
    font-size: 1.2rem;
}

.desktop-cta span:first-child {
    font-size: 10px;
}

.desktop-cta > div:first-child {
    color: var(--secondary);
    border-radius: 50%;
    background: color-mix(in srgb, var(--secondary) 5%, transparent);
    padding: 6px 8px;
    line-height: 1.4;
}

.desktop-cta > div:nth-child(2){
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

/* Keep content above */
.desktop-cta * {
    position: relative;
    z-index: 2;
}


.mobile-cta { display: none; }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .dest-grid, .journal-grid, .car-grid, .search-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.5rem; }
	.nav-wrapper a.custom-logo-link img {
    max-width: 150px;
}
    .main-nav { display: none; } /* Mobile Menu implementation needed for full prod */
    .footer-grid { grid-template-columns: 1fr; }
	.grid-cards,.flight-routes-grid,.why-us-grid{ grid-template-columns: 1fr }
	.nav-wrapper {
        position: relative;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .desktop-cta {
        display: none;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        display: none;
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid var(--border-subtle);
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav.active {
        display: flex;
    }

    .mobile-cta {
        display: block;
        margin-top: 20px;
        text-align: center;
    }

    .logo {
        font-size: 1.6rem;
    }
	.hero{
		height: 40dvh;
		align-items: start;
	}
	.container{
		padding:0 15px;
	}
}

/* TRAIN CARD */
.train-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    border-bottom: 2px solid var(--accent);
    gap: 20px;
    transition: 0.3s;
	background: #fafafa;
	border-radius: 12px;
	transition: all .3s ease-in;
}

.train-card:hover {
    box-shadow: 0 5px 20px color-mix(in srgb, var(--primary) 10%, transparent);
}

/* ROUTE */
.train-route {
    display: flex;
    align-items: center;
    flex: 2;
}

.train-col h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.train-col span {
    font-size: 1rem;
    color: #718096;
    font-style: italic;
}

.train-arrow {
    flex: 0 0 80px;
    text-align: center;
    font-size: 1.5rem;
    color: #cbd5e0;
}

/* META */
.train-meta {
    text-align: right;
    min-width: 150px;
}

.train-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 600;
}

.train-time {
    font-size: 0.8rem;
    color: #718096;
    display: block;
    margin-bottom: 10px;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {

    .train-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .train-route {
        width: 100%;
        justify-content: space-between;
    }

    .train-arrow {
        display: none;
    }

    .train-meta {
        width: 100%;
        text-align: left;
    }

    .train-price {
        font-size: 1.3rem;
    }

    .train-col h3 {
        font-size: 1.2rem;
    }
}
/* LUXURY SECTION BG */
.luxury-section {
    background: var(--bg-light);
}

/* LUXURY CARD */
.luxury-card {
    background: white;
    padding: 50px 40px;
    border: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
    transition: 0.4s;
}

/* gold top line */
.luxury-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
}

/* hover effect */
.luxury-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

/* ICON */
.class-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 20px;
}

/* TEXT */
.luxury-card h3 {
    margin-bottom: 15px;
}

.luxury-card p {
    color: #555;
    font-size: 0.95rem;
}

/* SUSTAINABILITY */
.sustainability-block {
    margin-top: 40px;
}

.sustainability-block i {
    font-size: 4rem;
    color: var(--accent);
}

/* MOBILE */
@media (max-width: 768px) {
    .luxury-card {
        padding: 30px;
    }

    .sustainability-block {
        margin-top: 20px;
    }
}
/* LUXURY CTA */
.cta-luxury {
    position: relative;
    padding: 120px 0;
    margin-top: 30px;
    color: white;
    text-align: center;
    background:
        linear-gradient(rgba(11,17,32,0.65), rgba(11,17,32,0.65)),
        url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?q=80&w=1600&auto=format&fit=crop') center/cover;
}

.cta-luxury h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-luxury p {
    max-width: 650px;
    margin: 0 auto 35px;
    font-weight: 300;
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
}

/* subtle glow effect */
.cta-luxury .btn {
    padding: 16px 40px;
    font-size: 0.85rem;
    box-shadow: 0 10px 30px color-mix( in srgb, var(--primary) 40%, transparent);
}

/* MOBILE */
@media (max-width: 768px) {
    .cta-luxury {
        padding: 80px 0;
    }

    .cta-luxury h2 {
        font-size: 2rem;
    }
	.tabs{
		gap: 20px;
	}
}

/* ================================
   GRID UTILITY SYSTEM (SkynTravel)
================================ */

/* BASE GRID */
.grid {
    display: grid;
    gap: 30px;
}

/* ================================
   GAP UTILITIES
================================ */
.gap-0  { gap: 0; }
.gap-10 { gap: 10px; }
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }
.gap-40 { gap: 40px; }
.gap-50 { gap: 50px; }

/* ================================
   DESKTOP GRID (DEFAULT ≥1025px)
================================ */
.grid-1 { grid-template-columns: repeat(1, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }

/* ================================
   TABLET (≤1024px)
================================ */
@media (max-width: 1024px) {
    .md-grid-1 { grid-template-columns: repeat(1, 1fr); }
    .md-grid-2 { grid-template-columns: repeat(2, 1fr); }
    .md-grid-3 { grid-template-columns: repeat(3, 1fr); }
    .md-grid-4 { grid-template-columns: repeat(4, 1fr); }
    .md-grid-5 { grid-template-columns: repeat(5, 1fr); }
    .md-grid-6 { grid-template-columns: repeat(6, 1fr); }
}

/* ================================
   MOBILE (≤768px)
================================ */
@media (max-width: 768px) {
    .sm-grid-1 { grid-template-columns: repeat(1, 1fr); }
    .sm-grid-2 { grid-template-columns: repeat(2, 1fr); }
    .sm-grid-3 { grid-template-columns: repeat(3, 1fr); }
    .sm-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ================================
   EXTRA SMALL (≤480px)
================================ */
@media (max-width: 480px) {
    .xs-grid-1 { grid-template-columns: repeat(1, 1fr); }
    .xs-grid-2 { grid-template-columns: repeat(2, 1fr); }
}

/* ================================
   AUTO GRID (SMART RESPONSIVE)
================================ */
.grid-auto {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* ================================
   ALIGNMENT UTILITIES
================================ */
.items-center { align-items: center; }
.items-start  { align-items: start; }
.items-end    { align-items: end; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: start; }
.justify-end { justify-content: end; }

/* ================================
   COLUMN SPAN (ADVANCED)
================================ */
.col-span-1 { grid-column: span 1; }
.col-span-2 { grid-column: span 2; }
.col-span-3 { grid-column: span 3; }
.col-span-4 { grid-column: span 4; }
.col-span-5 { grid-column: span 5; }
.col-span-6 { grid-column: span 6; }

/* ================================
   RESPONSIVE COLUMN SPAN
================================ */
@media (max-width: 1024px) {
    .md-col-span-1 { grid-column: span 1; }
    .md-col-span-2 { grid-column: span 2; }
    .md-col-span-3 { grid-column: span 3; }
}

@media (max-width: 768px) {
    .sm-col-span-1 { grid-column: span 1; }
    .sm-col-span-2 { grid-column: span 2; }
}

/* ================================
   ROW SPAN (OPTIONAL)
================================ */
.row-span-1 { grid-row: span 1; }
.row-span-2 { grid-row: span 2; }
.row-span-3 { grid-row: span 3; }

.mobile-cta-strip {
    display: none;
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background-color: var(--accent, #ffd700);
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 6px 12px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 9999;
    font-size: 24px;
    line-height: 1.4;
    align-items: center;
	justify-content: center;
	gap: 12px;
}

.mobile-cta-strip div:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-cta-strip div:first-child svg {
    width: 35px;
    height: 35px;
	transform-origin: center;
	animation: pulse 1.5s linear infinite;
}

@keyframes pulse{
	0% {
		transform: scale(1) rotate(0);
	}
	25% {
		transform: scale(1.25) rotate(-5deg);
	}
	50% {
		transform: scale(1.4) rotate(-12deg);
	}
	75% {
		transform: scale(1.25) rotate(-5deg);
	}
	100% {
		transform: scale(1) rotate(0deg);
	}
}


.mobile-cta-strip div:nth-child(2) {
    display: flex;
    flex-flow: column;
    align-items: anchor-center;
    justify-content: center;
}

.mobile-cta-strip span:first-child {
    font-size: 1rem;
}

/* Show only on screens smaller than 768px */
@media (max-width: 768px) {
    .mobile-cta-strip {
        display: flex;
    }
}

/* Section */
.faq-section {
    background: #f9fafb;
}

/* Title */
.faq-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

/* Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: start; /* FIX equal height */
}

/* Mobile */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Card */
.faq-item {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 0;
    background: #fff;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
	margin: 0;
}

/* Hover */
.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* Question */
.faq-item summary {
    font-weight: 600;
    list-style: none;
    position: relative;
    padding: 15px;
	background: color-mix( in srgb, var(--accent) 5%, transparent);
	color: var(--accent);
}

/* Remove default arrow */
.faq-item summary::-webkit-details-marker {
    display: none;
}

/* Custom icon */
.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 25px;
    top: 0px;
    font-size: 30px;
    transition: all 0.3s ease;
    transform-origin: center;
    display: flex;
    height: 100%;
    align-items: center;
    line-height: 1.4;
}

/* Open icon */
.faq-item[open] summary::after {
    content: "–";
    transform: rotate(180deg);
}

/* Answer animation */
.faq-item p {
    max-height: 0;
    overflow: hidden;
	padding: 15px;
    margin: 0;
    color: #555;
    transition: max-height 0.4s ease, margin 0.3s ease;
}

/* Open state */
.faq-item[open] p {
    max-height: 200px;
    margin-top: 10px;
}

/* Active styling */
.faq-item[open] {
    border-color: var(--accent);
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}