/* 
========================================
   True Line Travel Agency - style.css
   Premium Corporate Layout
========================================
*/

:root {
    /* Brand Colors extracted from logo */
    --primary-color: #243d5b;
    /* Navy Blue */
    --primary-light: #2c4a6e;
    --primary-dark: #1b2e45;

    --secondary-color: #cc1530;
    /* Crimson Red */
    --secondary-light: #e61a38;
    --secondary-dark: #b3122a;

    /* Neutrals */
    --text-main: #333333;
    --text-muted: #6c757d;
    --bg-body: #fdfdfd;
    --bg-light: #f4f6f9;
    --white: #ffffff;
    --border-color: #e2e8f0;

    /* Styling variables */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 24px;

    --box-shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --box-shadow-md: 0 10px 20px rgba(0, 0, 0, 0.05);
    --box-shadow-lg: 0 20px 40px rgba(36, 61, 91, 0.08);
    --box-shadow-primary: 0 10px 20px rgba(36, 61, 91, 0.2);
    --box-shadow-secondary: 0 10px 20px rgba(204, 21, 48, 0.3);

    --transition-fast: 0.2s ease-in-out;
    --transition-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);

    /* Typography */
    --font-body: 'Tajawal', sans-serif;
    --font-heading: 'Cairo', 'Tajawal', sans-serif;
}

/* ================== Base & Reset ================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-body);
    line-height: 1.8;
    font-size: 16px;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ================== Scroll Progress Bar ================== */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    right: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(to left, var(--secondary-color), var(--primary-color));
    z-index: 9999;
    border-radius: 0 0 4px 0;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(204, 21, 48, 0.5);
}

/* ================== Typography & Utilities ================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.bg-light {
    background-color: var(--bg-light);
}

.text-center {
    text-align: center;
}

.text-warning {
    color: #f59e0b;
}

.pt-0 {
    padding-top: 0 !important;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-l {
    margin-top: 2.5rem;
}

.d-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Section Headers */
.section-subtitle {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 12px;
    position: relative;
    padding-right: 40px;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
}

.section-title {
    font-size: clamp(1.6rem, 3.5vw, 3rem);
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 24px;
    line-height: 1.2;
    font-family: var(--font-heading);
}

.section-title span {
    color: var(--secondary-color);
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* ================== Buttons ================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-normal);
    border: 2px solid transparent;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn-sm {
    padding: 10px 24px;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: var(--box-shadow-primary);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(36, 61, 91, 0.3);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: var(--box-shadow-primary);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-white:hover {
    background-color: var(--bg-light);
    color: var(--primary-dark);
}

.btn-video {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-video i {
    background: var(--white);
    color: var(--secondary-color);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    padding-left: 3px;
    /* visual center for play icon rtl */
}

.btn-video:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* ================== Topbar & Header ================== */
.topbar {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 0.875rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-info {
    display: flex;
    gap: 20px;
}

.topbar-info a {
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.8;
}

.topbar-info a:hover {
    opacity: 1;
}

.topbar-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.topbar-social a {
    opacity: 0.8;
}

.topbar-social a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

/* Main Header */
.header {
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-normal);
    box-shadow: var(--box-shadow-sm);
}

.header.scrolled {
    box-shadow: var(--box-shadow-md);
    padding: 5px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    transition: height var(--transition-normal);
}

.header.scrolled .header-container {
    height: 70px;
}

.logo img {
    height: 55px;
    transition: var(--transition-normal);
}

.header.scrolled .logo img {
    height: 45px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 700;
    color: var(--primary-color);
    padding: 10px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 3px;
    background-color: var(--secondary-color);
    transition: var(--transition-normal);
    border-radius: 3px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* ================== Hero Section ================== */
.hero {
    min-height: calc(100vh - 130px);
    display: flex;
    align-items: center;
    position: relative;
    padding: 0;
    background-color: var(--primary-dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    opacity: 0.3;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, var(--primary-dark) 20%, transparent);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px 24px;
}

.hero-text-box {
    max-width: 650px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(204, 21, 48, 0.2);
    color: #ff4d66;
    /* lighter red for dark bg */
    border: 1px solid rgba(204, 21, 48, 0.5);
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    font-family: var(--font-heading);
}

.hero-title span {
    color: var(--secondary-color);
}

.hero-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* ================== About Section ================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    position: relative;
    padding-left: 40px;
    padding-bottom: 40px;
}

.img-large {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow-lg);
}

.img-large img {
    transition: var(--transition-slow);
}

.img-large:hover img {
    transform: scale(1.05);
}

.img-small {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    border-radius: var(--border-radius-lg);
    border: 10px solid var(--white);
    background-color: var(--white);
    overflow: hidden;
    box-shadow: var(--box-shadow-md);
}

.experience-box {
    position: absolute;
    top: -30px;
    right: 30px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 24px;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: var(--box-shadow-secondary);
    display: flex;
    flex-direction: column;
}

.experience-box .num {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-box .text {
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.2;
}

.lead {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    line-height: 1.6;
}

.features-list {
    margin-top: 30px;
}

.features-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.features-list i {
    background-color: rgba(204, 21, 48, 0.1);
    color: var(--secondary-color);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.features-list h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.features-list p {
    color: var(--text-muted);
}

/* ================== Services ================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
    border-color: rgba(36, 61, 91, 0.1);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 24px;
    transition: var(--transition-normal);
}

.service-card:hover .icon-wrapper {
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--primary-color);
}

.service-link i {
    transition: transform var(--transition-fast);
}

.service-link:hover {
    color: var(--secondary-color);
}

.service-link:hover i {
    transform: translateX(-5px);
    /* RTL */
}

/* ================== Destinations ================== */
.destinations-slider {
    padding: 20px 0 60px;
    overflow: hidden;
}

.dest-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dest-card:hover {
    box-shadow: var(--box-shadow-lg);
    transform: translateY(-5px);
}

.dest-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.dest-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.dest-card:hover .dest-img img {
    transform: scale(1.1);
}

.dest-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.dest-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dest-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.dest-title {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.dest-price {
    background-color: rgba(36, 61, 91, 0.1);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: var(--border-radius-sm);
    font-weight: 800;
    font-size: 1.1rem;
}

.dest-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px dashed var(--border-color);
}

.dest-meta i {
    margin-left: 4px;
}

.slider-nav {
    display: flex;
    gap: 12px;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition-fast);
    background-color: var(--white);
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* ================== Stats ================== */
.stats-wrapper {
    background-color: var(--primary-color);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stats-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* ================== Testimonials ================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow-sm);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, transparent 50%, rgba(36, 61, 91, 0.04) 50%);
    border-radius: 0 0 var(--border-radius-lg) 0;
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--box-shadow-lg);
    border-color: rgba(36, 61, 91, 0.12);
}

.testimonial-card:hover::before {
    width: 120px;
    height: 120px;
}

.testimonial-quote {
    color: var(--secondary-color);
    font-size: 1.8rem;
    opacity: 0.25;
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: #f59e0b;
    font-size: 0.95rem;
}

.testimonial-text {
    color: var(--text-muted);
    font-size: 0.97rem;
    line-height: 1.85;
    flex: 1;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px dashed var(--border-color);
    margin-top: auto;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--border-color);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    flex: 1;
}

.testimonial-info h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 3px;
}

.testimonial-info span {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.testimonial-info span i {
    color: var(--secondary-color);
    font-size: 0.75rem;
}

.testimonial-dest {
    background-color: var(--bg-light);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.testimonial-dest i {
    color: var(--secondary-color);
    font-size: 0.75rem;
}

/* ================== Call to Action ================== */

.cta-box {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    border-radius: var(--border-radius-lg);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: var(--box-shadow-lg);
}

.cta-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background-color: var(--secondary-color);
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.15rem;
    opacity: 0.9;
}

.cta-action {
    position: relative;
    z-index: 2;
}

/* ================== Footer ================== */
.footer {
    background-color: #f8fafc;
    border-top: 1px solid var(--border-color);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to left, var(--primary-color), var(--secondary-color));
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding: 80px 0 50px;
}

.footer-brand-img {
    height: 60px;
    margin-bottom: 24px;
}

.company-desc {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 800;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--secondary-color);
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(-5px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.footer-contact i {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin-top: 4px;
}

.footer-contact strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

/* ================== Back to Top ================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    /* RTL positioning */
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--box-shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-normal);
    z-index: 99;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

/* ================== Responsive Design ================== */

/* Tablet Large */
@media (max-width: 1199px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
        gap: 30px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .topbar {
        display: none;
    }

    .section {
        padding: 70px 0;
    }

    .hero {
        min-height: 80vh;
    }

    .hero::after {
        width: 100%;
        background: linear-gradient(rgba(27, 46, 69, 0.85), rgba(27, 46, 69, 0.85));
    }

    .hero-text-box {
        margin: 0 auto;
        text-align: center;
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-images {
        padding-left: 20px;
        padding-bottom: 40px;
        max-width: 600px;
        margin: 0 auto;
    }

    .stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px;
        gap: 40px;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px;
    }

    .cta-box::after {
        display: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .header-actions .btn {
        display: none;
    }

    .header-container {
        height: 70px;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        box-shadow: var(--box-shadow-md);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: var(--transition-normal);
        z-index: 999;
    }

    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-links a {
        display: block;
        padding: 15px 24px;
        border-bottom: 1px solid var(--border-color);
        font-size: 1.05rem;
    }

    .nav-links a::after {
        display: none;
    }

    .section {
        padding: 50px 0;
    }

    .container {
        padding: 0 16px;
    }

    .hero-content {
        padding: 40px 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px 20px;
        gap: 24px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 30px 20px;
    }

    .cta-content h2 {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .about-images {
        padding-left: 0;
        padding-bottom: 50px;
    }

    .experience-box {
        right: 10px;
        top: -20px;
        padding: 16px;
    }

    .experience-box .num {
        font-size: 2rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .stats-wrapper {
        grid-template-columns: 1fr;
    }

    .dest-card .btn {
        width: 100%;
    }

    .testimonial-author {
        flex-wrap: wrap;
    }

    .testimonial-dest {
        display: none;
    }
}