@import url('https://fonts.googleapis.com/css2?family=Lobster+Two:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* ==========================================   SHIV ADVENTURE TOURS - STYLE.CSS   Premium Travel Agency Website Clone   ========================================== */
/* ==========================================   CSS VARIABLES - DESIGN TOKENS   ========================================== */
:root {
    /* Primary Colors */
    --primary-color: #F07C00;
    --primary-dark: #cc6900;
    --primary-light: #ff911e;
    /* Secondary Colors */
    --secondary-color: #2c3e50;
    --secondary-dark: #1a252f;
    --secondary-light: #34495e;
    /* Accent Colors */
    --accent-orange: #f39c12;
    --accent-gold: #d4af37;
    --accent-green: #27ae60;
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #f1f3f5;
    --bg-dark: #1a1a2e;
    --bg-gradient-start: #667eea;
    --bg-gradient-end: #764ba2;
    /* Text Colors */
    --text-primary: #2c3e50;
    --text-secondary: #6c757d;
    --text-muted: #adb5bd;
    --text-white: #ffffff;
    --text-dark: #1a1a1a;
    /* Border Colors */
    --border-light: #e9ecef;
    --border-medium: #dee2e6;
    /* Shadow Colors */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    --shadow-primary: 0 4px 20px rgba(240, 124, 0, 0.3);
    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
    /* Font Sizes */
    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-md: 1.125rem;
    --fs-lg: 1.25rem;
    --fs-xl: 1.5rem;
    --fs-2xl: 2rem;
    --fs-3xl: 2.5rem;
    --fs-4xl: 3rem;
    --fs-5xl: 3.5rem;
    /* Font Weights */
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;
    /* Line Heights */
    --lh-tight: 1.2;
    --lh-normal: 1.5;
    --lh-relaxed: 1.75;
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 50%;
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    /* Container Widths */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1200px;
    --container-2xl: 1400px;
    /* Z-index Scale */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal: 1050;
    --z-tooltip: 1070;
}

/* ==========================================   CSS RESET & BASE STYLES   ========================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: var(--fs-base);
    font-weight: var(--fw-regular);
    line-height: var(--lh-normal);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    background: transparent;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
}

/* ==========================================   UTILITY CLASSES   ========================================== */
.container {
    width: 100%;
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section {
    padding: var(--space-4xl) 0;
}

.section-title {
    font-size: var(--fs-3xl);
    font-weight: var(--fw-bold);
    color: var(--text-primary);
    text-align: center;
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: var(--fs-md);
    color: var(--text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-3xl);
}

.text-primary {
    color: var(--primary-color);
}

.text-white {
    color: var(--text-white);
}

.bg-light {
    background-color: var(--bg-secondary);
}

.bg-dark {
    background-color: var(--bg-dark);
}

/* ==========================================   TOP BAR   ========================================== */
.top-bar {
    background: #F07C00;
    padding: 8px 0;
    font-size: 0.85rem;
    color: #fff;
    z-index: 1010;
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    box-sizing: border-box;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    padding: 0 16px;
    overflow: hidden;
    position: relative;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    position: relative;
}

.top-bar-left {
    gap: 0.8rem;
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.top-bar-left span {
    font-weight: 500;
}

.top-bar-left a {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 400;
    white-space: nowrap;
    flex-shrink: 1;
}

.top-bar-left a i {
    font-size: 0.8rem;
    flex-shrink: 0;
}

.top-bar-right {
    gap: 8px;
    flex-shrink: 0;
    position: relative;
}

.top-social-icon {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
}

.top-social-icon:hover {
    background: #fff;
    color: #F07C00;
    transform: translateY(-2px);
}

/* ==========================================   HEADER & NAVIGATION   ========================================== */
#header-placeholder {
    display: block;
    width: 100%;
}

.header {
    background: #fff;
    padding: 5px 0;
    /* Reduced padding for slimmer header */
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    padding: 0 30px;
    min-height: 60px;
    margin: 0 auto;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    position: relative;
    height: auto;
    min-width: 150px;
}

.logo-img-header {
    height: 55px;
    /* Compact header logo */
    width: auto !important;
    object-fit: contain;
    position: relative;
    transform: none;
    z-index: 10;
}

.logo-img-footer {
    height: 180px;
    /* Increased footer logo size */
    width: auto;
    object-fit: contain;
    margin-right: 10px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: #F07C00;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon i {
    color: #fff;
    font-size: 1.5rem;
}

.logo-text {
    line-height: 1.1;
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1a1a2e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.logo-subtitle {
    font-size: 0.65rem;
    color: #777;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    /* Optimized gap for 18px bold text */
    margin-left: auto;
}

.nav-link {
    font-family: "Lobster Two", Arial, Tahoma, sans-serif;
    font-size: 18px !important;
    font-weight: 400 !important;
    /* Regular weight matches script font reference better */
    color: #000000 !important;
    text-decoration: none;
    padding: 8px 12px !important;
    line-height: 1.5 !important;
    position: relative;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* Hide mobile social icons on desktop */
.mobile-social-icons {
    display: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #F07C00;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #F07C00;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: #F07C00;
}

.nav-btn {
    background: #F07C00;
    color: #fff !important;
    padding: 10px 22px !important;
    border-radius: 4px;
    margin-left: 10px;
}

.nav-btn:hover {
    background: #cc6900;
    transform: translateY(-2px);
}

.nav-btn::after {
    display: none;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: var(--space-sm) 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-base);
    z-index: var(--z-dropdown);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--fs-sm);
    color: var(--text-primary);
    transition: var(--transition-base);
}

.dropdown-item:hover {
    background: var(--bg-secondary);
    color: var(--primary-color);
    padding-left: calc(var(--space-lg) + 5px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-base);
}

/* Main Navigation */
/* The previous .main-nav and .nav-link rules were replaced by the new header structure.   Keeping this comment for context, but the rules below are now redundant or handled differently..main-nav .nav-link {    color: #1a1a2e;    text-decoration: none;    font-size: 0.9rem;    font-weight: 500;    padding: 5px 0;    border-bottom: 2px solid transparent;    transition: var(--transition-base);    margin: 0;}
.main-nav .nav-link:hover,.main-nav .nav-link.active {    color: #F07C00;    border-bottom: 2px solid #F07C00;}*/
/* Top Bar Social Icons */
/* The previous .top-social-icon rules were replaced by the new top bar structure..top-social-icon {    width: 30px;    height: 30px;    background: rgba(255, 255, 255, 0.2);    border-radius: 50%;    display: flex;    align-items: center;    justify-content: center;    color: #fff;    text-decoration: none;    transition: var(--transition-base);}
.top-social-icon:hover {    background: #fff;    color: #F07C00;}*/
/* ==========================================   HERO SECTION   ========================================== */
/* ==========================================   HERO SLIDER   ========================================== */
.hero-slider {
    position: relative;
    height: 90vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    z-index: 1;
    /* Ensure it stays behind sticky header (z-index 1000) */
    margin-top: 0;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
    display: flex;
    align-items: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Slide Content Animations */
.slide .hero-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
}

.slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Hide on mobile if preferred, or adjust size */
}

.slider-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(240, 124, 0, 0.5);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.dot.active,
.dot:hover {
    background: var(--primary-color);
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(240, 124, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
    border: 1px solid rgba(240, 124, 0, 0.3);
}

.hero-badge span {
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--primary-color);
}

.hero h1 {
    font-size: var(--fs-5xl);
    font-weight: var(--fw-extrabold);
    color: var(--text-white);
    line-height: var(--lh-tight);
    margin-bottom: var(--space-lg);
}

.hero h1 span {
    color: var(--primary-color);
    position: relative;
}

.hero p {
    font-size: var(--fs-lg);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-xl);
    line-height: var(--lh-relaxed);
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: var(--space-3xl);
    margin-top: var(--space-3xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-size: var(--fs-3xl);
    font-weight: var(--fw-bold);
    color: var(--primary-color);
    display: block;
}

.hero-stat-label {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================   BUTTONS   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(240, 124, 0, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--text-white);
    color: var(--text-white);
}

.btn-outline:hover {
    background: var(--text-white);
    color: var(--text-primary);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--text-white);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--text-white);
    color: var(--primary-color);
}

.btn-white:hover {
    background: var(--bg-secondary);
    transform: translateY(-2px);
}


/* ==========================================   DOMESTIC TOURS SECTION   ========================================== */
.domestic-tours {
    background: linear-gradient(to bottom, #fcfbe4, #ecf7e6);
    /* Light yellow-green gradient */
    position: relative;
    padding: var(--space-4xl) 0;
}

.domestic-title {
    font-family: 'Kaushan Script', cursive;
    /* Script font for title */
    color: var(--primary-color);
    font-size: 3.5rem;
    /* Larger cursive title */
    margin-bottom: var(--space-xs);
}

.domestic-tours-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    padding: var(--space-xl) 0;
    justify-items: center;
}

.tour-rect-card {
    position: relative;
    width: 100%;
    max-width: 280px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    text-decoration: none;
    transition: var(--transition-base);
}

.tour-rect-image-wrapper {
    position: absolute;
    top: 0;
    left: 15px;
    /* Offset to center image inside the wider bar's context */
    right: 15px;
    bottom: 25px;
    /* Leave space at bottom */
    border-radius: 20px;
    /* Squircle */
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.tour-rect-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.tour-rect-label {
    position: absolute;
    bottom: 35px;
    /* Position across the image */
    width: 100%;
    /* Wider than image if image has margins */
    background: rgba(0, 0, 0, 0.6);
    /* Semi-transparent dark bar */
    padding: 12px 0;
    text-align: center;
    z-index: 2;
    /* The bar sticks out because the image is inset */
}

.tour-rect-label span {
    color: var(--text-white);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    font-size: var(--fs-base);
    letter-spacing: 1px;
}

/* Hover Effects */
.tour-rect-card:hover .tour-rect-image-wrapper img {
    transform: scale(1.1);
}

.tour-rect-card:hover .tour-rect-label {
    background: rgba(240, 124, 0, 0.9);
    /* Primary color on hover */
}

/* ==========================================   TAXI SERVICES SECTION   ========================================== */
.taxi-services {
    background: var(--bg-primary);
}

.taxi-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-3xl);
}

.taxi-tab {
    padding: var(--space-md) var(--space-xl);
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--text-secondary);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition-base);
}

.taxi-tab:hover,
.taxi-tab.active {
    background: var(--primary-color);
    color: var(--text-white);
    box-shadow: var(--shadow-primary);
}

.taxi-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.taxi-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.taxi-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    background: var(--bg-secondary);
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl);
    box-shadow: var(--shadow-md);
}

.taxi-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.taxi-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
}

.taxi-image:hover img {
    transform: scale(1.05);
}

.taxi-info h3 {
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.taxi-info p {
    color: var(--text-secondary);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--space-lg);
}

.taxi-details {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.taxi-detail {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--fs-sm);
    color: var(--text-primary);
}

.taxi-detail i {
    color: var(--primary-color);
    font-size: var(--fs-lg);
}

/* ==========================================   INTERNATIONAL TOURS SECTION   ========================================== */
.international-tours {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--secondary-dark) 100%);
    position: relative;
}

.international-tours .section-title,
.international-tours .section-subtitle {
    color: var(--text-white);
}

.international-tours .section-subtitle {
    opacity: 0.8;
}

.intl-tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.intl-tour-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-base);
}

.intl-tour-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.intl-tour-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.intl-tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.intl-tour-card:hover .intl-tour-image img {
    transform: scale(1.1);
}

.intl-tour-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: var(--primary-color);
    color: var(--text-white);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
}

.intl-tour-content {
    padding: var(--space-xl);
}

.intl-tour-content h3 {
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    color: var(--text-white);
    margin-bottom: var(--space-sm);
}

.intl-tour-duration {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-lg);
}

.intl-tour-duration i {
    color: var(--primary-color);
}

/* ==========================================   TRAVEL BANNER SECTION   ========================================== */
.travel-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
    padding: 0;
}

.travel-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.travel-banner:hover .travel-banner-img {
    transform: scale(1.05);
}

.travel-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    /* Neutral dark overlay instead of blue */
    display: flex;
    align-items: center;
    justify-content: center;
}

.travel-banner-content {
    text-align: center;
    color: var(--text-white);
}

.travel-banner-content p:first-child {
    font-size: var(--fs-lg);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.travel-banner-content h2 {
    font-size: var(--fs-5xl);
    font-weight: var(--fw-extrabold);
    margin-bottom: var(--space-sm);
    line-height: 1;
}

.travel-banner-content .subtitle {
    font-size: var(--fs-md);
    opacity: 0.9;
    font-style: italic;
}

/* ==========================================   POPULAR DESTINATIONS SECTION   ========================================== */
/* ==========================================   POPULAR DESTINATIONS SECTION   ========================================== */
.popular-destinations {
    background-color: #fdfdfd;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 15.347 39.647 14 50 14c10.271 0 15.362 1.222 24.629 4.928.955.383 1.869.74 2.75 1.072h1.498a44.62 44.62 0 0 1-1.397-.549l-1.748-.686C65.58 14.853 59.9 13.5 50 13.5c-9.9 0-15.58 1.353-25.732 5.265l-1.748.686a44.64 44.64 0 0 1-1.397.549H21.184zm0-2.4c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 12.947 39.647 11.6 50 11.6c10.271 0 15.362 1.222 24.629 4.928.955.383 1.869.74 2.75 1.072h1.498a44.62 44.62 0 0 1-1.397-.549l-1.748-.686C65.58 12.453 59.9 11.1 50 11.1c-9.9 0-15.58 1.353-25.732 5.265l-1.748.686a44.64 44.64 0 0 1-1.397.549H21.184zM0 20h1.498c.551-.205 1.115-.417 1.693-.635l1.768-.661C14.64 15.347 20.647 14 31 14c1.171 0 2.296.02 3.376.06a44.63 44.63 0 0 1-2.316.489C33.004 14.218 32.016 14 31 14c-10.271 0-15.362 1.222-24.629 4.928C5.416 19.311 4.502 19.668 3.621 20H0zm0-2.4h1.498c.551-.205 1.115-.417 1.693-.635l1.768-.661C14.64 12.947 20.647 11.6 31 11.6c1.171 0 2.296.02 3.376.06a44.63 44.63 0 0 1-2.316.489C33.004 11.818 32.016 11.6 31 11.6c-10.271 0-15.362 1.222-24.629 4.928C5.416 16.911 4.502 17.268 3.621 17.6H0z' fill='%23d0d0d0' fill-opacity='0.15' fill-rule='evenodd'/%3E%3C/svg%3E");
    padding: 80px 0;
}

.popular-destinations .section-title {
    font-size: 3.5rem;
    color: #F07C00;
    margin-bottom: 10px;
    font-weight: 700;
}

.popular-destinations .script-text {
    font-family: 'Kaushan Script', cursive;
    font-weight: 500;
}

.popular-destinations .section-subtitle {
    max-width: 900px;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 50px;
}

.highlight-taxi {
    color: #F07C00;
    font-weight: 700;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.destination-card {
    position: relative;
    height: 400px;
    /* Reduced height for better wide-aspect visibility */
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 8px;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.destination-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: background 0.3s ease;
}

.destination-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-card:hover .destination-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.destination-content {
    padding: 20px;
    width: 100%;
}

.dest-title {
    font-family: 'Kaushan Script', cursive;
    color: #fff;
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.dest-btn {
    display: inline-block;
    background: #003366;
    /* Deep Navy Blue */
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dest-btn:hover {
    background: #004080;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: #fff;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .destination-card {
        height: 400px;
    }

    .dest-title {
        font-size: 2.2rem;
    }
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .popular-destinations .section-title {
        font-size: 2.5rem;
    }

    .popular-destinations {
        padding: 50px 0;
    }
}

.destination-card:hover .destination-link i {
    transform: translateX(5px);
}

/* ==========================================   WHY CHOOSE US SECTION   ========================================== */
.why-choose-us {
    background: var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.feature-card {
    text-align: center;
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
}

.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(240, 124, 0, 0.1) 0%, rgba(240, 124, 0, 0.2) 100%);
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.feature-icon i {
    font-size: var(--fs-2xl);
    color: var(--primary-color);
    transition: var(--transition-base);
}

.feature-card:hover .feature-icon i {
    color: var(--text-white);
}

.feature-card h3 {
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: var(--fs-sm);
    line-height: var(--lh-relaxed);
}

/* ==========================================   SERVICES SECTION (Reasons to Book)   ========================================== */
.services-reasons {
    background: #fff;
    /* Keeping consistent background */
    padding: var(--space-3xl) 0;
}

.services-title {
    font-family: 'Kaushan Script', cursive;
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: var(--space-xl);
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.service-card {
    background: #f7941d;
    /* Explicit Orange from SS */
    border-radius: 20px;
    padding: var(--space-lg);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition-base);
    color: #fff;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-img {
    width: 100%;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: var(--space-md);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-card h3 {
    font-family: 'Kaushan Script', cursive;
    color: #fff;
    font-size: 2rem;
    margin-bottom: var(--space-sm);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.service-card p {
    color: #fff;
    font-size: 0.85rem;
    line-height: 1.6;
    padding: 0 var(--space-sm);
    font-weight: 400;
}

/* ==========================================   DAY TOURS SECTION   ========================================== */
.day-tours {
    background: var(--bg-secondary);
}

.day-tours-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.day-tour-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.day-tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.day-tour-image {
    height: 200px;
    overflow: hidden;
}

.day-tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.day-tour-card:hover .day-tour-image img {
    transform: scale(1.1);
}

.day-tour-content {
    padding: var(--space-xl);
    text-align: center;
}

.day-tour-content h3 {
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.day-tour-content .btn {
    width: 100%;
}

/* ==========================================   CTA SECTION   ========================================== */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1524492412937-b28074a5d7da?w=1920') center/cover no-repeat;
    opacity: 0.15;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: var(--fs-3xl);
    font-weight: var(--fw-bold);
    color: var(--text-white);
    margin-bottom: var(--space-md);
}

.cta-content p {
    font-size: var(--fs-md);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-xl);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

/* ==========================================   BOOKING & FAQ SECTION   ========================================== */
.booking-faq-section {
    background: #fff;
    padding-top: var(--space-4xl);
    padding-bottom: 80px;
    margin-bottom: 0;
}

.booking-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    margin-bottom: var(--space-4xl);
}

.booking-text-content {
    max-width: 600px;
}

.booking-text-content .section-title {
    font-family: 'Kaushan Script', cursive;
    color: #ffb800;
    /* Yellow-ish Orange from screenshot */
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.booking-desc {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

.booking-form-card {
    background: #fff;
    padding: var(--space-2xl);
    border: 1px solid #eee;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.form-row .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    font-size: 0.9rem;
    color: var(--text-primary);
    outline: none;
    transition: var(--transition-base);
}

.form-row .form-control:focus {
    border-color: var(--primary-color);
}

textarea.form-control {
    resize: none;
    font-family: inherit;
}

.form-submit-wrapper {
    text-align: center;
    margin-top: var(--space-md);
}

.btn-submit-dark {
    background: var(--primary-color);
    color: #fff;
    padding: 12px 35px;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-submit-dark:hover {
    background: var(--primary-color);
}

/* FAQ STYLES */
.faq-heading {
    color: var(--text-primary);
    font-family: 'Kaushan Script', cursive;
    font-size: 3rem;
    margin-bottom: var(--space-xl);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.faq-item {
    display: flex;
    flex-wrap: wrap;
    /* Allow wrapping */
    align-items: center;
    /* Center vertically for the collapsed state */
    border: 1px solid var(--primary-color);
    /* Orange Border */
    border-radius: 50px;
    padding: 15px 30px;
    background: #fff;
    transition: var(--transition-base);
    cursor: pointer;
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(240, 124, 0, 0.15);
}

.faq-item.active {
    border-radius: 20px;
    /* Less rounded for expanded state if desired, or keep as is */
    align-items: flex-start;
    /* Align smoothly when expanded */
}

/* Header Row (Number, Title, Icon) stays on top */
.faq-number {
    font-weight: bold;
    color: var(--text-primary);
    margin-right: var(--space-xl);
    font-size: 1.1rem;
}

.faq-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.faq-content h4 {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    color: var(--text-primary);
    padding-bottom: 0;
    transition: padding-bottom 0.3s ease;
}

/* The Answer part - hidden by default */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.3s ease, margin-top 0.3s ease;
    width: 100%;
    opacity: 0;
    margin-top: 0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-basis: 100%;
    /* Force it to new line */
    padding-left: 3.5rem;
    /* Align with text */
}

.faq-item.active .faq-answer {
    max-height: 300px;
    /* Arbitrary large enough value */
    opacity: 1;
    margin-top: 15px;
}

.faq-icon i {
    color: #ccc;
    font-size: 0.9rem;
}

/* ==========================================   SERVICES PAGE STYLES   ========================================== */
/* Page Banner */
.page-banner {
    height: 300px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=1920') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: var(--space-4xl);
}

.page-banner-title {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Service Intro */
.service-intro {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 4rem;
    padding: 0 var(--space-md);
}

.service-intro .section-title {
    font-family: 'Kaushan Script', cursive;
    color: #ffb800;
    /* Yellow */
    font-size: 3rem;
    margin-bottom: var(--space-lg);
}

.service-intro p {
    color: var(--text-secondary);
    line-height: 2;
    margin-bottom: var(--space-md);
    font-size: 0.95rem;
}

.service-intro a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

/* Dream CTA Banner */
.dream-cta {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1436491865332-7a61a10025f4?w=1920') center/cover fixed;
    padding: 80px 0;
    text-align: center;
    color: #fff;
    margin-bottom: 5rem;
}

.dream-cta h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.btn-dream {
    background: #004e89;
    /* Dark Blue */
    color: #fff;
    padding: 12px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: var(--transition-base);
}

.btn-dream:hover {
    background: #003366;
    transform: translateY(-3px);
}

/* All Services Grid */
.all-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: var(--space-4xl);
}

/* Remove bottom padding/margin from the last section to avoid white gap before footer */
body>section:last-of-type,
main>section:last-of-type {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* Specific fix: If services grid is inside the last section, remove its margin */
body>section:last-of-type .all-services-grid {
    margin-bottom: 0;
}

.service-box {
    background: #fff;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    border: 1px solid #f0f0f0;
    transition: var(--transition-base);
    height: 100%;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-box-icon {
    width: 60px;
    height: 60px;
    background: #003366;
    /* Dark Blue */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    transition: var(--transition-base);
}

.service-box:hover .service-box-icon {
    background: #ffb800;
    /* Yellow on hover */
    transform: rotateY(360deg);
}

.service-box h3 {
    font-family: 'Kaushan Script', cursive;
    color: #ffb800;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-box p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .all-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .all-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-banner-title {
        font-size: 2.5rem;
    }

    .dream-cta h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .all-services-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================   FOOTER   ========================================== */
.footer {
    position: relative;
    background: url('../assets/images/footer.jpeg') no-repeat center/cover;
    color: #fff;
    font-family: var(--font-primary);
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.footer-container {
    position: relative;
    max-width: 1200px;
    margin: auto;
    padding: 80px 20px 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 15px;
    position: relative;
    color: #fff;
    font-weight: 600;
}

.footer-col h4::after {
    content: "";
    width: 35px;
    height: 2px;
    background: var(--primary-color);
    position: absolute;
    left: 0;
    bottom: -6px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    opacity: 1;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #fff;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 4px;
    width: 20px;
    text-align: center;
}

.footer-contact-item a,
.footer-contact-item span {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    opacity: 0.9;
}

.footer-contact-item a:hover {
    color: var(--primary-color);
    opacity: 1;
}

.footer-divider {
    margin: 40px 0 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
}

.footer-bottom strong {
    color: var(--primary-color);
}

.footer-links {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    opacity: 0.85;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--primary-color);
    opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links {
        gap: 10px;
    }

    .footer-contact-item {
        justify-content: center;
        text-align: left;
        /* Keep text left aligned but the group centered */
    }
}


/* Floating Actions Buttons */
.wa-float-left {
    position: fixed;
    bottom: 30px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 35px;
    z-index: 3000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
    animation: fab-pulse 2s infinite;
}

.footer-right-actions {
    position: fixed;
    bottom: 30px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    z-index: 3000;
}

.back-to-top-orange {
    width: 45px;
    height: 45px;
    background: #F07C00;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
}

.back-to-top-orange.visible {
    opacity: 1;
    visibility: visible;
}

.call-now-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.call-now-box {
    background: #1a1a1a;
    color: #fff;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.call-btn-green {
    width: 60px;
    height: 60px;
    background: #2ecc71;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

@keyframes fab-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ==========================================   AGENCY INTRO SECTION   ========================================== */
.agency-intro {
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.intro-images-container {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-img-wrapper {
    position: absolute;
    width: 280px;
    height: 380px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    z-index: 2;
    background: #fff;
    border-radius: 4px;
}

.intro-img-1 {
    top: 0;
    left: 0;
    z-index: 1;
}

.intro-img-2 {
    bottom: 0;
    right: 30px;
    z-index: 4;
}

.intro-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.intro-img-wrapper:hover img {
    transform: scale(1.05);
}

.intro-outline-box {
    position: absolute;
    top: 60px;
    left: 120px;
    width: 280px;
    height: 380px;
    border: 2px solid #F07C00;
    z-index: 3;
}

.intro-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.intro-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    font-family: var(--font-primary);
    margin-bottom: 5px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.intro-subheading {
    font-size: 1.8rem;
    color: #d4af37;
    font-family: 'Kaushan Script', cursive;
    margin-bottom: 5px;
    font-weight: 400;
}

.intro-brand {
    font-size: 2.2rem;
    color: #F07C00;
    font-family: var(--font-primary);
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.intro-text {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 20px;
    max-width: 600px;
    /* Limit width for readability */
    font-family: var(--font-primary);
    text-align: justify;
    /* Optional: Cleaner block look, or left */
}

.intro-text:last-child {
    margin-bottom: 0;
}

.intro-text strong {
    color: #333;
    font-weight: 600;
}

/* Responsive for Intro Section */
@media (max-width: 1200px) {
    .intro-grid {
        gap: 40px;
    }

    .intro-heading {
        font-size: 2.2rem;
    }

    .intro-subheading {
        font-size: 1.6rem;
    }

    .intro-brand {
        font-size: 2rem;
    }
}

@media (max-width: 991px) {
    .agency-intro {
        padding: 80px 0;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .intro-images-container {
        height: 500px;
        max-width: 600px;
        margin: 0 auto;
    }

    .intro-img-wrapper {
        width: 250px;
        height: 340px;
    }

    .intro-outline-box {
        width: 250px;
        height: 340px;
        top: 50px;
        left: 100px;
    }

    .intro-content {
        align-items: center;
        text-align: center;
    }

    .intro-text {
        max-width: 600px;
        /* Keep readability on tablet */
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        /* Center align for symmetry on mobile/tablet */
    }
}

@media (max-width: 576px) {
    .agency-intro {
        padding: 60px 0;
    }

    .intro-images-container {
        height: 400px;
    }

    .intro-img-wrapper {
        width: 200px;
        height: 270px;
    }

    .intro-outline-box {
        width: 200px;
        height: 270px;
        top: 40px;
        left: 80px;
    }

    .intro-heading {
        font-size: 2rem;
    }

    .intro-subheading {
        font-size: 1.4rem;
    }

    .intro-brand {
        font-size: 1.8rem;
    }

    .intro-text {
        font-size: 0.95rem;
    }
}



/* ==========================================
   FLOATING ACTION BUTTONS
   ========================================== */
.footer-right-actions {
    position: fixed;
    bottom: 30px;
    right: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    z-index: 9999;
}

.back-to-top-orange {
    width: 50px;
    height: 50px;
    background: #F07C00;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top-orange.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-orange:hover {
    background: #cc6900;
    transform: scale(1.1);
}

.call-now-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.call-now-box {
    background: #1a1a1a;
    color: #fff;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.floating-whatsapp {
    position: fixed;
    left: 25px;
    bottom: 30px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    animation: pulse-whatsapp 2s infinite;
    z-index: 9999;
}

.floating-call {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    animation: pulse-whatsapp 2s infinite;
    animation-delay: 1s;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Responsiveness for Floating Buttons */
@media (max-width: 768px) {
    .footer-right-actions {
        right: 15px;
        bottom: 20px;
        gap: 12px;
    }

    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }

    .floating-whatsapp {
        left: 15px;
        bottom: 20px;
    }

    .back-to-top-orange {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .call-now-box {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Footer Clickable Contact Links */
.footer-address,
.footer-contact {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-address:hover,
.footer-contact:hover {
    color: #F07C00;
    transform: translateX(5px);
}

.footer-address {
    margin-bottom: 15px;
}