/*
Theme Name: SkynTravel
Theme URI: https://skyntravel.com
Author: SkynTravel Dev
Description: A premium, SEO-optimized travel theme for Car Rentals. 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;   }

.hero-title {
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    white-space: nowrap;
}
 
.hero-title h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 62px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: -2px;
    color: #fff;

    text-shadow:
        0 3px 8px rgba(0,0,0,.45),
        0 8px 25px rgba(0,0,0,.25);
}

.hero-title .accent {
    width: 55px;
    height: 3px;
    margin: 18px auto 0;
    background: #D71938;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(215,25,56,.5);
}

/* Mobile */
@media (max-width: 768px) {
    .hero-title {
        top: 100px;
        width: 100%;
        white-space: normal;
        padding: 0 15px;
    }

 
    .hero-title .eyebrow::before,
    .hero-title .eyebrow::after {
        width: 25px;
    }

    .hero-title h1 {
        font-size: 34px;
        line-height: 1.15;
        letter-spacing: -1px;
        font-size: 27px !important;
        font-weight:550 !important;
    }

    .hero-title .accent {
        margin-top: 14px;
    }
}
/* Desktop & Laptop */
@media (min-width: 769px) {
    .hero-text {
        margin-top: -45px;
    }
   

    .search-container {
        margin-top: -200px !important;
    }
}

/* Mobile / Phones */
@media (max-width: 768px) {
    .hero-text {
        margin-top: -50px;
       
    }
   

    .search-container {
        margin-top: -160px !important;
    }
}

/* --- 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; }
.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;
}

/* 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{
	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,.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;
	}
}

/* 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;
    }
}

/* ================================
   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);
}

/* --- AUTocomplete (RapidAPI location suggestions) --- */
.skyn-autocomplete {
    position: relative;
}

.skyn-autocomplete-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    margin: 0;
    padding: 0;
    list-style: none;
    max-height: 240px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    display: none;
}

.skyn-autocomplete-list.open {
    display: block;
}

.skyn-autocomplete-item {
    display: block;
    padding: 10px 14px;
    cursor: pointer;
    border-bottom: 1px solid var(--border-subtle);
}

.skyn-autocomplete-item:last-child {
    border-bottom: none;
}

.skyn-autocomplete-item .skyn-ac-title {
    display: block;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
    font-family: var(--font-body);
}

.skyn-autocomplete-item .skyn-ac-sub {
    display: block;
    font-size: 0.75rem;
    color: #718096;
}

.skyn-autocomplete-item:hover,
.skyn-autocomplete-item.active {
    background: var(--bg-light);
}

.skyn-autocomplete-item:hover .skyn-ac-title,
.skyn-autocomplete-item.active .skyn-ac-title {
    color: var(--accent);
}

/* ==========================================================================
   CAR SEARCH / RESULTS PAGE
   ========================================================================== */
.skyn-search-page {
    background: #f5f8fc;
    padding-bottom: 60px;
    color: #172b4d;
}

.skyn-results-breadcrumb {
    background: #fff;
    border-bottom: 1px solid #e6edf5;
    padding: 12px 0;
    font-size: 12px;
    color: #7c8da5;
}

.skyn-results-breadcrumb a {
    color: #176fd1;
    text-decoration: none;
}

.skyn-results-breadcrumb span {
    margin: 0 7px;
}

/* Modify Search */
.skyn-modify-search {
    background: #fff;
    border: 1px solid #e1e9f2;
    border-radius: 10px;
    margin: 20px 0 24px;
    box-shadow: 0 3px 12px rgba(28, 60, 90, 0.06);
    overflow: visible;
}

.skyn-modify-title {
    padding: 12px 18px;
    border-bottom: 1px solid #edf1f6;
    font-size: 14px;
}

.skyn-search-icon {
    color: #0878d1;
    margin-right: 7px;
}

.skyn-search-form {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr 1fr auto;
    gap: 12px;
    padding: 15px;
    align-items: end;
}

.skyn-same-row {
    grid-column: 1 / -1;
}

.skyn-search-row label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #7b8ba0;
    margin-bottom: 6px;
}

.skyn-same-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: none;
    color: #52657c;
    cursor: pointer;
    margin: 0 !important;
}

.skyn-same-label input {
    width: auto;
    accent-color: #0878d1;
}

.skyn-field-value {
    position: relative;
    height: 42px;
    border: 1px solid #dfe7ef;
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    background: #fff;
}

.skyn-field-value span {
    color: #1677c9;
    margin-right: 7px;
}

.skyn-field-value input {
    width: 100%;
    border: 0;
    outline: 0;
    font-size: 12px;
    color: #27384e;
    background: transparent;
}

.skyn-field-value input[type="datetime-local"] {
    color-scheme: light;
}

/* The autocomplete wrapper div is inserted as an empty sibling of the input;
   inside these flex rows it collapses to 0 width. Anchor the dropdown list to
   the whole field box instead, and let it overflow the "Modify Your Search"
   card (the card is overflow: visible so the dropdown is not clipped). */
.skyn-field-value .skyn-autocomplete {
    position: static;
}

.skyn-field-value .skyn-autocomplete-list {
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    z-index: 1100;
}

.skyn-search-submit {
    display: flex;
    align-items: flex-end;
}

.skyn-search-btn {
    height: 42px;
    border: 0;
    border-radius: 6px;
    background: #0878d1;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 0 18px;
    cursor: pointer;
    width: 100%;
}

.skyn-search-btn:hover {
    background: #0565b0;
}

/* Main layout */
.skyn-results-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

/* Filters */
.skyn-filter-sidebar {
    background: #fff;
    border: 1px solid #e1e8f0;
    border-radius: 9px;
    overflow: hidden;
}

.skyn-filter-heading {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #edf1f5;
    font-size: 14px;
}

.skyn-filter-heading a {
    font-size: 10px;
    color: #0878d1;
    text-decoration: none;
}

.skyn-filter-section {
    padding: 15px;
    border-bottom: 1px solid #edf1f5;
}

.skyn-filter-section:last-child {
    border-bottom: 0;
}

.skyn-filter-section h4 {
    font-size: 11px;
    margin: 0 0 12px;
    text-transform: uppercase;
    color: #52657c;
    letter-spacing: 0.3px;
}

.skyn-filter-section label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #64758b;
    margin: 9px 0;
    cursor: pointer;
}

.skyn-filter-section input[type="checkbox"] {
    width: 13px;
    height: 13px;
    accent-color: #0878d1;
}

.skyn-price-range input {
    width: 100%;
    accent-color: #0878d1;
}

.skyn-price-values {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #7c8ca0;
    margin-top: 7px;
}

/* Results topbar */
.skyn-results-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.skyn-results-topbar h1 {
    font-size: 18px;
    margin: 0 0 3px;
    color: #172b4d;
}

.skyn-results-topbar p {
    font-size: 11px;
    color: #7d8da2;
    margin: 0;
}

.skyn-sort {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #738399;
}

.skyn-sort form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.skyn-sort select {
    height: 34px;
    border: 1px solid #dce5ee;
    border-radius: 5px;
    padding: 0 10px;
    background: #fff;
    font-size: 11px;
    color: #35475d;
}

/* Car card */
.skyn-car-card {
    background: #fff;
    border: 1px solid #dfe7ef;
    border-radius: 9px;
    margin-bottom: 12px;
    min-height: 190px;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(35, 67, 100, 0.04);
    transition: 0.2s ease;
}

.skyn-car-card:hover {
    box-shadow: 0 7px 20px rgba(35, 67, 100, 0.10);
    transform: translateY(-1px);
}

.skyn-car-image {
    position: relative;
    background: #f7f9fb;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 190px;
    padding: 22px 15px;
}

.skyn-car-image img {
    width: 100%;
    height: 145px;
    object-fit: contain;
    display: block;
}

.skyn-car-badge {
    position: absolute;
    left: 10px;
    top: 10px;
    background: #ff8a00;
    color: #fff;
    font-size: 8px;
    font-weight: 800;
    padding: 5px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.skyn-image-label {
    position: absolute;
    right: 9px;
    bottom: 8px;
    background: #384554;
    color: #fff;
    border-radius: 3px;
    padding: 3px 6px;
    font-size: 8px;
}

.skyn-no-image {
    color: #8c9aaa;
    font-size: 11px;
    text-align: center;
}

/* Car information */
.skyn-car-info {
    padding: 16px 18px;
}

.skyn-car-main {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.skyn-car-title-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.skyn-car-title-row h2 {
    margin: 0;
    font-size: 16px;
    line-height: 1.3;
}

.skyn-car-title-row h2 a {
    color: #172b4d;
    text-decoration: none;
}

.skyn-supplier {
    font-size: 10px;
    color: #8290a2;
    margin-top: 4px;
}

.skyn-rating {
    white-space: nowrap;
    background: #edf7ff;
    border-radius: 5px;
    padding: 5px 8px;
    height: fit-content;
    color: #1472c2;
    font-size: 11px;
}

.skyn-rating span {
    color: #f7a900;
}

.skyn-rating small {
    color: #8190a1;
}

/* Specs */
.skyn-car-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 12px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #edf1f5;
}

.skyn-car-specs span {
    font-size: 10px;
    color: #65778d;
}

.skyn-car-specs strong {
    color: #1476c9;
    margin-right: 3px;
}

/* Features */
.skyn-car-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 9px;
    color: #687b90;
}

.skyn-car-features span:first-child {
    color: #18884a;
}

/* Bottom */
.skyn-car-bottom {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-top: 12px;
}

.skyn-policy {
    font-size: 9px;
    color: #16834b;
}

.skyn-green-dot {
    width: 6px;
    height: 6px;
    background: #22a45a;
    display: inline-block;
    border-radius: 50%;
    margin-right: 4px;
}

.skyn-price-box {
    display: flex;
    align-items: center;
    gap: 7px;
}

.skyn-price strong {
    font-size: 19px;
    color: #0872ca;
}

.skyn-price-box small {
    font-size: 9px;
    color: #8997a7;
    align-self: flex-end;
    margin-bottom: 4px;
}

.skyn-view-btn {
    background: #0878d1;
    color: #fff !important;
    padding: 8px 14px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 700;
    text-decoration: none !important;
    margin-left: 8px;
}

.skyn-view-btn:hover {
    background: #0565b0;
}

/* No results */
.skyn-no-results {
    background: #fff;
    border: 1px solid #e1e8f0;
    border-radius: 8px;
    padding: 50px;
    text-align: center;
}

.skyn-no-results h2 {
    margin: 0 0 8px;
    font-size: 20px;
}

.skyn-no-results p {
    margin: 0;
    color: #7b8a9d;
    font-size: 13px;
}

/* Pagination */
.skyn-pagination {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}

.skyn-pagination ul {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.skyn-pagination li {
    margin: 0;
}

.skyn-pagination a,
.skyn-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid #dfe7ef;
    background: #fff;
    border-radius: 4px;
    color: #62748a;
    font-size: 10px;
    text-decoration: none;
}

.skyn-pagination .current {
    background: #0878d1;
    border-color: #0878d1;
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .skyn-search-form {
        grid-template-columns: repeat(2, 1fr);
    }
    .skyn-results-layout {
        grid-template-columns: 180px minmax(0, 1fr);
    }
    .skyn-car-card {
        grid-template-columns: 180px minmax(0, 1fr);
    }
    .skyn-car-image img {
        height: 125px;
    }
}

@media (max-width: 767px) {
    .skyn-search-form {
        grid-template-columns: 1fr;
    }
    .skyn-results-layout {
        grid-template-columns: 1fr;
    }
    .skyn-filter-sidebar {
        display: none;
    }
    .skyn-results-topbar {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }
    .skyn-car-card {
        grid-template-columns: 1fr;
    }
    .skyn-car-image {
        min-height: 190px;
    }
    .skyn-car-image img {
        height: 150px;
    }
    .skyn-car-info {
        padding: 14px;
    }
    .skyn-car-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
    .skyn-price-box {
        width: 100%;
        justify-content: flex-end;
    }
    .skyn-car-title-row {
        flex-direction: column;
    }
    .skyn-rating {
        align-self: flex-start;
    }
}
/* ==========================================================================
   SkynTravel � theme colors (navy / gold) overrides + booking modal + thank-you
   ========================================================================== */
.skyn-search-page { color: var(--primary); }
.skyn-results-breadcrumb a { color: var(--accent); }
.skyn-search-icon { color: var(--accent); }
.skyn-same-label input { accent-color: var(--accent); }
.skyn-search-btn, .skyn-search-submit { background: var(--accent);   border-color: var(--accent); }
.skyn-search-btn:hover, .skyn-search-submit:hover { background: var(--accent-hover); }
.skyn-view-btn { background: var(--primary); color: #fff; }
.skyn-view-btn:hover { background: var(--secondary); }
.skyn-book-btn { background: var(--accent); color: white; margin-left: 8px; }
.skyn-book-btn:hover { background: var(--accent-hover); }
.skyn-car-badge { background: var(--secondary); color: #fff; }
.skyn-image-label { background: rgba(0,0,0,.55); color: #fff; }
.skyn-price { color: var(--accent); font-weight: 700; }
.skyn-rating { color: var(--accent); }
.skyn-green-dot { color: var(--secondary); }
.skyn-pagination a { color: var(--primary); }
.skyn-pagination .current { background: var(--accent); color: #fff; }
.skyn-pagination .current a { color: #fff; }
input[type=range] { accent-color: var(--accent); }

/* Booking modal */
.skyn-book-modal {
    position: fixed; inset: 0;
    background: rgba(11,17,32,.65);
    display: flex; align-items: center; justify-content: center;
    z-index: 2000; padding: 20px;
    backdrop-filter: blur(3px);
}
.skyn-book-modal[hidden] { display: none; }
.skyn-book-modal-content {
    background: #fff;
    border-radius: 14px;
    width: 100%; max-width: 480px;
    box-shadow: 0 30px 60px rgba(11,17,32,.28);
    position: relative;
    max-height: 92vh; overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.skyn-book-modal-header {
    background: var(--primary);
    padding: 18px 22px;
    position: relative;
    display: flex; align-items: center; justify-content: space-between;
}
.skyn-book-modal-header h3 {
    margin: 0; color: #fff; font-family: var(--font-body);
    font-size: 1.05rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
}
.skyn-book-close {
    background: rgba(255,255,255,.15); border: none; color: #fff;
    width: 30px; height: 30px; border-radius: 50%;
    font-size: 20px; line-height: 1; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s;
}
.skyn-book-close:hover { background: var(--secondary); }
.skyn-book-form {
    display: flex; flex-direction: column; align-items: stretch; gap: 14px;
    padding: 20px 22px 24px;
}
.skyn-book-form .skyn-same-row { width: 100%; }
.skyn-form-row label {
    display: block; font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .5px; color: #52657c; margin-bottom: 5px;
}
.skyn-form-row input {
    width: 100%; padding: 11px 13px;
    border: 1px solid #dbe4ee; border-radius: 7px;
    font-family: var(--font-body); font-size: 14px; color: var(--primary);
    background: #fbfcfe;
    transition: border-color .2s, box-shadow .2s, background .2s;
}
.skyn-form-row input:focus {
    outline: none; border-color: var(--accent); background: #fff;
    box-shadow: 0 0 0 3px rgba(212,175,55,.16);
}
.skyn-form-row input::placeholder { color: #a3b0bd; }
.skyn-book-submit {
    width: 100%; background: var(--accent); color: #fff;
    border: none; padding: 14px 32px;
    font-family: var(--font-body); font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px; font-size: .8rem;
    border-radius: 7px; cursor: pointer; margin-top: 4px;
    transition: background .3s, transform .2s;
}
.skyn-book-submit:hover { background: var(--accent-hover); transform: translateY(-1px); }

/* "Book Now" button on each car result card */
.skyn-book-btn {
    background: var(--accent); color: #fff;
    border: none; padding: 8px 14px; border-radius: 5px;
    font-size: 10px; font-weight: 700; font-family: var(--font-body);
    text-transform: uppercase; letter-spacing: .5px;
    cursor: pointer; margin-left: 8px;
    transition: background .2s, transform .2s;
}
.skyn-book-btn:hover { background: var(--accent-hover); transform: translateY(-1px); }

/* Thank-you page */
.skyn-thankyou-page { padding: 40px 0; }
.skyn-thankyou-card { background: #fff; border-radius: 12px; padding: 32px; box-shadow: 0 3px 12px rgba(11,17,32,.06); }
.skyn-thankyou-head { text-align: center; margin-bottom: 24px; }
.skyn-thankyou-icon { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: var(--accent); color: white; font-size: 28px; margin-bottom: 12px; }
.skyn-thankyou-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.skyn-thankyou-section h2 { font-size: 1rem; border-bottom: 2px solid var(--accent); display: inline-block; padding-bottom: 4px; margin-bottom: 12px; }
.skyn-thankyou-meta li { margin-bottom: 6px; }
.skyn-thankyou-car { display: flex; gap: 14px; align-items: center; }
.skyn-thankyou-car img { width: 140px; height: 90px; object-fit: cover; border-radius: 8px; }
.skyn-thankyou-supplier { color: var(--accent); font-weight: 700; }
.skyn-thankyou-rating { color: var(--accent); font-weight: 700; }
.skyn-thankyou-price { font-size: 1.25rem; font-weight: 700; color: var(--primary); text-align: right; }
.skyn-thankyou-reference { text-align: center; font-size: 13px; color: #52657c; border-top: 1px dashed var(--border-subtle); padding-top: 16px; }
@media (max-width: 768px) { .skyn-thankyou-grid { grid-template-columns: 1fr; } }

 
/* =========================================================
   POPULAR DESTINATIONS
   ========================================================= */

.popular-destinations {
    padding: 95px 0 110px;
    background: #ffffff;
}

.destination-heading {
    margin-bottom: 48px;
    text-align:center;
}

.destination-eyebrow {
    display: block;
    margin-bottom: 10px;
    color: #0076c8;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    line-height: 1.2;
}

.destination-heading h2 {
    margin: 0;
    color: #061a33;
    font-size: clamp(42px, 4.3vw, 64px);
    font-weight: 800;
    line-height: .98;
    letter-spacing: -2px;
}


/* GRID
--------------------------------------------------------- */

.destinations-grid {
    display: grid;
    grid-template-columns: 1.75fr 0.95fr 0.95fr;
    grid-template-rows: 256px 256px;
    gap: 16px;
}


/* CARDS
--------------------------------------------------------- */

.destination-card {
    position: relative;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    border-radius: 13px;
    background: #123b63;
}

.destination-card-featured {
    grid-row: 1 / 3;
}

.destination-card-link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
}


/* IMAGE
--------------------------------------------------------- */

.destination-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .45s ease;
}

.destination-card:hover .destination-image {
    transform: scale(1.05);
}


/* DARK BLUE GRADIENT
--------------------------------------------------------- */

.destination-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to bottom,
            rgba(0, 32, 63, .02) 15%,
            rgba(0, 35, 70, .20) 40%,
            rgba(0, 38, 76, .92) 100%
        );
}


/* CONTENT
--------------------------------------------------------- */

.destination-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.destination-card-featured .destination-content {
    padding: 17px 32px 30px;
}


/* TRENDING
--------------------------------------------------------- */

.destination-top {
    display: flex;
    align-items: center;
    gap: 8px;
}

.destination-trending {
display: inline-flex;
    align-items: center;
    min-height: 25px;
    padding: 0 10px;
    border-radius: 5px;
    background: #cd1b35;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .3px;
}

.destination-rating {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.destination-star {
    color: #cd1b35;
    margin-right: 3px;
}


/* TEXT
--------------------------------------------------------- */

.destination-bottom {
    position: relative;
}

.destination-bottom h3 {
    margin: 0 0 5px;
    color: #fff;
    font-size: 25px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.5px;
}

.destination-card-featured .destination-bottom h3 {
    font-size: 48px;
    margin-bottom: 7px;
}

.destination-description {
    max-width: 400px;
    margin: 0 0 12px;
    color: rgba(255,255,255,.88);
    font-size: 14px;
    line-height: 1.4;
}


/* PRICE
--------------------------------------------------------- */

.destination-price {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.destination-price span {
    color: rgba(255,255,255,.9);
    font-size: 11px;
}

.destination-price strong {
    color: #cd1b35;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.1;
}

.destination-price small {
    color: #fff;
    font-size: 11px;
    font-weight: 500;
}


/* ARROWS
--------------------------------------------------------- */

.destination-arrow {
    position: absolute;
    right: 0;
    bottom: 2px;
    color: #fff;
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
    transition: transform .25s ease;
}

.destination-card:hover .destination-arrow {
    transform: translateX(5px);
}


/* FEATURED EXPLORE BUTTON
--------------------------------------------------------- */

.destination-explore {
    position: absolute;
    right: 0;
    bottom: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 8px;
    background: #cd1b35c7;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    transition: background .25s ease, transform .25s ease;
}

.destination-explore span {
    font-size: 20px;
    line-height: 12px;
}

.destination-card:hover .destination-explore {
    background: #cd1b35;
    transform: translateX(3px);
}


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

@media (max-width: 900px) {

    .popular-destinations {
        padding: 35px 0 0px;
    }

    .destination-heading {
        margin-bottom: 35px;
    }

    .destinations-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 340px 220px 220px;
    }

    .destination-card-featured {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .destination-card-featured .destination-bottom h3 {
        font-size: 42px;
    }

}


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

@media (max-width: 600px) {

    .popular-destinations {
        padding: 55px 0 65px;
    }

    .destination-heading {
        margin-bottom: 27px;
    }

    .destination-eyebrow {
        font-size: 11px;
        letter-spacing: 2.5px;
        margin-bottom: 8px;
    }

    .destination-heading h2 {
        font-size: 39px;
        line-height: .98;
        letter-spacing: -1.5px;
    }

    .desktop-break {
        display: none;
    }

    .destinations-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 330px 210px 210px;
        gap: 10px;
    }

    .destination-card {
        border-radius: 10px;
    }

    .destination-card-featured {
        grid-column: 1 / -1;
    }

    .destination-content {
        padding: 14px;
    }

    .destination-card-featured .destination-content {
        padding: 15px 18px 20px;
    }

    .destination-card-featured .destination-bottom h3 {
        font-size: 38px;
    }

    .destination-bottom h3 {
        font-size: 21px;
    }

    .destination-description {
        font-size: 12px;
        max-width: 280px;
        margin-bottom: 9px;
    }

    .destination-price strong {
        font-size: 18px;
    }

    .destination-price span {
        font-size: 10px;
    }

    .destination-trending {
        min-height: 22px;
        padding: 0 8px;
        font-size: 8px;
    }

    .destination-rating {
        font-size: 11px;
    }

    .destination-arrow {
        font-size: 23px;
    }

    .destination-explore {
        padding: 10px 13px;
        font-size: 11px;
    }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    .destination-heading h2 {
        font-size: 34px;
    }

    .destinations-grid {
        grid-template-rows: 300px 190px 190px;
        gap: 8px;
    }

    .destination-card-featured .destination-bottom h3 {
        font-size: 34px;
    }

    .destination-bottom h3 {
        font-size: 18px;
    }

    .destination-content {
        padding: 12px;
    }

    .destination-card-featured .destination-content {
        padding: 13px 15px 16px;
    }

}
 
/* =========================================================
   SKY N TRAVEL — SIMPLE & CLEAN CONTENT
   Targets:
   .content-section > .container > .entry-content
========================================================= */


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

.content-section {
    padding: 45px 0 55px;
    background: #fff;
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.content-section .entry-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 25px 30px;

    background: #fff;

    /* No side border */
    border: none;
    border-radius: 0;

    /* Very light shadow */
    box-shadow: none;
}


/* =========================================================
   BODY TEXT
========================================================= */

.content-section .entry-content p {
    max-width: 820px;
    margin: 0 auto 15px;

    color: #5b6472;

    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.7;

    letter-spacing: 0;
}

.content-section .entry-content p:last-child {
    margin-bottom: 0;
}


/* Strong */

.content-section .entry-content strong {
    color: var(--primary);
    font-weight: 600;
}


/* Links */

.content-section .entry-content a {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
    border: none;
}

.content-section .entry-content a:hover {
    color: var(--accent);
}


/* =========================================================
   MAIN HEADING
========================================================= */

.content-section .entry-content > h2:first-child {
    max-width: 820px;
    margin: 0 auto 20px;
    padding: 0;

    color: var(--primary);

    font-family: var(--font-heading);
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 600;
    line-height: 1.15;

    letter-spacing: 0;
}


/* Remove eyebrow */

.content-section .entry-content > h2:first-child::before {
    display: none;
}


/* Small accent line */

.content-section .entry-content > h2:first-child::after {
    content: "";

    display: block;

    width: 45px;
    height: 2px;

    margin-top: 10px;

    background: var(--accent);
}


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

.content-section .entry-content h2 {
    max-width: 820px;

    margin: 42px auto 14px;
    padding: 0;

    color: var(--primary);

    font-family: var(--font-heading);
    font-size: clamp(25px, 3vw, 32px);
    font-weight: 600;

    line-height: 1.2;
    letter-spacing: 0;
}


/* Remove vertical side marker */

.content-section .entry-content h2:not(:first-child)::before {
    display: none;
}


/* Simple underline */

.content-section .entry-content h2:not(:first-child)::after {
    content: "";

    display: block;

    width: 35px;
    height: 2px;

    margin-top: 8px;

    background: var(--accent);
}


/* =========================================================
   H3
========================================================= */

.content-section .entry-content h3 {
    max-width: 820px;

    margin: 30px auto 12px;
    padding: 0;

    color: var(--primary);

    font-family: var(--font-heading);
    font-size: clamp(21px, 2.5vw, 26px);

    font-weight: 600;
    line-height: 1.25;
}


/* Small accent */

.content-section .entry-content h3::after {
    content: "";

    display: block;

    width: 28px;
    height: 2px;

    margin-top: 7px;

    background: var(--accent);
}


/* =========================================================
   INTRO PARAGRAPH
========================================================= */

.content-section .entry-content > h2:first-child + p {
    font-size: 15px;
    line-height: 1.75;
    color: #4f5968;
}


/* Remove drop cap */

.content-section .entry-content > h2:first-child + p::first-letter {
    float: none;
    margin: 0;

    color: inherit;

    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;

    line-height: inherit;
}


/* =========================================================
   LISTS
========================================================= */

.content-section .entry-content ul {
    max-width: 820px;

    margin: 18px auto 22px;
    padding: 0 0 0 18px;

    list-style: disc;
}


.content-section .entry-content li {
    margin-bottom: 7px;
    padding: 0;

    color: #596579;

    font-size: 14px;
    line-height: 1.65;

    background: none;
    border: none;
    border-radius: 0;

    transition: none;
}


/* Normal bullets */

.content-section .entry-content li::before {
    display: none;
}


/* Remove hover effect */

.content-section .entry-content li:hover {
    transform: none;
    border: none;
    box-shadow: none;
}


/* =========================================================
   SPACING
========================================================= */

.content-section .entry-content h2 + p,
.content-section .entry-content h3 + p {
    margin-top: 0;
}


/* =========================================================
   LAST PARAGRAPH
========================================================= */

.content-section .entry-content > p:last-child {
    margin-top: 25px;
    padding: 14px 16px;

    color: var(--primary);

    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.65;

    background: #fff;

    border: none;
    border-left: 2px solid var(--accent);
    border-radius: 0;
}


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

.content-section .entry-content .table-wrap {
    max-width: 820px;

    margin: 25px auto;

    border-radius: 5px;
    overflow: hidden;

    border: 1px solid var(--border-subtle);
    box-shadow: none;
}

.content-section .entry-content table {
    width: 100%;
    background: #fff;
}

.content-section .entry-content th {
    padding: 10px 12px;

    background: var(--primary);
    color: #fff;

    font-size: 11px;
    font-weight: 600;
}

.content-section .entry-content td {
    padding: 10px 12px;

    color: #596579;
    font-size: 13px;
}

.content-section .entry-content tr:hover td {
    background: #fff;
}


/* =========================================================
   FAQ / DETAILS
========================================================= */

.content-section .entry-content details {
    max-width: 820px;

    margin: 10px auto;

    padding: 0;

    background: #fff;

    border: 1px solid var(--border-subtle);
    border-radius: 5px;

    overflow: hidden;

    box-shadow: none;
}

.content-section .entry-content summary {
    padding: 12px 15px;

    color: var(--primary);

    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;

    cursor: pointer;
}

.content-section .entry-content details p {
    padding: 0 15px 13px;
    margin-bottom: 0;
}


/* =========================================================
   BLOCKQUOTE
========================================================= */

.content-section .entry-content blockquote {
    max-width: 820px;

    margin: 25px auto;

    padding: 15px 18px;

    background: #fafafa;

    border-left: 2px solid var(--accent);
    border-radius: 0;

    color: var(--primary);
}

.content-section .entry-content blockquote p {
    color: #596579;

    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.65;
}


/* =========================================================
   IMAGES
========================================================= */

.content-section .entry-content img {
    max-width: 100%;
    height: auto;

    margin: 22px auto;

    border-radius: 6px;

    box-shadow: none;
}

.content-section .entry-content figure {
    max-width: 820px;
    margin: 25px auto;
}

.content-section .entry-content figcaption {
    padding-top: 6px;

    color: #8993a3;

    font-family: var(--font-body);
    font-size: 11px;
    text-align: center;
}


/* =========================================================
   TEXT SELECTION
========================================================= */

.content-section .entry-content ::selection {
    background: var(--accent);
    color: #fff;
}


/* =========================================================
   MOBILE — 768px
========================================================= */

@media (max-width: 768px) {

    .content-section {
        padding: 30px 0 40px;
    }

    .content-section .entry-content {
        padding: 20px 18px;
    }


    /* Main heading */

    .content-section .entry-content > h2:first-child {
        margin-bottom: 16px;

        font-size: 30px;
        line-height: 1.2;
    }


    /* Body */

    .content-section .entry-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .content-section .entry-content > h2:first-child + p {
        font-size: 14px;
    }


    /* H2 */

    .content-section .entry-content h2 {
        margin-top: 34px;

        font-size: 25px;
    }


    /* H3 */

    .content-section .entry-content h3 {
        margin-top: 26px;

        font-size: 21px;
    }


    /* Lists */

    .content-section .entry-content ul {
        margin-top: 14px;
        margin-bottom: 18px;

        padding-left: 18px;
    }

    .content-section .entry-content li {
        font-size: 13.5px;
        margin-bottom: 6px;
    }


    /* Last paragraph */

    .content-section .entry-content > p:last-child {
        margin-top: 20px;
        padding: 12px 14px;

        font-size: 14px;
    }


    /* Images */

    .content-section .entry-content img {
        margin: 18px auto;
        border-radius: 5px;
    }
}


/* =========================================================
   SMALL MOBILE — 480px
========================================================= */

@media (max-width: 480px) {

    .content-section {
        padding: 22px 0 30px;
    }

    .content-section .entry-content {
        padding: 15px 14px;
    }


    .content-section .entry-content > h2:first-child {
        font-size: 27px;
    }

    .content-section .entry-content h2 {
        font-size: 23px;
        margin-top: 30px;
    }

    .content-section .entry-content h3 {
        font-size: 20px;
        margin-top: 24px;
    }

    .content-section .entry-content p {
        font-size: 13.5px;
        line-height: 1.68;
    }

    .content-section .entry-content li {
        font-size: 13px;
    }

    .content-section .entry-content > p:last-child {
        font-size: 13.5px;
        padding: 11px 13px;
    }
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .content-section .entry-content li {
        transition: none;
    }
} 