/* Global Styles */
:root {
    --primary-color: #FF5252; /* unified with theme primary */
    --secondary-color: #4ecdc4;
    --dark-color: #1a1a2e;
    --light-color: #f7f7f7;
    --gray-color: #6c757d;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base font size for better scaling */
    scroll-padding-top: 70px; /* Account for fixed header */
}

@media (max-width: 900px) {
    html {
        scroll-padding-top: 60px;
    }
}

@media (max-width: 576px) {
    html {
        scroll-padding-top: 55px;
    }
}

@media (max-width: 480px) {
    html {
        scroll-padding-top: 50px;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #fff;
    overflow-x: hidden;
    font-size: 1rem;
}

a {
    text-decoration: none;
    color: var(--dark-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

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

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-header p {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: var(--gray-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    font-size: clamp(0.9rem, 2vw, 1rem);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: #ff5252;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-text {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-text i {
    transition: var(--transition);
}

.btn-text:hover {
    color: #ff5252;
}

.btn-text:hover i {
    transform: translateX(5px);
}

/* Modern Header Gradient Overlay */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 16px rgba(0,0,0,0.1);
    transition: background 0.3s, box-shadow 0.3s;
}
header .nav-bg-gradient {
    display: none;
}
header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
header .container {
    position: relative;
    z-index: 1;
    padding-left: 0;
}
.header-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    min-height: 70px;
    padding: 0 20px;
    gap: 20px;
}
.logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}
.nav-links {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    background: none;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 600px;
}
.nav-links a {
    color: #fff;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0 0.5em;
    position: relative;
    transition: color 0.3s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-links a i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}
.nav-links a.active i {
    transform: rotate(45deg);
}
header.scrolled .nav-links a {
    color: #232526;
}
.mobile-menu-btn {
    display: none;
    flex: 0 0 auto;
    margin-left: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Ensure nav links are visible on desktop */
@media (min-width: 901px) {
    .nav-links {
        display: flex !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: none !important;
        padding: 0 !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 25px !important;
        overflow: visible !important;
        box-shadow: none !important;
        transform: none !important;
        left: auto !important;
        max-width: none !important;
    }
    
    .nav-links a {
        color: #fff !important;
        padding: 10px 0 !important;
        font-size: 1.1rem !important;
        border-bottom: none !important;
        position: relative !important;
        width: auto !important;
    }
    
    header.scrolled .nav-links a {
        color: #232526 !important;
    }
    
    .mobile-menu-btn {
        display: none !important;
    }
    
    /* Ensure dropdown positioning on desktop */
    .dropdown {
        position: relative !important;
        margin-left: 0 !important;
        width: auto !important;
    }
    
    .dropdown-menu {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: auto !important;
        max-height: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(10px) !important;
    }
    
    .dropdown:hover .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }
}
.logo h1, .logo a {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 0.2em;
    color: #fff;
}
.brand-mark {
    height: 30px;
    width: auto;
    object-fit: contain;
    margin-left: -2px;
    margin-right: 7px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s;
}
header.scrolled .logo h1, header.scrolled .logo a {
    color: #232526;
}
header.scrolled .brand-mark {
    filter: none;
}
.logo-travel {
    color: #fff;
    font-weight: 700;
    transition: color 0.3s;
}
.logo-ease {
    color: var(--primary-color);
    font-weight: 700;
    margin-left: 1px;
    transition: color 0.3s;
}
header.scrolled .logo-travel {
    color: #232526;
}
header.scrolled .logo-ease {
    color: var(--primary-color);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}
.nav-links a.active::after,
.nav-links a:hover::after {
    width: 100%;
}
.nav-links a.active,
.nav-links a:hover {
    color: var(--primary-color);
}

/* Enhanced Active section highlighting */
.nav-links a[href*="#about"].active,
.nav-links a[href*="#services"].active,
.nav-links a[href*="#destinations"].active,
.nav-links a[href*="#testimonials"].active,
.nav-links a[href*="#contact"].active,
.nav-links a.nav-link-section.active {
    color: var(--primary-color);
}

.nav-links a[href*="#about"].active::after,
.nav-links a[href*="#services"].active::after,
.nav-links a[href*="#destinations"].active::after,
.nav-links a[href*="#testimonials"].active::after,
.nav-links a[href*="#contact"].active::after,
.nav-links a.nav-link-section.active::after {
    width: 100%;
}

/* Enhanced navigation link states */
.nav-links a.nav-link-home {
    position: relative;
}

.nav-links a.nav-link-section {
    position: relative;
}

.nav-links a.nav-link-dropdown {
    position: relative;
}

.nav-links a.dropdown-link {
    position: relative;
    transition: all 0.2s ease;
}

/* Improved hover effects for navigation links */
.nav-links a:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

.nav-links a.nav-link-section:hover,
.nav-links a.nav-link-dropdown:hover {
    color: var(--primary-color);
}

.nav-links a.dropdown-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--primary-color) !important;
    transform: translateX(3px);
}

/* Ensure proper link activation */
.nav-links a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Improve dropdown accessibility */
.dropdown > a:focus + .dropdown-menu,
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/* Enhanced Dropdown Menu Styles */
.dropdown {
    flex: 0 0 auto;
    margin-left: auto;
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(30,30,30,0.98);
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

header.scrolled .dropdown-menu {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

/* Enhanced desktop dropdown functionality */
@media (min-width: 901px) {
    .dropdown:hover .dropdown-menu,
    .dropdown.hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .dropdown-menu {
        transform-origin: top;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    /* Improved dropdown positioning */
    .dropdown-menu {
        margin-top: 8px;
    }
    
    .dropdown-menu::before {
        content: '';
        position: absolute;
        top: -6px;
        left: 20px;
        width: 12px;
        height: 12px;
        background: inherit;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        transform: rotate(45deg);
        z-index: -1;
    }
    
    header.scrolled .dropdown-menu::before {
        border-left: 1px solid rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
}

.dropdown-menu li {
    padding: 0;
    margin: 0;
}

.dropdown-menu a {
    color: #fff !important;
    padding: 12px 20px;
    display: block;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 6px;
    margin: 2px 8px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

header.scrolled .dropdown-menu a {
    color: #232526 !important;
}

.dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--primary-color) !important;
    transform: translateX(3px);
}

header.scrolled .dropdown-menu a:hover {
    background-color: rgba(255, 82, 82, 0.1);
    color: var(--primary-color) !important;
    transform: translateX(3px);
}

.dropdown-menu a::after {
    display: none;
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 0.8em;
    color: #fff;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}

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

.dropdown:hover > a i,
.dropdown.hover > a i {
    transform: rotate(180deg);
}
/* Nav Overlay for Mobile */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    backdrop-filter: blur(5px);
}

/* Mobile Nav Modern */
@media (max-width: 900px) {
    .header-content {
        justify-content: space-between;
        min-height: 50px;
        padding: 0 12px;
    }
    .logo {
        margin-right: 0;
    }
    .nav-links {
        justify-content: flex-start;
        gap: 8px;
        margin: 0;
        padding: 0;
        flex-direction: column;
        align-items: flex-start;
    }
    .mobile-menu-btn {
        display: block;
        margin-left: 0;
    }
    .dropdown {
        margin-left: 0;
        width: 100%;
    }
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 280px;
        height: 100vh;
        background: rgba(30,30,30,0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding-top: 70px;
        padding-left: 20px;
        padding-right: 15px;
        transition: left 0.3s cubic-bezier(.77,0,.18,1);
        z-index: 1001;
        box-shadow: var(--box-shadow);
        overflow-y: auto;
        transform: translateX(0);
    }
    .nav-links.active {
        left: 0;
    }
    .nav-links a {
        color: #fff;
        padding: 8px 0;
        font-size: 0.9rem;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        position: relative;
        line-height: 1.2;
    }
    .nav-links a:hover {
        color: var(--primary-color);
    }
    header.scrolled .nav-links {
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(10px);
    }
    header.scrolled .nav-links a {
        color: #232526;
    }
    .nav-links a:last-child {
        border-bottom: none;
    }
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1002;
        position: relative;
        color: #fff;
        background: none;
        border: none;
        font-size: 1.4rem;
        margin-left: 12px;
        width: 36px;
        height: 36px;
        border-radius: 6px;
        transition: all 0.3s ease;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    
    .mobile-menu-btn i {
        transition: transform 0.3s ease;
    }
    
    .mobile-menu-btn.active i {
        transform: rotate(90deg);
    }
    .mobile-menu-btn:hover {
        background: rgba(255,255,255,0.1);
        transform: scale(1.05);
    }
    .mobile-menu-btn.active {
        color: var(--primary-color);
    }
    header.scrolled .mobile-menu-btn {
        color: var(--primary-color);
    }
    header.scrolled .mobile-menu-btn:hover {
        background: rgba(255,82,82,0.1);
    }
    .dropdown-menu {
        position: static;
        background: rgba(30,30,30,0.98);
        box-shadow: none;
        margin: 5px 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        width: 100%;
        border-radius: 8px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-5px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    header.scrolled .dropdown-menu {
        background: rgba(255,255,255,0.95);
        border: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 200px;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        padding: 8px 0;
    }
    
    .dropdown-menu a {
        padding: 10px 20px;
        font-size: 0.85rem;
        border-bottom: none;
        line-height: 1.3;
        margin: 2px 8px;
        border-radius: 6px;
        transition: all 0.2s ease;
    }
    
    header.scrolled .dropdown-menu a {
        color: #232526 !important;
    }
    
    .dropdown-menu a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: translateX(3px);
    }
    
    header.scrolled .dropdown-menu a:hover {
        background-color: rgba(255, 82, 82, 0.1);
        transform: translateX(3px);
    }
    
    .dropdown > a {
        width: 100%;
        justify-content: space-between;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        font-weight: 600;
        position: relative;
    }
    
    .dropdown > a i {
        transition: transform 0.3s ease;
        font-size: 0.8rem;
    }
    
    .dropdown.active > a i {
        transform: rotate(180deg);
    }
    
    /* Improved dropdown animations */
    .dropdown-menu {
        transform-origin: top;
    }
    
    .dropdown.active .dropdown-menu {
        animation: dropdownSlide 0.3s ease forwards;
    }
    
    @keyframes dropdownSlide {
        from {
            opacity: 0;
            transform: translateY(-5px) scaleY(0.8);
        }
        to {
            opacity: 1;
            transform: translateY(0) scaleY(1);
        }
    }
    
    /* Better touch targets for mobile */
    .dropdown > a,
    .dropdown-menu a {
        min-height: 44px;
        display: flex;
        align-items: center;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Ensure proper spacing for mobile nav */
    .nav-links li {
        margin-bottom: 4px;
        width: 100%;
    }
    
    .nav-links li:last-child {
        margin-bottom: 20px;
    }
    
    /* Enhanced mobile navigation animations */
    .nav-links {
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    /* Improved mobile menu button */
    .mobile-menu-btn {
        position: relative;
        overflow: hidden;
    }
    
    .mobile-menu-btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 82, 82, 0.1);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.3s ease;
    }
    
    .mobile-menu-btn:hover::before {
        width: 100%;
        height: 100%;
    }
    
    /* Enhanced mobile dropdown animations */
    @keyframes dropdownSlide {
        from {
            opacity: 0;
            transform: translateY(-10px) scaleY(0.8);
        }
        to {
            opacity: 1;
            transform: translateY(0) scaleY(1);
        }
    }
    
    .dropdown.active .dropdown-menu {
        animation: dropdownSlide 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
}
    
    /* Compact mobile header */
    header {
        min-height: 50px;
    }
    
    @media (max-width: 576px) {
        header {
            min-height: 45px;
        }
    }
    
    @media (max-width: 480px) {
        header {
            min-height: 42px;
        }
    }
/* Enhanced Nav Overlay for Mobile */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
}

.nav-links.active ~ .nav-overlay {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* Improved mobile navigation accessibility */
.nav-links a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 4px;
}

.nav-links a:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Enhanced mobile menu button focus states */
.mobile-menu-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 6px;
}

.mobile-menu-btn:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 6px;
}

/* Additional Mobile Responsive Styles */
@media (max-width: 576px) {
    .header-content {
        padding: 0 8px;
        min-height: 45px;
    }
    .nav-links {
        width: 85%;
        max-width: 250px;
        padding-left: 15px;
        padding-right: 12px;
        padding-top: 60px;
    }
    .mobile-menu-btn {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
        margin-left: 8px;
    }
    .nav-links a {
        font-size: 0.85rem;
        padding: 6px 0;
    }
    .dropdown-menu a {
        font-size: 0.75rem;
        padding: 5px 12px;
    }
    .logo h1, .logo a {
        font-size: 1.6rem;
    }
    .brand-mark {
        height: 28px;
    }
}

@media (max-width: 480px) {
    .header-content {
        min-height: 42px;
    }
    .nav-links {
        width: 90%;
        max-width: 240px;
        padding-top: 55px;
    }
    .mobile-menu-btn {
        width: 30px;
        height: 30px;
        font-size: 1.1rem;
    }
    .logo h1, .logo a {
        font-size: 1.4rem;
    }
    .brand-mark {
        height: 24px;
    }
    .nav-links a {
        font-size: 0.8rem;
        padding: 5px 0;
    }
    .dropdown-menu a {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)), url('../images/hero-bg.jpg') no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding-top: 0;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Features Section */
.features {
    background-color: var(--light-color);
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 107, 107, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: var(--gray-color);
    font-size: clamp(0.9rem, 2vw, 1rem);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    border-top: 5px solid var(--primary-color);
    border-left: 5px solid var(--primary-color);
    z-index: -1;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    border-bottom: 5px solid var(--primary-color);
    border-right: 5px solid var(--primary-color);
    z-index: -1;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--gray-color);
    font-size: clamp(0.95rem, 2vw, 1rem);
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.about-stats .stat {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.about-stats .stat h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.about-stats .stat p {
    font-size: clamp(0.85rem, 2vw, 0.9rem);
}

/* Services Section */
.services {
    background-color: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
    z-index: -1;
    opacity: 0.05;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 107, 107, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: rgba(255, 107, 107, 0.2);
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: var(--gray-color);
    margin-bottom: 20px;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

/* Service Card Loading States and Enhanced Animations */
.service-card.loading {
    pointer-events: none;
    opacity: 0.8;
    transform: scale(0.98);
}

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

@keyframes loading-shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.service-card.hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-card.hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background-color: rgba(255, 107, 107, 0.3);
}

.service-card.hover .service-icon i {
    transform: scale(1.1);
}

/* Service Link Button Styles */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-link:hover {
    color: var(--dark-color);
    transform: translateX(5px);
}

.service-link .btn-text-content,
.service-link .btn-text-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-link .btn-text-loading {
    color: var(--primary-color);
}

.service-link .btn-text-loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Service Card Entrance Animation */
.service-card {
    opacity: 1 !important;
    transform: none !important;
}

/* Staggered animation for service cards */
.services-grid .service-card:nth-child(1) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.2s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.3s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.4s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.5s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.6s; }
.services-grid .service-card:nth-child(7) { transition-delay: 0.7s; }
.services-grid .service-card:nth-child(8) { transition-delay: 0.8s; }
.services-grid .service-card:nth-child(9) { transition-delay: 0.9s; }
.services-grid .service-card:nth-child(10) { transition-delay: 1.0s; }
.services-grid .service-card:nth-child(11) { transition-delay: 1.1s; }
.services-grid .service-card:nth-child(12) { transition-delay: 1.2s; }

/* Why Choose Us Section */
.why-choose-us {
    background-color: #fff;
    padding: 80px 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-choose-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.why-choose-card:hover::before {
    transform: scaleX(1);
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 82, 82, 0.1), rgba(78, 205, 196, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.why-choose-card:hover .why-choose-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(255, 82, 82, 0.2), rgba(78, 205, 196, 0.2));
}

.why-choose-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.why-choose-card:hover .why-choose-icon i {
    transform: scale(1.1);
}

.why-choose-card h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dark-color);
}

.why-choose-card p {
    color: var(--gray-color);
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.6;
}

/* Booking Process Section */
.booking-process {
    background-color: var(--light-color);
    padding: 80px 0;
}

.booking-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.booking-step {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.booking-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(255, 82, 82, 0.3);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 82, 82, 0.1), rgba(78, 205, 196, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 25px;
    transition: all 0.3s ease;
}

.booking-step:hover .step-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(255, 82, 82, 0.2), rgba(78, 205, 196, 0.2));
}

.step-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.booking-step h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dark-color);
}

.booking-step p {
    color: var(--gray-color);
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.6;
}

/* Vehicle Types Section */
.vehicle-types {
    background-color: #fff;
    padding: 80px 0;
}

.vehicle-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.vehicle-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    padding: 30px;
    transition: var(--transition);
}

.vehicle-card:hover {
    transform: translateY(-6px);
}

.vehicle-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(255, 107, 107, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.vehicle-card h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 10px;
}

.vehicle-card p {
    color: var(--gray-color);
    margin-bottom: 15px;
}

.vehicle-features {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.vehicle-features span {
    background: var(--light-color);
    border: 1px solid #eee;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--dark-color);
}

@media screen and (max-width: 768px) {
    .vehicle-types {
        padding: 60px 0;
    }
    .vehicle-card {
        padding: 25px;
    }
}

/* Destinations Section */
.destinations {
    position: relative;
    overflow: hidden;
}

.destinations-slider {
    display: flex;
    gap: 30px;
    transition: var(--transition);
    margin-bottom: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.destinations-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.destination-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    position: relative;
}

.destination-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
}

.destination-content h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-bottom: 10px;
}

.destination-content p {
    margin-bottom: 15px;
    opacity: 0.9;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.slider-controls button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    border: none;
    box-shadow: var(--box-shadow);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-controls button:hover {
    background-color: var(--primary-color);
    color: #fff;
}

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

/* Stats Section */
.stats {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/stats-bg.jpg.svg') no-repeat center center/cover;
    color: #fff;
    padding: 100px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-card h3 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.stat-card p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light-color);
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    transition: var(--transition);
    margin-bottom: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 300px;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.testimonial-content {
    margin-bottom: 20px;
}

.rating {
    color: var(--warning-color);
    margin-bottom: 15px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--gray-color);
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.author-info h4 {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    margin-bottom: 5px;
}

.author-info p {
    color: var(--gray-color);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1rem);
    transition: var(--transition);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 107, 107, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 5px;
}

.info-content p {
    color: var(--gray-color);
    margin-bottom: 5px;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: #fff;
    padding-top: 80px;
}

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

.footer-logo h2 {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.footer-links h3,
.footer-services h3,
.footer-newsletter h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-newsletter h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-services a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: clamp(0.85rem, 2vw, 0.9rem);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.footer-newsletter form {
    display: flex;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-newsletter input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1rem);
    min-width: 200px;
}

.footer-newsletter button {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: var(--transition);
}

.footer-newsletter button:hover {
    background-color: #ff5252;
}

.footer-social {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(0.85rem, 2vw, 0.9rem);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: clamp(0.85rem, 2vw, 0.9rem);
}

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

.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
    align-items: flex-end;
    animation: fadeInUp 0.5s ease-out;
}

.whatsapp-icon, .phone-call-btn, .back-to-top {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: var(--box-shadow, 0 2px 8px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
    font-size: 1.4rem;
    border: none;
    cursor: pointer;
    margin: 0;
    padding: 0;
    text-decoration: none;
    position: relative;
    z-index: 1;
}
.whatsapp-icon {
    background-color: var(--primary-color, #FF5252);
}
.whatsapp-icon:hover {
    background-color: #128C7E;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-icon:active {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-icon:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}
.phone-call-btn {
    background-color: var(--primary-color, #FF5252);
}
.phone-call-btn:hover {
    background-color: #128C7E;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.phone-call-btn:active {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.phone-call-btn:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}
.back-to-top {
    background-color: var(--primary-color, #FF5252);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    transform: translateY(10px);
    position: relative;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: #128C7E;
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.back-to-top:active {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.back-to-top:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

/* Ensure buttons are visible on all devices */
@media (max-width: 480px) {
    .whatsapp-icon, .phone-call-btn, .back-to-top {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.2rem !important;
    }
}

@media (max-width: 768px) {
    .floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    .floating-buttons .floating-row {
        gap: 10px;
    }
    .whatsapp-icon, .phone-call-btn, .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}
@media (max-width: 480px) {
    .floating-buttons {
        bottom: 10px;
        right: 10px;
        gap: 8px;
    }
    .floating-buttons .floating-row {
        gap: 8px;
    }
    .whatsapp-icon, .phone-call-btn, .back-to-top {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

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

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

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

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Services Archive Styles */
.services-archive {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-archive .page-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-archive .page-title {
    font-size: 2.5rem;
    color: var(--primary-color, #FF5252);
    margin-bottom: 15px;
}

.services-archive .page-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.service-card .service-image {
    height: 200px;
    overflow: hidden;
}

.service-card .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.service-card .service-content {
    padding: 25px;
}

.service-card .service-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-card .service-title a {
    color: var(--primary-color, #FF5252);
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-card .service-title a:hover {
    color: #128C7E;
}

.service-card .service-excerpt {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-card .service-link {
    display: inline-block;
    background: var(--primary-color, #FF5252);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.service-card .service-link:hover {
    background: #128C7E;
}

.services-pagination {
    text-align: center;
    margin-top: 40px;
}

.services-pagination .page-numbers {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    background: #fff;
    color: var(--primary-color, #FF5252);
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.services-pagination .page-numbers:hover,
.services-pagination .page-numbers.current {
    background: var(--primary-color, #FF5252);
    color: #fff;
}

/* Default Service Template Styles */
.default-service-template {
    padding: 80px 0;
}

.default-service-template .service-content {
    max-width: 800px;
    margin: 0 auto;
}

.default-service-template h1 {
    font-size: 2.5rem;
    color: var(--primary-color, #FF5252);
    margin-bottom: 30px;
    text-align: center;
}

.default-service-template .service-featured-image {
    margin-bottom: 30px;
    text-align: center;
}

.default-service-template .service-featured-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.default-service-template .service-description {
    line-height: 1.8;
    color: #333;
    font-size: 1.1rem;
}

/* Alert styles */
.alert {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 5px;
    color: white;
    font-weight: 500;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.3s ease-out forwards;
}

.alert-success {
    background-color: var(--success-color);
}

.alert-error {
    background-color: var(--danger-color);
}

/* Form status styles */
.form-status {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-weight: 500;
    display: none;
}

.form-status.success {
    background-color: rgba(40, 167, 69, 0.1);
    border: 1px solid var(--success-color);
    color: var(--success-color);
}

.form-status.error {
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid var(--danger-color);
    color: var(--danger-color);
}

/* Enhanced Responsive Styles */
@media screen and (max-width: 1400px) {
    .container {
        max-width: 1200px;
    }
}

@media screen and (max-width: 1200px) {
    .container {
        max-width: 960px;
        padding: 0 30px;
    }
    
    .hero-content h1 {
        font-size: clamp(2.5rem, 5vw, 3rem);
    }
    
    .section-header h2 {
        font-size: clamp(2rem, 4vw, 2.2rem);
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media screen and (max-width: 1024px) {
    .container {
        max-width: 95%;
        padding: 0 25px;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

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

    .destination-card,
    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
        min-width: 280px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .hero-buttons {
        gap: 15px;
    }
    
    .btn {
        padding: 10px 25px;
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    section {
        padding: 60px 0;
    }
    
    /* Enhanced Mobile Navigation */
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 340px;
        height: 100vh;
        background: rgba(30,30,30,0.98);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding-top: 90px;
        padding-left: 30px;
        padding-right: 20px;
        transition: left 0.3s cubic-bezier(.77,0,.18,1);
        z-index: 1001;
        box-shadow: var(--box-shadow);
        overflow-y: auto;
    }
    .nav-links.active {
        left: 0;
    }
    .nav-links.active ~ .nav-overlay {
        display: block;
    }
    .nav-links a {
        color: #fff;
        padding: 15px 0;
        font-size: 1.15rem;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .nav-links a:last-child {
        border-bottom: none;
    }
    .mobile-menu-btn {
        display: block;
        z-index: 1002;
        position: relative;
        color: #fff;
        background: none;
        border: none;
        font-size: 2rem;
        margin-left: 18px;
    }
    .dropdown-menu {
        position: static;
        background: rgba(30,30,30,0.98);
        box-shadow: none;
        margin: 5px 0;
        padding: 5px 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        width: 100%;
        border-radius: 8px;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    header.scrolled .dropdown-menu {
        background: #fff;
    }
    .dropdown.active .dropdown-menu {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
    }
    .dropdown-menu a {
        padding: 12px 20px;
        font-size: 0.95rem;
        border-bottom: none;
    }
    header.scrolled .dropdown-menu a {
        color: #232526 !important;
    }
    .dropdown > a {
        width: 100%;
        justify-content: space-between;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .dropdown > a i {
        transition: transform 0.3s ease;
    }
    .dropdown.active > a i {
        transform: rotate(45deg);
    }

    .hero {
        height: auto;
        min-height: 80vh;
        padding: 100px 0 60px;
    }
    
    .hero-content h1 {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
    
    .hero-content p {
        font-size: clamp(0.95rem, 3vw, 1rem);
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        padding: 12px 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .why-choose-card {
        padding: 30px 25px;
    }
    
    .booking-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .booking-step {
        padding: 30px 25px;
    }
    
    .destination-card,
    .testimonial-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .contact-form {
        padding: 30px 25px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-stats {
        gap: 20px;
    }
    
    .about-stats .stat {
        min-width: 100px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    
    .whatsapp-icon, 
    .back-to-top {
        width: 45px;
        height: 45px;
    }
    
    .location-section {
        flex-direction: column;
    }
    
    .map-container {
        min-width: 100%;
        height: 200px;
    }
}

@media screen and (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: clamp(1.6rem, 5vw, 1.8rem);
    }
    
    .section-header p {
        font-size: clamp(0.9rem, 3vw, 1rem);
    }

    .hero {
        min-height: 70vh;
        padding: 80px 0 50px;
    }
    
    .hero-content h1 {
        font-size: clamp(1.8rem, 7vw, 2rem);
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: clamp(0.9rem, 3.5vw, 1rem);
        margin-bottom: 25px;
    }

    .hero-buttons {
        gap: 12px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }

    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card,
    .service-card {
        padding: 20px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .about-stats .stat {
        min-width: auto;
    }
    
    .about-stats .stat h3 {
        font-size: clamp(1.5rem, 4vw, 1.8rem);
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stat-card h3 {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
    
    .stat-card p {
        font-size: clamp(0.9rem, 3vw, 1rem);
    }
    
    .testimonial-card {
        padding: 20px 15px;
    }
    
    .testimonial-author img {
        width: 50px;
        height: 50px;
    }

    .contact-form {
        padding: 25px 20px;
    }
    
    .info-card {
        padding: 15px;
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin: 0 auto 10px;
    }

    .form-group label {
        margin-bottom: 5px;
        font-size: 0.9rem;
    }
    
    .form-group input, 
    .form-group select, 
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .floating-buttons {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-icon, 
    .back-to-top {
        width: 40px;
        height: 40px;
    }
    
    .slider-controls button {
        width: 40px;
        height: 40px;
    }
    
    .slider-controls button i {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-content h1 {
        font-size: clamp(1.6rem, 8vw, 1.8rem);
    }
    
    .hero-content p {
        font-size: clamp(0.85rem, 4vw, 0.9rem);
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .feature-card,
    .service-card {
        padding: 15px;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
    
    .info-card {
        padding: 12px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .floating-buttons {
        bottom: 10px;
        right: 10px;
        gap: 8px;
    }
    
    .whatsapp-icon, 
    .back-to-top {
        width: 35px;
        height: 35px;
    }
}

/* Landscape orientation adjustments for mobile */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 60px 0 40px;
    }
    
    .hero-content h1 {
        font-size: clamp(1.8rem, 4vw, 2.2rem);
        margin-bottom: 10px;
    }
    
    .hero-content p {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 15px;
    }
    
    .btn {
        width: auto;
        max-width: none;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero {
        background-image: url('../images/hero-bg.jpg');
    }
}

/* Print styles */
@media print {
    .floating-buttons,
    .mobile-menu-btn,
    .slider-controls {
        display: none !important;
    }
    
    .hero {
        background: none !important;
        color: #000 !important;
        height: auto !important;
        padding: 20px 0 !important;
    }
    
    .hero-content h1 {
        color: #000 !important;
    }
    
    .hero-content p {
        color: #333 !important;
    }
    
    .btn {
        border: 1px solid #000 !important;
        background: none !important;
        color: #000 !important;
    }
}

/* Custom Logo sizing */
.custom-logo-link,
.custom-logo {
    display: inline-block;
    height: 48px;
}
.custom-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}
@media (max-width: 768px) {
    .custom-logo,
    .custom-logo-link { height: 40px; }
}
@media (max-width: 480px) {
    .custom-logo,
    .custom-logo-link { height: 36px; }
}
/* Ensure text logo colors still switch on scroll when used as fallback */
header.scrolled .logo h1 a { color: inherit; }

/* Page Loading Overlay */
.page-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.page-loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.page-loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 82, 82, 0.1);
    border-left: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: page-spin 1s linear infinite;
}

.page-loading-text {
    margin-top: 20px;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1.1rem;
}

@keyframes page-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Smooth page transitions */
body {
    transition: opacity 0.3s ease;
}

body.page-transitioning {
    opacity: 0.7;
}

/* Enhanced button hover effects */
.btn-text {
    position: relative;
    overflow: hidden;
}

.btn-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-text:hover::before {
    left: 100%;
}

/* Service Page Styles */
.service-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/hero-bg.jpg') no-repeat center center/cover;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 100px 0 60px;
}

.service-hero-content h1,
.service-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.service-hero-content p,
.service-hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 2rem;
    max-width: 1000vw;
    margin-left: auto;
    margin-right: auto;
}

.service-hero-buttons,
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Service Details Section */
.service-details {
    padding: 80px 0;
    background-color: var(--light-color);
}

.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.service-main h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 20px;
    color: var(--dark-color);
}

.service-main p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.7;
    color: var(--gray-color);
    margin-bottom: 25px;
}

.service-features {
    margin: 40px 0;
}

.service-features h3 {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    margin-bottom: 25px;
    color: var(--dark-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.feature-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 10px;
    color: var(--dark-color);
}

.feature-item p {
    color: var(--gray-color);
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.service-description {
    margin: 40px 0;
}

.service-description h3 {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    margin-bottom: 20px;
    color: var(--dark-color);
}

.service-areas {
    margin: 40px 0;
}

.service-areas h3 {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    margin-bottom: 25px;
    color: var(--dark-color);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.area-category {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.area-category h4 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 15px;
    color: var(--primary-color);
    text-align: center;
}

.area-category ul {
    list-style: none;
}

.area-category li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--gray-color);
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.area-category li:last-child {
    border-bottom: none;
}

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

.booking-card,
.contact-info-card,
.pricing-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
}

.booking-card h3,
.contact-info-card h3,
.pricing-card h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.5rem);
    margin-bottom: 20px;
    color: var(--dark-color);
    text-align: center;
}

.booking-card .form-group {
    margin-bottom: 20px;
}

.booking-card label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

.booking-card input,
.booking-card select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: clamp(0.9rem, 2vw, 1rem);
    transition: all 0.3s ease;
}

.booking-card input:focus,
.booking-card select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 82, 82, 0.1);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-item h4 {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    margin-bottom: 5px;
    color: var(--dark-color);
}

.contact-item p {
    color: var(--gray-color);
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.5;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.rate {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--primary-color);
}

.unit {
    color: var(--gray-color);
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.pricing-note {
    margin-top: 15px;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    color: var(--gray-color);
    text-align: center;
    font-style: italic;
}

/* FAQ Section */
.service-faq {
    padding: 80px 0;
    background-color: #fff;
}

.service-faq h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 50px;
    color: var(--dark-color);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--light-color);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 82, 82, 0.05);
}

.faq-question h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--dark-color);
    margin: 0;
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--gray-color);
    font-size: clamp(0.95rem, 2vw, 1rem);
    line-height: 1.6;
    margin: 0;
}

/* Related Services */
.related-services {
    padding: 80px 0;
    background-color: var(--light-color);
}

.related-services h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 50px;
    color: var(--dark-color);
}

.related-services .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Responsive Design for Service Pages */
@media screen and (max-width: 1024px) {
    .service-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-sidebar {
        position: static;
    }
    
    .service-hero {
        min-height: 50vh;
        padding: 80px 0 50px;
    }
}

@media screen and (max-width: 768px) {
    .service-hero {
        min-height: 40vh;
        padding: 60px 0 40px;
    }
    
    .service-hero-content h1 {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
    
    .service-hero-content p {
        font-size: clamp(1rem, 3vw, 1.2rem);
    }
    
    .service-hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-details {
        padding: 60px 0;
    }
    
    .booking-card,
    .contact-info-card,
    .pricing-card {
        padding: 25px 20px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
}

@media screen and (max-width: 576px) {
    .service-hero {
        min-height: 35vh;
        padding: 50px 0 30px;
    }
    
    .service-hero-content h1 {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
    }
    
    .service-hero-content p {
        font-size: clamp(0.9rem, 3.5vw, 1.1rem);
    }
    
    .service-details {
        padding: 50px 0;
    }
    
    .service-main h2 {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
    }
    
    .service-features h3,
    .service-description h3,
    .service-areas h3 {
        font-size: clamp(1.4rem, 4vw, 1.6rem);
    }
    
    .feature-item {
        padding: 20px 15px;
    }
    
    .area-category {
        padding: 15px;
    }
    
    .booking-card,
    .contact-info-card,
    .pricing-card {
        padding: 20px 15px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .pricing-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    .service-title {
        font-size: 1.2rem;
        font-weight: 700;
        margin-top: 10px;
        color: var(--dark-color);
    }
}

.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
    align-items: flex-end;
}
.phone-call-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--box-shadow);
    font-size: 1.4rem;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}
.phone-call-btn:hover {
    background-color: #128C7E;
    transform: translateY(-5px);
}
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
        align-items: flex-end;
    }
    .phone-call-btn, .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .contact-form, .contact-info {
        width: 100% !important;
        padding: 20px 10px !important;
        box-sizing: border-box;
    }
    .info-card {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    .info-icon {
        margin-bottom: 10px !important;
    }
}
@media (max-width: 480px) {
    .floating-buttons {
        bottom: 10px;
        right: 10px;
        gap: 8px;
    }
    .phone-call-btn, .back-to-top {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

.destinations .slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 15px;
}
.destinations .slider-controls button {
    background: #fff;
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    z-index: 11;
}
.destinations .slider-controls button:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}
@media (max-width: 768px) {
    .destinations .slider-controls {
        bottom: 10px;
        gap: 10px;
    }
    .destinations .slider-controls button {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}
@media (max-width: 480px) {
    .destinations .slider-controls {
        bottom: 5px;
        gap: 8px;
    }
    .destinations .slider-controls button {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

