@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap');

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

/* =========================
ROOT VARIABLES
========================= */
:root {
    --primary: #2563eb;
    --primary-light: #3b82f6;
    --primary-dark: #1d4ed8;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;

    --white: #ffffff;
    --gray-light: #e5e7eb;
    --dark: #333333;
    --black: #000000;

    --bg: #0b1a2f;
    --text: #cbd5e1;
    --muted: #94a3b8;
    --border: #1f2937;

    --blue: #2563eb;
    --blue-light: #3b82f6;

    --facebook: #1877f2;
    --instagram: linear-gradient(45deg, #a855f7, #ec4899);
    --linkedin: #0a66c2;

    --overlay-dark: rgba(0, 0, 0, 0.7);
    --overlay-medium: rgba(0, 0, 0, 0.5);

    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.3);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: "Geist", Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* =========================
   GLOBAL ELEMENTS
========================= */
a {
    text-decoration: none;
    color: inherit;
}

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

ul,
ol {
    list-style: none;
}

/* =========================
   HEADER / NAVBAR
========================= */
.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
}

.navbar {
    width: 100%;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.site-header.scrolled .menu-toggle {
    color: var(--black);
}


.site-header.scrolled .nav-menu li a {
    color: var(--dark);
}

.site-header.scrolled .nav-menu li a:hover {
    color: var(--primary);
}

.site-header.scrolled .nav-menu li:last-child a {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    color: var(--white);
}

.site-header.scrolled .nav-menu li:last-child a:hover {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
}

/* =========================
   LOGO
========================= */
.logo img {
    height: 100px;
    width: auto;
}

/* =========================
   MENU
========================= */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.nav-menu li {
    display: inline-block;
}

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

.nav-menu li a:hover {
    color: var(--primary-light);
}

/* =========================
   BOOK NOW BUTTON
========================= */
.nav-menu li:last-child a {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
}

.nav-menu li:last-child a:hover {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
}

/* =========================
   MOBILE MENU
========================= */
.menu-toggle {
    display: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
}

/* =========================
   SIDE MENU (MOBILE)
========================= */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
}

.side-menu-wrapper {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: #fff;
    z-index: 999;
    padding: 20px;
    transition: 0.3s;
}

.side-menu-wrapper.active {
    right: 0;
}

.overlay.active {
    display: block;
}

.side-menu-list {
    list-style: none;
    margin-top: 20px;
}

.side-menu-list li {
    margin-bottom: 15px;
}

.side-menu-list li a {
    color: var(--dark);
    text-decoration: none;
    font-size: 16px;
}

/* =========================
   HERO SECTION
========================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    color: var(--white);
}

/* Background Image */
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&q=80') no-repeat center/cover;
    z-index: 1;
}

/* Overlay Gradient */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0.7));
}

/* Content */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
}

/* Title */
.hero-title {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Subtitle */
.hero-subtitle {
    font-size: 20px;
    color: var(--gray-light);
    margin-bottom: 30px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Primary Button */
.btn-primary {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
}

.btn-secondary {
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    color: var(--white);
    backdrop-filter: blur(6px);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    font-size: 28px;
    animation: bounce 1.5s infinite;
    z-index: 3;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

/* Animation */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

/* =========================
   ABOUT 
=========================  */
.about {
    background: linear-gradient(to bottom, #f9fafb, #ffffff);
    padding: 100px 20px;
    font-family: 'Poppins', sans-serif;
}

/* ================= HEADER ================= */
.about-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.about-header h2 {
    font-size: 42px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.about-header h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 15px auto 0;
    border-radius: 2px;
}

.about-header p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ================= STATS ================= */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 80px;
}

.stat-box {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-box h3 {
    font-size: 34px;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 700;
}

.stat-box p {
    font-size: 14px;
    color: var(--text-light);
}

/* ================= CONTENT ================= */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* CARD STYLE */
.mission,
.values {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.mission:hover,
.values:hover {
    transform: translateY(-5px);
}

/* HEADINGS */
.about-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

/* TEXT */
.about-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

/* VALUES LIST */
.values ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values li {
    margin-bottom: 12px;
    color: var(--text-light);
    font-size: 15px;
    padding-left: 25px;
    position: relative;
}

/* ICON */
.values li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-size: 14px;
}

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

.testimonials {
    padding: 80px 20px;
    font-family: Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: auto;
}

/* Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-light);
    font-size: 16px;
}

/* Grid */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Card */
.testimonial-card {
    background: lab(98.2596% -.247031 -.706708);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Stars */
.stars {
    color: #facc15;
    font-size: 18px;
    margin-bottom: 10px;
}

/* Review */
.review {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

/* User */
.user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.user h4 {
    font-size: 14px;
    color: var(--text-dark);
}

.user span {
    font-size: 12px;
    color: var(--text-light);
}

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

/* SECTION */
.services-section {
    padding: 80px 0;
    background: #fff;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* HEADER */
.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 42px;
    font-weight: bold;
    color: #111;
}

.services-header p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 10px auto 0;
}

/* GRID */
.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.post-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    position: relative;
}

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* IMAGE */
.post-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.post-image,
.service-swiper {
    position: relative;
}

/* DARK OVERLAY ON HOVER */
.post-image::after,
.service-swiper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    opacity: 0;
    z-index: 9;
    transition: 0.3s;
}

.post-card:hover .post-image::after,
.post-card:hover .service-swiper::after {
    opacity: 1;
}

/* CONTENT */
.service-content {
    padding: 20px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.service-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

/* BUTTONS */
.service-actions {
    display: flex;
    gap: 10px;
}

/* PRIMARY BUTTON */
.service-actions .btn-primary {
    flex: 1;
    border-radius: 8px;
    padding: 8px 12px;
    text-align: center;
    background: #2563eb;
    color: #fff;
    transition: all 0.3s ease;
}

/* SECONDARY BUTTON */
.service-actions .btn-secondary {
    flex: 1;
    background: #16a34a;
    color: #fff;
    text-align: center;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

/* BUTTON HOVER */
.service-actions a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gallery-slide {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-card .swiper-pagination {
    text-align: right;
    padding-right: 15px;
}

.post-card .swiper-pagination span.swiper-pagination-bullet {
    background-color: #c9bcbc;
    opacity: 1;
    width: 7px;
    height: 7px;
    margin: 0px 2px;
}

.post-card .swiper-pagination span.swiper-pagination-bullet-active {
    width: 15px;
    border-radius: 30px;
    background-color: #fff;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-slide h3 {
    position: absolute;
    bottom: 20px;
    left: 15px;
    color: white;
    margin: 0;
}

.dots {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 6px;
}

.dots span {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dots span.active {
    width: 20px;
    background: white;
    border-radius: 10px;
}

/* =========================
CONTACT US SECTION
=========================== */

.contact-section {
    padding: 80px 0;
}

.contact-header {
    text-align: center;
}

.contact-header .contact-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 10px auto 0;
}

.contact-header .contact-title {
    font-size: 42px;
    font-weight: bold;
    color: #111;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-form-box {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.7);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(2, 6, 23, 0.08);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: 0.3s ease;
}

/* INPUTS */
.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
    background: #fff;
    font-family: inherit;
    width: 100%;
}

/* FOCUS STATE */
.contact-form-box input:focus,
.contact-form-box select:focus,
.contact-form-box textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

/* TEXTAREA */
.contact-form-box textarea {
    resize: none;
}

/* BUTTON */
.contact-form-box input[type="submit"] {
    padding: 14px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

/* BUTTON HOVER */
.contact-form-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.contact-info-box {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Cards */
.info-card,
.social-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.7);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(2, 6, 23, 0.08);
    transition: 0.3s ease;
}

/* Titles */
.info-title,
.social-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1c1c1c;
}

/* Info Items */
.info-item {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.info-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    color: #2563eb;
    stroke-width: 2;
    stroke: currentColor;
}

.info-label {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 4px;
}

.info-text {
    font-size: 16px;
    color: #222;
    font-weight: 500;
}

/* Links */
.info-text a {
    color: #222;
    text-decoration: none;
}

.info-text a:hover {
    color: #2563eb;
}

/* =========================
SERVICE PAGE CSS
========================== */

.inner-page-title {
    color: white;
    font-size: 48px;
    font-weight: bold;
}

/* HERO */
.inner-page-hero {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

/* OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
}

/* CONTENT */
.hero-inner {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 650px;
    text-align: center;
}

/* TITLE */
.hero-title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* SUBTITLE */
.hero-subtitle {
    font-size: 18px;
    color: #e5e7eb;
    margin-bottom: 14px;
}

/* CTA */
.hero-cta {
    display: inline-block;
    padding: 12px 26px;
    background: #2563eb;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
}

/* CONTAINER */
.sidebar-layout {
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.single-service .sidebar-layout,
.single-destination .sidebar-layout {
    grid-template-columns: 850px 1fr;
}

.gallery-main {
    background: #000;
    border-radius: 16px;
    overflow: hidden;
}

.gallery-main img {
    width: 100%;
    height: 480px;
    object-fit: contain;
}

.service-main-slider {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
}

.service-main-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-thumb-slider {
    margin-top: 10px;
}

.service-thumb-slider .swiper-slide {
    height: 80px;
    opacity: 0.5;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
}

.service-thumb-slider .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid #007aff;
}

.service-thumb-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENT */
.service-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.service-description {
    line-height: 1.7;
    color: #444;
}

/* SIDEBAR */
.service-sidebar {
    position: sticky;
    top: 100px;
}

/* HIGHLIGHTS */
.sidebar-widget {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.widget-card h3 {
    font-size: 18px;
    font-weight: 600;
}

.widget-card p {
    font-size: 16px !important;
}

.highlight-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.highlight-list span {
    background: #e0ecff;
    color: #1d4ed8;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 14px;
}

#primary {
    padding: 3rem 0rem;
}

#primary h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 18px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    position: relative;
}

#primary h1::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    margin-top: 12px;
    border-radius: 2px;
}

.service-description p {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 16px;
}

.service-description p strong {
    color: #1d4ed8;
    font-weight: 600;
}

#primary h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #1f2937;
    position: relative;
}

#primary h2::before {
    content: "";
    width: 6px;
    height: 22px;
    background: #2563eb;
    position: absolute;
    left: -14px;
    top: 3px;
    border-radius: 3px;
}

.service-cta {
    background: linear-gradient(135deg, #1e66ff, #0b4ddb);
    color: #fff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    margin-top: 20px;
    text-align: center;
}

/* Title */
.service-cta h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Text */
.service-cta p {
    font-size: 14px !important;
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: 18px;
    color: var(--white) !important;
}

/* Button */
.service-cta .btn-primary {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--white);
    color: #1e66ff;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
}

/* Hover effect */
.service-cta .btn-primary:hover {
    background: #f2f6ff;
    transform: translateY(-2px);
}

/* =========================
DESTINATION PAGE
========================== */

.ti-section {
    padding: 20px 0;
}

.ti-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.ti-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.ti-card {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.ti-card-header {
    background: #2563eb;
    color: #fff;
    padding: 12px 16px;
    font-weight: 600;
}

.ti-card-body {
    padding: 16px;
}

.ti-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ti-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
    font-size: 14px;
}

.ti-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-size: 14px;
}

/* =========================
   FOOTER
========================= */
.site-footer {
    background: var(--bg);
    color: var(--text);
    padding: 60px 0px 20px;
    font-family: Arial, sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    max-width: 270px;
}

.footer-col h2,
.footer-col h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.footer-col h2 {
    font-size: 26px;
}

.footer-col h3 {
    font-size: 20px;
}

.footer-col p {
    color: var(--muted);
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text);
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--white);
}

/* CONTACT */
.footer-col span {
    color: var(--muted);
    font-size: 13px;
}

/* BOTTOM */
.site-info {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* SOCIAL */
.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.fb {
    background: var(--facebook);
}

.ig {
    background: var(--instagram);
}

.ln {
    background: var(--linkedin);
}

.travel-blog-section {
    padding: 60px 0;
    background: #f7f9fc;
}

.section-heading {
    text-align: center;
    margin-bottom: 70px;
}

.section-heading .sub-title {
    color: #f4a825;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.section-heading h1 {
    font-size: 48px;
    color: #fff;
    margin: 15px 0;
}

.section-heading p {
    color: #fff;
    max-width: 700px;
    margin: auto;
    line-height: 1.8;
}

.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.travel-blog-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2,1fr);
}

.travel-blog-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.05);
    transition: 0.4s ease;
}

.travel-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.travel-blog-image {
    position: relative;
    overflow: hidden;
}

.travel-blog-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: 0.5s;
}

.travel-blog-card:hover img {
    transform: scale(1.05);
}

.travel-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #f4a825;
    color: #fff;
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
}

.travel-category a {
    color: #fff;
    text-decoration: none;
}

.travel-blog-content {
    padding: 20px;
}

.travel-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.travel-meta span {
    color: #64748b;
    font-size: 14px;
}

.travel-meta i {
    color: #f4a825;
    margin-right: 5px;
}

.travel-blog-content h2 {
    margin-bottom: 15px;
    font-size: 24px;
    line-height: 1.4;
}

.travel-blog-content h2 a {
    text-decoration: none;
    color: #0f172a;
    transition: 0.3s;
}

.travel-blog-content h2 a:hover {
    color: #f4a825;
}

.travel-blog-content p {
    color: #64748b;
    line-height: 1.9;
    margin-bottom: 25px;
}

.travel-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0f172a;
    color: #fff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px;
    transition: 0.3s;
    font-weight: 600;
}

.travel-read-btn:hover {
    background: #f4a825;
}

.travel-sidebar {
    position: sticky;
    top: 130px;
    height: fit-content;
}

.sidebar-widget {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.05);
}

.sidebar-widget h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #0f172a;
    position: relative;
    padding-bottom: 12px;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #f4a825;
}

.sidebar-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-widget ul li {
    margin-bottom: 15px;
}

.sidebar-widget ul li a {
    text-decoration: none;
    color: #334155;
    transition: 0.3s;
    line-height: 1.6;
}

.sidebar-widget ul li a:hover {
    color: #f4a825;
    padding-left: 5px;
}

.sidebar-widget .search-form {
    display: flex;
    gap: 10px;
}

.sidebar-widget .search-field {
    width: 100%;
    height: 50px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 0 15px;
    outline: none;
}

.sidebar-widget .search-submit {
    background: #f4a825;
    color: #fff;
    border: none;
    padding: 0 22px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
}

.pagination-wrap {
    margin-top: 30px;
    text-align: center;
}

.pagination-wrap .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0 5px;
    border-radius: 50%;
    background: #fff;
    color: #0f172a;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.pagination-wrap .page-numbers.current,
.pagination-wrap .page-numbers:hover {
    background: #f4a825;
    color: #fff;
}

@media(max-width:992px){

    .blog-layout {
        grid-template-columns: 1fr;
    }

    .travel-sidebar {
        position: relative;
        top: 0;
    }

}

@media(max-width:768px){
	
	.travel-blog-grid {
		grid-template-columns: repeat(1,1fr);
	}

    .section-heading h1 {
        font-size: 34px;
    }

    .travel-blog-image img {
        height: 250px;
    }

    .travel-blog-content h2 {
        font-size: 24px;
    }
	
	.inner-page-hero {
		height: 350px;
	}

}


/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 20px;
    }

    .navbar {
        flex-wrap: nowrap;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        gap: 15px;
    }

    .footer-grid {
        gap: 30px;
    }
}


@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

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

    .about-content {
        grid-template-columns: 1fr;
    }

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

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

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

    .contact-info-box {
        max-width: unset;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .about-header h2 {
        font-size: 30px;
    }

    .stat-box h3 {
        font-size: 28px;
    }

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

    .section-header h2 {
        font-size: 28px;
    }

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

    .sidebar-layout {
        display: block;
    }

    #primary h1 {
        font-size: 1.8rem;
    }

    #primary h2 {
        font-size: 1.4rem;
    }

    #primary p {
        font-size: 1rem;
    }

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

@media (max-width: 576px) {

    .testimonial-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 24px;
    }
}