/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: #faf8f3;
    min-height: 100vh;
}

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

.header .container {
    max-width: 100%;
    padding: 0 30px;
    width: 100%;
}

/* Colors */
:root {
    --primary-color: #ff6b35;
    --primary-dark: #e55a2b;
    --primary-light: #ff8c5a;
    --secondary-color: #fff;
    --text-dark: #2c3e50;
    --text-light: #5a6c7d;
    --text-lighter: #95a5a6;
    --border-color: #e2e8f0;
    --background-light: #f8f9fa;
    --background-gradient: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 25px rgba(255,107,53,0.25);
    --border-radius: 12px;
}

/* Header Styles */
.header {
    background: white;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255,107,53,0.1);
    padding: 0;
    min-height: 90px;
    display: flex;
    align-items: center;
    overflow: visible;
}

/* Header Scrolled State */
.header.scrolled {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.header.scrolled .logo-text h1 {
    color: white !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: white !important;
    background-clip: unset !important;
}

.header.scrolled .logo-text span {
    color: rgba(0,0,0,0.8);
}

.header.scrolled .main-nav ul li a {
    color: white;
}

.header.scrolled .main-nav ul li a.active {
    background: white;
    color: var(--primary-color);
}

.header.scrolled .search-bar input {
    background: rgba(255,255,255,0.9);
    color: var(--text-dark);
}

.header.scrolled .search-bar input::placeholder {
    color: var(--text-light);
}

.header.scrolled .search-bar button {
    background: var(--primary-color);
    color: white;
}

.header.scrolled .search-bar button:hover {
    background: var(--primary-dark);
}

/* Dropdown styles when header is scrolled */
.header.scrolled .dropdown-menu {
    background: rgba(255, 255, 255, 0.98) !important;
    border: 1px solid rgba(255, 107, 53, 0.2) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2) !important;
}

.header.scrolled .dropdown-menu::before {
    background: rgba(255, 255, 255, 0.98) !important;
    border-left: 1px solid rgba(255, 107, 53, 0.2) !important;
    border-top: 1px solid rgba(255, 107, 53, 0.2) !important;
}

.header.scrolled .dropdown-menu a {
    color: var(--text-dark) !important;
}

.header.scrolled .dropdown-menu a:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 140, 90, 0.08) 100%) !important;
    color: var(--primary-color) !important;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    width: 100%;
    position: relative;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
    flex: 0 0 auto;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
}

.logo-img {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(255,107,53,0.2);
    transition: all 0.3s ease;
    object-fit: cover;
}

.logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255,107,53,0.3);
}

.logo-text h1 {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.1;
    background: var(--background-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text span {
    font-size: 0.9rem;
    color: var(--text-light);
    display: block;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: 2px;
    text-transform: capitalize;
    white-space: nowrap;
}

/* Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 3rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: rgba(255,107,53,0.05);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.nav-menu li {
    position: relative;
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: white;
    background: var(--background-gradient);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,107,53,0.3);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--background-gradient);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 80%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown > a i {
    margin-left: 0.3rem;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    min-width: 220px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    border: 1px solid rgba(255, 107, 53, 0.1);
    overflow: hidden;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.95);
    transform: rotate(45deg);
    border-left: 1px solid rgba(255, 107, 53, 0.1);
    border-top: 1px solid rgba(255, 107, 53, 0.1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-menu li {
    margin: 0;
    position: relative;
}

.dropdown-menu a {
    display: block;
    padding: 0.85rem 1.2rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 140, 90, 0.05) 100%);
    color: var(--primary-color);
    padding-left: 1.5rem;
}

.dropdown-menu a:hover::before {
    transform: scaleY(1);
}

/* Search Bar */
.search-bar {
    position: relative;
    z-index: 1100;
    flex: 0 0 auto;
    max-width: 250px;
}

.mobile-search {
    position: relative;
}

.search-bar form {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.8);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255,107,53,0.2);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    backdrop-filter: blur(10px);
}

.search-bar form:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(255,107,53,0.2);
    transform: translateY(-2px);
    background: rgba(255,255,255,0.95);
}

.search-bar input {
    border: none;
    background: none;
    outline: none;
    padding: 0.25rem;
    font-size: 1rem;
    width: 150px;
    transition: width 0.3s ease;
    color: var(--text-dark);
    font-weight: 500;
}

.search-bar input:focus {
    width: 200px;
}

.search-bar button {
    background: var(--background-gradient);
    border: none;
    color: var(--secondary-color);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.search-bar button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255,107,53,0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 0.75rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: var(--primary-dark);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--secondary-color);
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1002;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

/* Mobile menu backdrop overlay */
.mobile-menu-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-backdrop.active {
    display: block;
    opacity: 1;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

.mobile-nav-menu {
    list-style: none;
    padding: 1rem 0;
}

.mobile-nav-menu li {
    margin: 0;
}

.mobile-nav-menu a {
    display: block;
    padding: 1rem;
    text-decoration: none;
    color: var(--text-dark);
    transition: background-color 0.3s ease;
}

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

.mobile-dropdown-menu {
    display: none;
    background: var(--background-light);
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: block;
}

.mobile-dropdown > a i {
    transition: transform 0.25s ease;
    display: inline-block;
}

.mobile-dropdown > a i.fa-rotate-180 {
    transform: rotate(180deg);
}

.mobile-dropdown-menu li a {
    padding-left: 2rem;
    font-size: 0.9rem;
    color: var(--text-light);
    border-left: 3px solid var(--primary-color);
}

.mobile-search {
    padding: 1rem;
    border-top: 1px solid var(--border-color);
}

.mobile-search form {
    display: flex;
    align-items: center;
    background: var(--background-light);
    border-radius: 25px;
    padding: 0.5rem 1rem;
}

.mobile-search input {
    border: none;
    background: none;
    outline: none;
    padding: 0.25rem;
    font-size: 0.9rem;
    flex: 1;
}

.mobile-search button {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0.25rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 90px;
    background: var(--background-gradient);
}

.hero-slider {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-slide {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,107,53,0.8) 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    text-align: center;
    color: var(--secondary-color);
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
    z-index: 2;
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    line-height: 1.6;
}

/* Slick Slider Dots */
.hero-slider .slick-dots {
    bottom: 30px;
    z-index: 3;
}

.hero-slider .slick-dots li button:before {
    background: white;
    opacity: 0.5;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.hero-slider .slick-dots li.slick-active button:before {
    opacity: 1;
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow);
}

.btn-primary {
    background: var(--background-gradient);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Section Styles */
.section {
    padding: 5rem 0;
    position: relative;
    background: #faf8f3;
    overflow: hidden;
}

/* 3D Shadow Effect for Inner Pages */
.inner-page .section {
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 107, 53, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    margin: 1rem 0;
    border-radius: 20px;
    transform: translateZ(0);
    transition: all 0.3s ease;
    background: linear-gradient(145deg, #ffffff 0%, #faf8f3 100%);
    position: relative;
}

.inner-page .section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--primary-color) 100%);
    border-radius: 20px 20px 0 0;
}

.inner-page .section:hover {
    box-shadow: 
        0 35px 60px -15px rgba(255, 107, 53, 0.3),
        0 0 0 2px rgba(255, 107, 53, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transform: translateY(-5px) translateZ(0);
}

/* Hero section exception for inner pages */
.inner-page .hero {
    box-shadow: none;
    margin: 0;
    border-radius: 0;
}

.inner-page .hero::before {
    display: none;
}

/* Story section exception for inner pages - preserve cream background */
.inner-page .story-section {
    background: #f5f0e6 url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circles-pattern" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(255,107,53,0.15)"/><circle cx="5" cy="5" r="1" fill="rgba(255,107,53,0.12)"/><circle cx="35" cy="35" r="1" fill="rgba(255,107,53,0.12)"/></pattern></defs><rect width="100" height="100" fill="url(%23circles-pattern)"/></svg>') repeat;
}

.inner-page .story-section::before {
    display: none;
}

/* CTA section exception for inner pages */
.inner-page .cta-compact {
    box-shadow: none;
    margin: 0;
    border-radius: 0;
}

.inner-page .cta-compact::before {
    display: none;
}

/* Counter section exception for inner pages */
.inner-page .counter-section {
    box-shadow: none;
    margin: 0;
    border-radius: 0;
}

.inner-page .counter-section::before {
    display: none;
}

/* 3D Form Styling */
.form-3d {
    background: linear-gradient(145deg, #ffffff 0%, #faf8f3 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 
        0 20px 40px -10px rgba(0, 0, 0, 0.2),
        0 0 0 2px rgba(255, 107, 53, 0.1),
        inset 0 2px 4px rgba(255, 255, 255, 0.8),
        inset 0 -2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    transform: translateZ(0);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.form-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--primary-color) 100%);
    border-radius: 20px 20px 0 0;
}

.form-3d:hover {
    box-shadow: 
        0 30px 50px -12px rgba(255, 107, 53, 0.25),
        0 0 0 3px rgba(255, 107, 53, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.9),
        inset 0 -2px 4px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px) translateZ(0);
}

.form-3d .form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    display: block;
}

.form-3d input[type="text"],
.form-3d input[type="email"],
.form-3d input[type="tel"],
.form-3d input[type="date"],
.form-3d input[type="time"],
.form-3d input[type="number"],
.form-3d select,
.form-3d textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background: white;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.05),
        inset 0 1px 2px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-3d input:focus,
.form-3d select:focus,
.form-3d textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 
        0 4px 8px rgba(255, 107, 53, 0.2),
        0 0 0 4px rgba(255, 107, 53, 0.1),
        inset 0 1px 2px rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.form-3d button[type="submit"] {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 
        0 8px 16px rgba(255, 107, 53, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    transform: translateZ(0);
}

.form-3d button[type="submit"]:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    box-shadow: 
        0 12px 24px rgba(255, 107, 53, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.4);
    transform: translateY(-3px) translateZ(0);
}

.form-3d button[type="submit"]:active {
    transform: translateY(-1px) translateZ(0);
}

/* Car booking form specific styling */
.car-booking-form {
    background: linear-gradient(145deg, #ffffff 0%, #faf8f3 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 
        0 20px 40px -10px rgba(0, 0, 0, 0.2),
        0 0 0 2px rgba(255, 107, 53, 0.1);
    margin-bottom: 3rem;
    position: relative;
}

.car-booking-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--primary-color) 100%);
    border-radius: 20px 20px 0 0;
}

/* Custom tour form container styling */
.custom-tour-form {
    background: linear-gradient(145deg, #ffffff 0%, #faf8f3 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow:
        0 20px 40px -10px rgba(0, 0, 0, 0.2),
        0 0 0 2px rgba(255, 107, 53, 0.1);
    margin-bottom: 3rem;
    position: relative;
}

.custom-tour-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--primary-color) 100%);
    border-radius: 20px 20px 0 0;
}

/* Rail ticket form container styling */
.rail-ticket-form {
    background: linear-gradient(145deg, #ffffff 0%, #faf8f3 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow:
        0 20px 40px -10px rgba(0, 0, 0, 0.2),
        0 0 0 2px rgba(255, 107, 53, 0.1);
    margin-bottom: 3rem;
    position: relative;
}

.rail-ticket-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--primary-color) 100%);
    border-radius: 20px 20px 0 0;
}

/* Hotel booking form container styling */
.hotel-search-form {
    background: linear-gradient(145deg, #ffffff 0%, #faf8f3 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow:
        0 20px 40px -10px rgba(0, 0, 0, 0.2),
        0 0 0 2px rgba(255, 107, 53, 0.1);
    margin-bottom: 3rem;
    position: relative;
}

.hotel-search-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--primary-color) 100%);
    border-radius: 20px 20px 0 0;
}

/* Story Section - Circles Pattern */
.story-section {
    background: #f5f0e6 url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circles-pattern" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(255,107,53,0.15)"/><circle cx="5" cy="5" r="1" fill="rgba(255,107,53,0.12)"/><circle cx="35" cy="35" r="1" fill="rgba(255,107,53,0.12)"/></pattern></defs><rect width="100" height="100" fill="url(%23circles-pattern)"/></svg>') repeat;
}

/* Carousel Section - Hexagons Pattern */
.carousel-section {
    background: #faf8f3 url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagons-pattern" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><polygon points="25,5 45,15 45,35 25,45 5,35 5,15" fill="none" stroke="rgba(255,107,53,0.15)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagons-pattern)"/></svg>') repeat;
}

/* Gallery Section - Triangles Pattern */
.auto-carousel {
    background: #faf8f3 url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="triangles-pattern" x="0" y="0" width="35" height="35" patternUnits="userSpaceOnUse"><polygon points="17.5,5 30,25 5,25" fill="rgba(255,107,53,0.18)"/></pattern></defs><rect width="100" height="100" fill="url(%23triangles-pattern)"/></svg>') repeat;
}

/* Testimonials Section - Stars Pattern */
.testimonials {
    background: #faf8f3 url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars-pattern" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><polygon points="25,10 30,20 40,20 32,28 35,38 25,32 15,38 18,28 10,20 20,20" fill="rgba(255,107,53,0.16)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars-pattern)"/></svg>') repeat;
    position: relative;
    overflow: hidden;
}

/* Additional Section Patterns */
.section:nth-child(even):not(.story-section):not(.carousel-section):not(.testimonials) {
    background: #faf8f3 url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots-pattern" x="0" y="0" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1.5" fill="rgba(255,107,53,0.16)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots-pattern)"/></svg>') repeat;
}

.section:nth-child(3n):not(.story-section):not(.carousel-section):not(.testimonials) {
    background: #faf8f3 url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="crosses-pattern" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><path d="M15,5 L15,25 M5,15 L25,15" stroke="rgba(255,107,53,0.14)" stroke-width="1.2"/></pattern></defs><rect width="100" height="100" fill="url(%23crosses-pattern)"/></svg>') repeat;
}

.section:nth-child(4n):not(.story-section):not(.carousel-section):not(.testimonials) {
    background: #faf8f3 url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="squares-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><rect x="5" y="5" width="10" height="10" fill="none" stroke="rgba(255,107,53,0.15)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23squares-pattern)"/></svg>') repeat;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--background-gradient);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Auto Image Slider Hero Section */
.hero-slider-simple {
    height: 500px;
    margin-top: 90px;
    position: relative;
    overflow: hidden;
}

.hero-slider-container {
    height: 500px;
    width: 100%;
    min-height: 500px;
}

.hero-slider-container .slick-list,
.hero-slider-container .slick-track {
    height: 500px;
}

.hero-slider-container .slick-track {
    display: flex !important;
}

.hero-slider-container .slick-slide {
    height: 500px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.hero-slide {
    height: 500px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 500px;
}

.hero-slide-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    background: rgba(0,0,0,0.5);
    padding: 2rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(5px);
    animation: fadeInUp 1s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-slide-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    line-height: 1.2;
}

.hero-slide-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    line-height: 1.6;
}

/* Slick Slider Dots for Simple Hero */
.hero-slider-container .slick-dots {
    bottom: 20px;
    z-index: 10;
}

.hero-slider-container .slick-dots li button:before {
    background: white;
    opacity: 0.7;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.hero-slider-container .slick-dots li.slick-active button:before {
    opacity: 1;
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Our Story Section */
.story-section {
    position: relative;
    overflow: hidden;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.story-text {
    color: var(--text-dark);
    padding: 2rem;
}

.story-text h3 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
}

.story-text h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.story-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 500;
}

.story-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.story-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.story-image:hover img {
    transform: scale(1.1);
}

/* Carousel Section */
.carousel-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.manual-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem;
    color: white;
}

.carousel-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    transform: perspective(1000px) rotateX(5deg);
    transition: all 0.5s ease;
}

.carousel-image:hover {
    transform: perspective(1000px) rotateX(0deg) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.carousel-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.carousel-image:hover img {
    transform: scale(1.1);
}

.carousel-text h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.carousel-text p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 500;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.carousel-control {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.carousel-control:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1) rotate(180deg);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* Auto Carousel */
.auto-carousel {
    margin-top: 3rem;
    padding: 3rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.auto-carousel .slick-slide {
    margin: 0 15px;
}

.auto-carousel-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    height: 280px;
    cursor: pointer;
    transition: all 0.5s ease;
    transform: perspective(1000px) rotateY(-5deg);
}

.auto-carousel-item:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px) scale(1.05);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    animation: glow 2s ease-in-out infinite;
}

.auto-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.auto-carousel-item:hover img {
    transform: scale(1.15);
}

.auto-carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 2rem 1rem 1rem;
    color: white;
    opacity: 0;
    transition: all 0.5s ease;
    transform: translateY(20px);
}

.auto-carousel-item:hover .auto-carousel-overlay {
    opacity: 1;
    transform: translateY(0);
}

.auto-carousel-overlay h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.auto-carousel-overlay p {
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Testimonials */
.testimonials {
    position: relative;
    overflow: hidden;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
}

.testimonials-wrapper {
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
}

.testimonial-slide {
    flex: 0 0 calc(33.333% - 1.333rem);
    min-width: 0;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonials-nav-btn {
    background: var(--background-gradient);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,107,53,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255,107,53,0.4);
}

.testimonials-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card,
.package-card,
.hotel-card,
.route-card,
.vehicle-card,
.testimonial-card {
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
}

.service-card:hover,
.package-card:hover,
.hotel-card:hover,
.route-card:hover,
.vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.service-card:hover h3,
.package-card:hover h3,
.hotel-card:hover h3,
.route-card:hover h3,
.vehicle-card:hover h3 {
    color: var(--primary-color);
}

.service-card:hover p,
.package-card:hover p,
.hotel-card:hover p,
.route-card:hover p,
.vehicle-card:hover p {
    color: var(--text-light);
}

.testimonial-card:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,107,53,0.1);
    transition: all 0.5s ease;
    position: relative;
    color: var(--text-dark);
    transform: perspective(1000px) rotateX(2deg);
}

.testimonial-card:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    font-family: Georgia, serif;
    opacity: 0.3;
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255,255,255,0.3);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.testimonial-avatar:hover {
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(255,255,255,0.5);
}

.testimonial-info h4 {
    color: #ff6b35;
    margin-bottom: 0.25rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-shadow: none;
}

.testimonial-info p {
    color: var(--text-lighter);
    font-size: 0.9rem;
}

/* Counter Section */
.counter-section {
    padding: 3rem 0;
    background: var(--primary-color);
    color: var(--secondary-color);
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.counter-item {
    padding: 1rem;
}

.counter-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.counter-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.counter-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Compact CTA Section */
.cta-compact {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 2.5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><rect x="0" y="0" width="30" height="30" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/><circle cx="15" cy="15" r="2" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: var(--secondary-color);
    padding: 1.2rem 0;
    position: relative;
    overflow: hidden;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-pattern" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="rgba(255,107,53,0.08)"/><circle cx="5" cy="5" r="1" fill="rgba(255,107,53,0.06)"/><circle cx="35" cy="35" r="1" fill="rgba(255,107,53,0.06)"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-pattern)"/></svg>') repeat;
    pointer-events: none;
    z-index: 1;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--background-gradient);
    z-index: 2;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-brand .logo-text h1 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
    background: var(--background-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand .logo-text span {
    color: rgba(255,255,255,0.8);
    font-size: 0.7rem;
    white-space: normal;
    max-width: none;
    overflow: visible;
    text-overflow: unset;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    margin-top: 0.3rem;
    line-height: 1.3;
}

.footer-links-section {
    display: flex;
    gap: 2rem;
    flex: 2;
    justify-content: center;
}

.footer-links-column h4 {
    color: white;
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.footer-links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-column li {
    margin-bottom: 0.25rem;
}

.footer-links-column a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links-column a:hover {
    color: var(--primary-color);
    transform: translateX(2px);
}

.footer-social-section {
    flex: 1;
    min-width: 180px;
    text-align: left;
}

.footer-social-section h4 {
    color: white;
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 0.8rem;
    justify-content: flex-start;
    align-items: center;
}

.social-icons a {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 0.85rem;
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,107,53,0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 0.6rem 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

.footer-bottom-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 3;
}

.footer-bottom-links {
    display: flex;
    gap: 0.8rem;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.8rem;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}


.footer-logo {
    flex: 1;
    min-width: 250px;
    text-align: left;
}

.footer-logo .logo {
    margin-bottom: 0.5rem;
}

.footer-logo .logo-img {
    width: 50px;
    height: 50px;
}

.footer-logo .logo-text h1 {
    font-size: 1.4rem;
    background: var(--background-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo .logo-text span {
    font-size: 0.8rem;
    white-space: normal;
    max-width: none;
    overflow: visible;
    text-overflow: unset;
}

.footer-description {
    color: rgba(255,255,255,0.7);
    line-height: 1.3;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
}

.footer-links h3,
.footer-social h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.footer-links {
    flex: 2;
    min-width: 250px;
    text-align: left;
}

.footer-social {
    flex: 1;
    min-width: 180px;
    text-align: left;
}

.footer-links ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.2rem 1rem;
}

.footer-links li {
    margin-bottom: 0;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.8rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    align-items: center;
    justify-content: flex-start;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 0.85rem;
}

.social-icons a:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.contact-info p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.25rem;
    font-size: 0.8rem;
}

.contact-info i {
    margin-right: 0.3rem;
    font-size: 0.75rem;
}

/* Quick Inquiry FAB */
.quick-inquiry-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.fab-button {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 50px;
    padding: 1rem 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-hover);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.fab-button:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,107,53,0.3);
}

.fab-button i {
    font-size: 1.2rem;
}

/* FAB Options Dropdown */
.fab-options {
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-bottom: 10px;
    display: none;
    flex-direction: column;
    gap: 10px;
    animation: slideUp 0.3s ease;
}

.fab-options.active {
    display: flex;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fab-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 50px;
    background: white;
    color: var(--text-dark);
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    white-space: nowrap;
    font-weight: 500;
}

.fab-option:hover {
    transform: translateX(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.fab-option i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.fab-whatsapp {
    background: #25D366;
    color: white;
}

.fab-whatsapp:hover {
    background: #128C7E;
}

.fab-call {
    background: #007bff;
    color: white;
}

.fab-call:hover {
    background: #0056b3;
}

.fab-form {
    background: var(--primary-color);
    color: white;
}

.fab-form:hover {
    background: var(--primary-dark);
}


/* Modal */
.quick-inquiry-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1003;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.quick-inquiry-modal.active {
    visibility: visible;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quick-inquiry-modal.active .modal-overlay {
    opacity: 1;
}

.modal-content {
    position: relative;
    background: var(--secondary-color);
    max-width: 500px;
    margin: 5% auto;
    border-radius: 10px;
    box-shadow: var(--shadow-hover);
    max-height: 90vh;
    overflow-y: auto;
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.1s;
}

.quick-inquiry-modal.active .modal-content,
#customTourModal .modal-content,
#packageModal .modal-content {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    color: var(--text-dark);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-body {
    padding: 1.5rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--secondary-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-lighter);
    font-style: italic;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255,107,53,0.3); }
    50% { box-shadow: 0 0 40px rgba(255,107,53,0.6); }
}

@keyframes slideInFromLeft {
    0% { transform: translateX(-100px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideInFromRight {
    0% { transform: translateX(100px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-30px); }
    60% { transform: translateY(-15px); }
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.animated {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Section Fade Animation */
.section-fade {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.section-fade.animated {
    opacity: 1;
}

/* Loading Animation */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

/* Enhanced hover effects */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.hover-glow {
    transition: all 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(255,107,53,0.3);
}

/* Gradient text effect */
.gradient-text {
    background: var(--background-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .main-nav {
        margin: 0 1.5rem;
    }

    .nav-menu {
        gap: 1rem;
        padding: 0.75rem 1rem;
    }

    .nav-menu a {
        font-size: 0.85rem;
        padding: 0.4rem 0.7rem;
    }

    .search-bar input {
        width: 100px;
    }

    .search-bar input:focus {
        width: 130px;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-image {
        transform: none;
    }
    
    .carousel-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .carousel-image {
        transform: none;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: left;
    }

    .footer-links-section {
        flex-wrap: wrap;
    }

    .social-icons {
        justify-content: flex-start;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Forms */
    .car-booking-form,
    .custom-tour-form,
    .rail-ticket-form,
    .hotel-search-form,
    .form-3d {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    /* Header */
    .mobile-menu-toggle {
        display: block;
        flex-shrink: 0;
    }
    
    .main-nav {
        display: none;
    }
    
    .search-bar {
        display: none;
    }

    .header {
        min-height: 70px;
    }

    .header .container {
        padding: 0 15px;
    }

    .logo {
        flex: 1;
        min-width: 0;
    }

    .logo a {
        min-width: 0;
    }

    .logo-text {
        min-width: 0;
        overflow: hidden;
    }

    .logo-img {
        width: 45px;
        height: 45px;
        margin-right: 10px;
        flex-shrink: 0;
    }

    .logo-text h1 {
        font-size: 1.4rem;
    }

    .logo-text span {
        font-size: 0.7rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 160px;
    }
    .hero {
        margin-top: 70px;
        min-height: 400px;
    }

    .hero-slider-simple {
        margin-top: 70px;
        height: 320px;
    }

    .hero-slider-container,
    .hero-slider-container .slick-list,
    .hero-slider-container .slick-track,
    .hero-slider-container .slick-slide,
    .hero-slide {
        height: 320px;
        min-height: 320px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }

    .hero-slide-content h1 {
        font-size: 1.6rem;
    }

    .hero-slide-content p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .hero-slide-content {
        padding: 1.2rem;
    }

    /* Sections */
    .section {
        padding: 3rem 0;
    }

    .section-title h2 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .section-title p {
        font-size: 1rem;
    }

    /* Inner page sections */
    .inner-page .section {
        margin: 0.5rem 0;
        border-radius: 15px;
        box-shadow: 
            0 15px 30px -10px rgba(0, 0, 0, 0.2),
            0 0 0 1px rgba(255, 107, 53, 0.05);
    }
    
    .inner-page .section::before {
        height: 3px;
    }
    
    .inner-page .section:hover {
        transform: none;
    }

    /* Story */
    .story-text {
        padding: 0.5rem;
    }

    .story-text h3 {
        font-size: 1.8rem;
    }

    .story-image {
        transform: none;
    }

    /* Carousel */
    .carousel-item {
        padding: 1.5rem;
    }

    .carousel-image {
        transform: none;
    }

    /* Testimonials */
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-slide {
        flex: 0 0 100%;
    }

    .testimonial-card {
        transform: none;
        padding: 1.5rem;
    }

    .testimonial-card:hover {
        transform: translateY(-5px);
    }

    /* Counter */
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* CTA */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        padding: 0 1rem;
    }

    .footer-links {
        min-width: unset;
        width: 100%;
    }

    .footer-links ul {
        grid-template-columns: 1fr 1fr;
    }

    .footer-links-section {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-bottom-inner {
        padding: 0 1rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Forms */
    .car-booking-form,
    .custom-tour-form,
    .rail-ticket-form,
    .hotel-search-form,
    .form-3d {
        padding: 1.5rem;
        border-radius: 15px;
    }

    .form-3d:hover {
        transform: none;
    }

    .form-3d button[type="submit"] {
        width: 100%;
        padding: 1rem;
    }

    /* Modal */
    .modal-content {
        margin: 5% 1rem;
        max-width: none;
        border-radius: 15px;
    }

    /* Quick inquiry FAB */
    .quick-inquiry-fab {
        bottom: 20px;
        right: 15px;
    }

    .back-to-top {
        bottom: 20px;
        left: 15px;
    }

    /* Auto carousel */
    .auto-carousel-item {
        transform: none;
    }

    .auto-carousel-item:hover {
        transform: translateY(-5px);
    }

    /* Buttons */
    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    /* Header */
    .logo-text span {
        display: none;
    }

    .logo-text h1 {
        font-size: 1.2rem;
    }

    .logo-img {
        width: 38px;
        height: 38px;
        margin-right: 8px;
    }

    /* Hero */
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-slide-content h1 {
        font-size: 1.3rem;
    }

    .hero-slide-content p {
        font-size: 0.85rem;
    }

    /* Sections */
    .section {
        padding: 2.5rem 0;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    /* Inner page sections */
    .inner-page .section {
        margin: 0.25rem 0;
        border-radius: 12px;
        box-shadow: 
            0 10px 20px -8px rgba(0, 0, 0, 0.15),
            0 0 0 1px rgba(255, 107, 53, 0.03);
    }
    
    .inner-page .section::before {
        height: 2px;
    }
    
    .inner-page .section:hover {
        transform: none;
    }

    /* Counter */
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .counter-number {
        font-size: 2rem;
    }

    /* Footer */
    .footer-links ul {
        grid-template-columns: 1fr;
    }

    /* Forms */
    .car-booking-form,
    .custom-tour-form,
    .rail-ticket-form,
    .hotel-search-form,
    .form-3d {
        padding: 1.2rem;
    }

    /* FAB */
    .fab-button {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .fab-button i {
        font-size: 1rem;
    }
    
    .quick-inquiry-fab {
        bottom: 20px;
        right: 15px;
    }
    
    .back-to-top {
        bottom: 20px;
        left: 15px;
    }

    /* Mobile menu width */
    .mobile-menu {
        width: 100%;
    }

    /* Buttons */
    .btn {
        padding: 0.65rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .quick-inquiry-fab,
    .back-to-top {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .section {
        padding: 1rem 0;
    }
}

/* ============================================
   SEARCH PAGE
   ============================================ */

.search-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 5rem 0 3rem;
    margin-top: 90px;
    text-align: center;
    color: white;
}

.search-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.search-hero-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto 1rem;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.search-hero-form input {
    flex: 1;
    border: none;
    outline: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    color: var(--text-dark);
    background: transparent;
}

.search-hero-form button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.search-hero-form button:hover {
    background: var(--primary-dark);
}

.search-meta {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

/* Results grid */
.search-results-section {
    min-height: 40vh;
}

.search-results-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.search-result-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.search-result-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.result-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255,107,53,0.12) 0%, rgba(255,140,90,0.08) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.result-body {
    flex: 1;
    min-width: 0;
}

.result-meta {
    margin-bottom: 0.3rem;
}

.result-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    background: rgba(255,107,53,0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
}

.result-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.result-body p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.result-arrow {
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.search-result-card:hover .result-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Empty / no results state */
.search-empty {
    text-align: center;
    padding: 4rem 1rem;
    color: var(--text-light);
}

.search-empty i {
    font-size: 4rem;
    color: var(--border-color);
    margin-bottom: 1.5rem;
    display: block;
}

.search-empty h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.search-empty p {
    font-size: 1rem;
    margin-bottom: 2rem;
}

.popular-searches {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.popular-searches span {
    font-weight: 600;
    color: var(--text-dark);
}

.popular-searches a {
    background: white;
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.popular-searches a:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Live autocomplete dropdown */
.search-autocomplete {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border: 1px solid var(--border-color);
    z-index: 9999;
    overflow: hidden;
    display: none;
    min-width: 280px;
}

.search-autocomplete.visible {
    display: block;
}

.autocomplete-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: var(--text-dark);
    transition: background 0.2s ease;
    font-size: 0.9rem;
}

.autocomplete-item:hover,
.autocomplete-item.active {
    background: rgba(255,107,53,0.08);
    color: var(--primary-color);
}

.autocomplete-item i {
    color: var(--primary-color);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.autocomplete-item .ac-category {
    font-size: 0.7rem;
    color: var(--text-lighter);
    margin-left: auto;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .search-hero {
        padding: 3.5rem 0 2rem;
        margin-top: 70px;
    }

    .search-hero h1 {
        font-size: 1.8rem;
    }

    .search-hero-form {
        border-radius: 12px;
        flex-direction: column;
    }

    .search-hero-form input {
        border-radius: 12px 12px 0 0;
        padding: 0.9rem 1.2rem;
    }

    .search-hero-form button {
        border-radius: 0 0 12px 12px;
        padding: 0.9rem;
    }

    .search-result-card {
        padding: 1rem;
        gap: 1rem;
    }

    .result-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .result-arrow {
        display: none;
    }
}
