/* Modern Clean Design - Base Styles */
:root {
    --primary-color: #6c959e; /* Updated to sage-green/muted teal */
    --secondary-color: #a8c5c1; /* Updated to complement the new primary */
    --accent-color: #FF6B6B; /* Coral red - keeping for contrast */
    --dark-color: #080f30; /* Updated from #03045E to darker blue-black */
    --light-color: #f8f9fa; /* Off-white background */
    --text-color: #333333; /* Dark text for readability */
    --white-color: #ffffff;
    --black-color: #000000;
    --gradient-start: #6c959e; /* Updated to match new primary */
    --gradient-end: #a8c5c1; /* Updated to match new secondary */
    --gradient-accent: #FF6B6B; /* Coral red */
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); /* Smooth easing */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Righteous', cursive;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 120px; /* Increased offset for fixed navbar */
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: var(--light-color);
}

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

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 12px 28px;
    border: 2px solid var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover {
    color: var(--white-color);
}

.btn:hover::after {
    height: 100%;
}

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

.btn-primary::after {
    background-color: var(--white-color);
}

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

.section-spacing {
    padding: 100px 0;
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    font-weight: 500;
}

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

/* Navigation Bar - Clean and Minimal */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: var(--transition);
    background-color: transparent;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 5%;
}

/* Desktop specific navbar override to ensure visibility */
@media screen and (min-width: 769px) {
    .navbar.scrolled {
        background-color: rgba(255, 255, 255, 0.95) !important;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
        padding: 15px 5% !important;
    }
    
    .navbar.scrolled .nav-links a {
        color: #000000 !important;
        font-weight: 600 !important;
    }
    
    .navbar.scrolled .logo {
        color: #000000 !important;
    }
    
    .navbar.scrolled .logo-img {
        filter: none !important;
    }
}

.navbar.scrolled .logo {
    color: #000000;
}

.navbar.scrolled .nav-links a {
    color: #000000;
}

.logo {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white-color);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo-img {
    height: 80px;
    width: auto;
    transition: var(--transition);
    filter: brightness(0) invert(1); /* Makes logo white on hero section */
}

.navbar.scrolled .logo-img {
    height: 80px;
    filter: none; /* Returns to original colors when scrolled */
}

.logo span {
    color: #a8c5c1;
    font-weight: 400;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links ul {
    display: flex;
}

.nav-links li {
    margin: 0 20px;
}

.nav-links a {
    color: var(--white-color);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 0;
    transition: var(--transition);
    box-shadow: 0 0 8px var(--secondary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.book-btn {
    margin-left: 20px;
}

.book-btn .btn {
    background-color: transparent;
    color: var(--white-color);
    border: 2px solid var(--secondary-color);
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
}

.book-btn .btn:hover {
    background-color: transparent;
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .book-btn .btn {
    color: var(--dark-color);
    border-color: var(--secondary-color);
}

.navbar.scrolled .book-btn .btn:hover {
    color: var(--secondary-color);
}

/* Mobile Book Button (hidden by default, shown in mobile.css) */
.mobile-book-btn {
    display: none;
}

.mobile-book-btn .btn {
    background-color: transparent;
    color: var(--dark-color);
    border: 2px solid var(--secondary-color);
    padding: 10px 25px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}

.mobile-book-btn .btn:hover {
    background-color: transparent;
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 22px;
    position: relative;
    z-index: 9999;
}

.bar {
    display: block;
    width: 30px;
    height: 2px;
    margin: 6px 0;
    background-color: var(--white-color);
    transition: all 0.3s ease-in-out;
}

.navbar.scrolled .bar {
    background-color: var(--dark-color);
}

.hamburger.active .bar {
    background-color: var(--dark-color);
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section - Modern Side-by-Side Layout */
.hero {
    min-height: 100vh;
    background: 
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.2) 25%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.15) 75%, rgba(255, 255, 255, 0.1) 100%),
        linear-gradient(180deg, rgba(108, 149, 158, 0.2) 0%, rgba(108, 149, 158, 0.4) 20%, rgba(108, 149, 158, 0.6) 40%, rgba(108, 149, 158, 0.8) 60%, rgba(108, 149, 158, 0.9) 80%, rgba(248, 249, 250, 0.8) 95%, rgba(248, 249, 250, 1) 100%),
        linear-gradient(135deg, #2980b9 0%, #3498db 25%, #5dade2 50%, #7fb3d3 75%, #85c1e9 100%);
    background-size: 300% 100%, 100% 100%, 100% 100%;
    background-position: 0% center, center, center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    position: relative;
    overflow: hidden;
    animation: smoothWave 8s ease-in-out infinite;
}

@keyframes smoothWave {
    0% {
        background-position: 0% center, center, center;
    }
    50% {
        background-position: 100% center, center, center;
    }
    100% {
        background-position: 200% center, center, center;
    }
}

.hero-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    padding: 0 5%;
    gap: 40px;
}

.hero-image {
    flex: 1;
    position: relative;
    z-index: 2;
}

.image-container {
    position: relative;
}

.main-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.accent-block {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    bottom: -20px;
    left: -20px;
    border-radius: 8px;
    z-index: 1;
    opacity: 0.3;
}

.hero-content {
    flex: 1;
    z-index: 2;
    text-align: left;
    padding: 0 20px;
}

.welcome-text {
    font-size: 1rem;
    color: var(--secondary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.hero h1 {
    font-family: var(--font-secondary);
    font-size: 4.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    text-transform: uppercase;
}

.hero h1::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    box-shadow: 0 0 10px var(--secondary-color);
}

.hero h2 {
    font-size: 1.5rem;
    margin: 30px 0 20px;
    font-weight: 400;
    max-width: 600px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 550px;
    opacity: 0.9;
}

.hero .btn {
    margin-top: 10px;
    background-color: transparent;
    color: var(--white-color);
    border: 2px solid var(--secondary-color);
    font-weight: 600;
    padding: 12px 30px;
    box-shadow: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero .btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(168, 197, 193, 0.2), transparent);
    transition: left 0.7s ease;
}

.hero .btn:hover {
    background-color: transparent;
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero .btn:hover::before {
    left: 100%;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white-color);
    font-size: 0.9rem;
    letter-spacing: 1px;
    z-index: 5;
}

.scroll-down i {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

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

/* About Section - Keep 3D positioning but remove hover interactions */
#about .perspective-container {
    perspective: 1000px !important;
    transform-style: preserve-3d !important;
    overflow: visible !important;
    position: relative !important;
}

#about .tilt-element {
    transform-style: preserve-3d !important;
    transition: none !important; /* Remove transition for hover effects */
    will-change: auto !important; /* Remove will-change to disable hover prep */
    position: relative !important;
}

#about .tilt-element:hover {
    /* Completely disable hover transforms */
    transform: none !important;
}

/* Keep layer transforms for visual layout - but make them static */
#about .layer-1,
#about .layer-2,
#about .layer-3 {
    /* Keep their transforms but make them static */
}

/* Keep floating images positioned but remove interactive transforms */
#about .floating-image {
    position: absolute !important;
    border-radius: 10px !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
    overflow: hidden !important;
    transition: none !important; /* Remove transition for hover effects */
    pointer-events: none !important; /* Disable all interactions */
}

#about .floating-image:hover {
    /* Completely disable hover transforms - keep original transforms */
    transform: none !important;
}

/* Disable hover effects specifically for the bottom floating image */
#about .floating-image-bottom {
    transition: none !important;
    pointer-events: none !important; /* Disable all interactions */
}

#about .floating-image-bottom:hover {
    transform: rotate(-12deg) translateZ(20px) !important; /* Keep original transform on hover */
}

/* Keep shadow effects but make them static */
#about .shadow-effect {
    position: absolute !important;
    bottom: -15px !important;
    left: 5% !important;
    width: 90% !important;
    height: 20px !important;
    background: rgba(0, 0, 0, 0.2) !important;
    filter: blur(15px) !important;
    border-radius: 50% !important;
    z-index: -1 !important;
    transition: none !important; /* Remove transition for hover effects */
}

/* Disable glare effects completely in About section */
#about .glare {
    display: none !important; /* Completely remove glare effect */
}

#about .tilt-element:hover .glare {
    opacity: 0 !important; /* Ensure glare never shows on hover */
}

/* Keep image styling but remove hover effects */
#about .image-main img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: none !important; /* Remove transition for hover effects */
}

#about .image-main img:hover {
    /* Disable hover transform */
    transform: none !important;
}

/* Keep accent animations as they don't interfere with user interaction */
#about .accent-box {
    animation: pulse 3s infinite !important;
}

/* About Section - Unique Creative Layout */
.about {
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.wave-divider {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.about-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.split-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.text-outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--primary-color);
    font-size: 3.5rem;
    letter-spacing: 3px;
}

.text-filled {
    color: var(--primary-color);
    font-size: 2.8rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
}

.about-image-stack {
    position: relative;
    height: 100%;
}

.image-main {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 85%;
    z-index: 2;
}

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

.image-accent {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 10px;
    top: -30px;
    right: 0;
    z-index: 1;
    overflow: hidden;
}

.accent-box {
    display: none;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: 30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--accent-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    box-shadow: 0 10px 30px rgba(252, 58, 82, 0.3);
    z-index: 3;
}

.experience-badge .years {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    font-family: var(--font-secondary);
}

.experience-badge .text {
    font-size: 0.75rem;
    text-align: center;
    font-weight: 600;
    letter-spacing: 1px;
}

.content-wrapper {
    padding: 20px 0;
}

.highlight-text {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.8;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
    padding-left: 20px;
    border-left: 4px solid var(--primary-color);
}

.feature-list {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.icon-box {
    min-width: 60px;
    height: 60px;
    background-color: rgba(0, 180, 216, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-item:hover .icon-box {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-5px);
}

.feature-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.feature-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

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

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
}

.play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    margin-right: 10px;
}

.video-btn:hover .play-icon {
    background-color: var(--white-color);
    color: var(--primary-color);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 50px 0;
    padding: 50px 30px;
    background-color: var(--white-color);
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 5;
}

.stat-item {
    text-align: center;
    padding: 20px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    height: 70%;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-secondary);
    line-height: 1;
    display: block;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.diagonal-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--white-color);
    transform: skewY(-3deg);
    transform-origin: bottom right;
    z-index: 1;
}

/* Activities Section - Creative Grid Layout */
.activities {
    background-color: var(--white-color);
    position: relative;
    padding: 80px 0;
}

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

.activities-header .section-subtitle {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.activities-header .section-title {
    color: var(--dark-color);
    font-size: 2.8rem;
    font-weight: 800;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.activity-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    background: linear-gradient(to bottom, 
        rgba(168, 197, 193, 0.8) 0%, 
        rgba(108, 149, 158, 0.6) 30%, 
        rgba(108, 149, 158, 0.8) 50%, 
        #6c959e 70%, 
        #5a7f87 100%) !important;
    display: flex;
    flex-direction: column;
    height: 100%;
    /* Override perspective.css conflicts - stronger overrides */
    transform-style: flat !important;
    background-color: transparent;
    flex-shrink: 0;
}

.activity-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.activity-img {
    width: 100%;
    height: 200px;
    position: static;
    overflow: hidden;
    /* Override perspective.css conflicts - strongest overrides */
    transform-style: flat !important;
    background-color: transparent;
    flex-shrink: 0;
    z-index: 2; /* Ensure image area is above any background elements */
    /* Add a direct gradient overlay as fallback */
    background-image: linear-gradient(
        to top,
        rgba(168, 197, 193, 0.9) 0%,
        rgba(168, 197, 193, 0.7) 30%,
        rgba(168, 197, 193, 0.3) 60%,
        transparent 100%
    ) !important;
    background-position: bottom !important;
    background-repeat: no-repeat !important;
    background-size: 100% 50% !important; /* Only cover bottom 50% */
}

.activity-img::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 50% !important; /* Cover bottom 50% of image */
    background: linear-gradient(
        to top,
        rgba(168, 197, 193, 1) 0%,     /* Solid at bottom */
        rgba(168, 197, 193, 0.95) 20%, /* Almost solid */
        rgba(168, 197, 193, 0.8) 40%,  /* Strong */
        rgba(168, 197, 193, 0.5) 60%,  /* Medium */
        rgba(168, 197, 193, 0.2) 80%,  /* Light */
        transparent 100%               /* Fade to transparent at top */
    ) !important;
    pointer-events: none !important;
    z-index: 999999 !important; /* Extremely high z-index */
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Stronger overrides to prevent conflicts from perspective.css and card-styles.css */
.activities-grid .activity-card .activity-img::after,
.activity-card.activity-featured .activity-img::after,
.activity-card:hover .activity-img::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 50% !important; /* Cover bottom 50% of image */
    background: linear-gradient(
        to top,
        rgba(168, 197, 193, 1) 0%,     /* Solid at bottom */
        rgba(168, 197, 193, 0.95) 20%, /* Almost solid */
        rgba(168, 197, 193, 0.8) 40%,  /* Strong */
        rgba(168, 197, 193, 0.5) 60%,  /* Medium */
        rgba(168, 197, 193, 0.2) 80%,  /* Light */
        transparent 100%               /* Fade to transparent at top */
    ) !important;
    pointer-events: none !important;
    z-index: 999999 !important; /* Extremely high z-index */
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Desktop-only: Remove overlays for clean gradient effect - HIGHEST SPECIFICITY */
@media screen and (min-width: 769px) {
    .activities .activity-card {
        background: linear-gradient(to bottom, 
            rgba(255, 255, 255, 0.9) 0%,        /* Start almost white */
            rgba(255, 255, 255, 0.7) 10%,       /* Still very light */
            rgba(255, 255, 255, 0.4) 20%,       /* Getting more transparent */
            rgba(168, 197, 193, 0.3) 30%,       /* Start introducing color lightly */
            rgba(168, 197, 193, 0.6) 45%,       /* Medium opacity */
            rgba(108, 149, 158, 0.8) 60%,       /* Getting stronger */
            #6c959e 80%,                        /* Solid color towards bottom */
            #5a7f87 100%) !important;           /* Darker solid at bottom */
    }
    
    .activities .activity-img {
        /* COMPLETELY TRANSPARENT - NO BACKGROUND PROPERTIES AT ALL - OVERRIDE ALL !important */
        background: none !important;
        background-image: none !important;
        background-color: transparent !important;
        background-position: initial !important;
        background-repeat: initial !important;
        background-size: initial !important;
        /* Just positioning properties like mobile */
        width: 100% !important;
        height: 180px !important;
        position: relative !important;
        overflow: hidden !important;
        display: block !important;
        flex-shrink: 0 !important;
        z-index: 2 !important;
        transform-style: flat !important;
    }
    
    /* ALSO TARGET THE IMG CONTAINER DIRECTLY TO REMOVE ANY BACKGROUND */
    .activities-grid .activity-card .activity-img,
    .activities .activities-grid .activity-card .activity-img {
        background: transparent !important;
        background-color: transparent !important;
        background-image: none !important;
    }
    
    /* OVERRIDE CARD-STYLES.CSS BACKGROUND-COLOR SPECIFICALLY */
    .activity-img {
        background-color: transparent !important;
    }
    
    .activities .activity-content {
        background: transparent !important;
    }
    
    /* KILL ALL OVERLAYS AND PSEUDO-ELEMENTS COMPLETELY */
    .activities .activity-img::after,
    .activities .activities-grid .activity-card .activity-img::after,
    .activities .activity-card.activity-featured .activity-img::after,
    .activities .activity-card:hover .activity-img::after {
        display: none !important;
        content: none !important;
        background: none !important;
        background-image: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        height: 0 !important;
        width: 0 !important;
    }
}

.activity-content {
    padding: 12px;
    background: transparent !important;
    color: var(--white-color);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1; /* Ensure content doesn't overlap image area */
}

.activity-title {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.activity-title::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--white-color);
}

.activity-description {
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 8px;
    opacity: 0.9;
    flex-grow: 1;
}

.activity-details {
    margin-bottom: 8px;
    font-size: 0.75rem;
}

.activity-detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.activity-detail-item i {
    margin-right: 8px;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.activity-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 8px;
}

.activity-price {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--white-color);
}

.activity-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.activity-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white-color);
    color: var(--primary-color);
    padding: 6px 12px;
    border: 2px solid var(--white-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.65rem;
    transition: all 0.3s ease;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    gap: 4px;
    min-height: 32px;
}

.activity-btn:hover {
    background-color: transparent;
    color: var(--white-color);
    transform: translateY(-2px);
}

.activity-btn i {
    font-size: 0.6rem;
}

.activity-btn-details {
    background-color: rgba(255, 255, 255, 0.9);
}

.activity-btn-book {
    background-color: var(--white-color);
}

/* Testimonials & Contact Combined Section - Side by Side Layout */
.testimonials-contact {
    background-color: var(--white-color);
    text-align: center;
}

.testimonials-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-column {
    text-align: center;
}

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

.testimonials-container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    background-color: var(--light-color);
    border-radius: 5px;
    padding: 30px;
    margin: 15px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.testimonial-text {
    margin-bottom: 25px;
}

.testimonial-text p {
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-color);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 12px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 0.85rem;
    color: var(--primary-color);
}

.stars {
    color: var(--secondary-color);
    margin-top: 8px;
}

.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.contact-info {
    padding: 30px 25px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 5px;
    max-width: 100%;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    text-align: left;
}

.info-item i {
    font-size: 1.2rem;
    margin-right: 12px;
    color: var(--secondary-color);
    margin-top: 2px;
}

.info-item div h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.info-item div p, .info-item div a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    font-size: 0.85rem;
}

.info-item div a:hover {
    color: var(--secondary-color);
}

.social-media {
    display: flex;
    margin-top: 20px;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.social-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin: 0 6px 0 0;
    transition: var(--transition);
}

.social-media a:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

/* Footer - Compact and Clean */
footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 40px 0 15px; /* Reduced from 80px 0 20px */
}

.footer-content {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.footer-about {
    text-align: left;
    max-width: 600px;
    display: block;
}

.footer-logo {
    display: none;
}

.footer-content-text {
    width: 100%;
}

.footer-logo-img {
    height: 20px;
    width: auto;
    margin-bottom: 0;
    filter: brightness(0) invert(1); /* Makes logo white for visibility on dark background */
    order: 2;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.9rem;
    margin-top: 0;
}

.footer-logo {
    font-family: var(--font-secondary);
    font-size: 1.6rem; /* Slightly reduced from 1.8rem */
    font-weight: 700;
    margin-bottom: 15px; /* Reduced from 20px */
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px; /* Reduced from 30px */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem; /* Reduced from 0.9rem */
}

/* Animated Text - Updated for more energy */
.animated-text {
    display: inline-block;
    position: relative;
    color: transparent;
    animation: text_reveal 0.5s ease forwards;
    animation-delay: 1s;
}

.animated-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: var(--accent-color);
    animation: text_reveal_box 1s ease;
    animation-delay: 0.5s;
}

@keyframes text_reveal {
    100% {
        color: var(--white-color);
    }
}

@keyframes text_reveal_box {
    50% {
        width: 100%;
        left: 0;
    }
    100% {
        width: 0;
        left: 100%;
    }
}

/* Smooth Scroll Indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background-color: var(--accent-color);
    z-index: 9999;
    width: 0%;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px var(--accent-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 3px 15px rgba(252, 58, 82, 0.3);
}

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

.back-to-top:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(108, 149, 158, 0.5);
}

/* Placeholder styles for missing images */
.placeholder {
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

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

@keyframes loading {
    100% {
        left: 100%;
    }
}

/* Add scroll margin to all sections for proper scroll offset */
section {
    scroll-margin-top: 120px;
}

/* Gallery Section - Modern Grid */
.gallery {
    background-color: var(--light-color);
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white-color);
    font-size: 2rem;
}

/* Parallax Quote Section - Compact with Tilted Effect */
.parallax-quote {
    background: linear-gradient(135deg, rgba(1, 22, 39, 0.9), rgba(2, 75, 110, 0.85));
    padding: 60px 0;
    color: var(--white-color);
    text-align: center;
    position: relative;
    overflow: hidden;
    /* Add the tilted effect - 2 degrees tilt */
    transform: skewY(-2deg);
    margin: 40px 0;
}

.quote-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    /* Counter the parent skew to keep text straight */
    transform: skewY(2deg);
}

.parallax-quote h2 {
    font-family: var(--font-secondary);
    font-size: 2.2rem;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 400;
    font-style: italic;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
}

.parallax-quote h2::before {
    content: open-quote;
    position: absolute;
    left: -25px;
    top: -15px;
    font-size: 3.5rem;
    color: var(--accent-color);
    opacity: 0.4;
}

.parallax-quote h2::after {
    content: close-quote;
    position: absolute;
    right: -25px;
    bottom: -40px;
    font-size: 3.5rem;
    color: var(--accent-color);
    opacity: 0.4;
}

.parallax-quote p {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--secondary-color);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Loading and error states for dynamic activities */
.activities-loading,
.activities-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background-color: var(--light-color);
    border-radius: 10px;
    margin: 20px auto;
    max-width: 400px;
}

.activities-loading {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 500;
}

.activities-error {
    color: var(--accent-color);
    font-size: 1rem;
}

.activities-loading::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s ease-in-out infinite;
    margin-left: 10px;
}

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

/* Gallery Lightbox Styles - Updated with stronger specificity */
.gallery-lightbox {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(0, 0, 0, 0.9) !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 10000 !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.gallery-lightbox.active {
    opacity: 1 !important;
    visibility: visible !important;
}

.lightbox-content {
    position: relative !important;
    max-width: 90% !important;
    max-height: 90% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 15px !important;
}

.gallery-lightbox .lightbox-image {
    width: 80vw !important;
    height: 60vh !important;
    max-width: 800px !important;
    max-height: 600px !important;
    object-fit: cover !important;
    border-radius: 5px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
    transition: transform 0.3s ease !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.lightbox-close {
    position: absolute !important;
    top: -50px !important;
    right: -50px !important;
    background: none !important;
    border: none !important;
    color: var(--white-color) !important;
    font-size: 3rem !important;
    cursor: pointer !important;
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease !important;
}

.lightbox-close:hover {
    background-color: var(--accent-color) !important;
    transform: scale(1.1) !important;
}

/* Lightbox Navigation Arrows */
.lightbox-prev,
.lightbox-next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: none !important;
    color: var(--white-color) !important;
    font-size: 2rem !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    z-index: 10001 !important;
}

.lightbox-prev {
    left: 20px !important;
}

.lightbox-next {
    right: 20px !important;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: var(--primary-color) !important;
    transform: translateY(-50%) scale(1.1) !important;
}

/* Lightbox Image Counter - Now positioned below image */
.lightbox-counter {
    position: relative !important;
    background-color: rgba(0, 0, 0, 0.7) !important;
    color: var(--white-color) !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    z-index: 10001 !important;
    margin-top: 10px !important;
}

/* Responsive lightbox navigation */
@media screen and (max-width: 768px) {
    .lightbox-content {
        max-width: 95% !important;
        max-height: 95% !important;
        gap: 10px !important;
    }
    
    .gallery-lightbox .lightbox-image {
        width: 90vw !important;
        height: 50vh !important;
        max-width: 500px !important;
        max-height: 400px !important;
    }
    
    .lightbox-close {
        top: -40px !important;
        right: -20px !important;
        font-size: 2rem !important;
        width: 40px !important;
        height: 40px !important;
    }
    
    .gallery-update-notification {
        top: 10px !important;
        right: 10px !important;
        left: 10px !important;
        padding: 12px 15px !important;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.5rem !important;
    }
    
    .lightbox-prev {
        left: 10px !important;
    }
    
    .lightbox-next {
        right: 10px !important;
    }
    
    .lightbox-counter {
        font-size: 0.8rem !important;
        padding: 6px 12px !important;
        margin-top: 8px !important;
    }
}

/* Desktop specific activity card styles - Enhanced gradient effect */
@media screen and (min-width: 769px) {
    /* DISABLE PERSPECTIVE AND 3D EFFECTS ON DESKTOP - FORCE FLAT RENDERING LIKE MOBILE */
    .activities .perspective-container,
    .activities .tilt-element,
    .activities .activity-card,
    .activities .activity-img {
        perspective: none !important;
        transform-style: flat !important;
        transform: none !important;
        will-change: auto !important;
        overflow: visible !important;
        backface-visibility: visible !important;
        -webkit-backface-visibility: visible !important;
    }
    
    /* Disable all shadow and glare effects from perspective.css */
    .activities .shadow-effect,
    .activities .glare {
        display: none !important;
    }
    
    /* Override perspective.css hover effects */
    .activities .activity-card:hover {
        transform: translateY(-8px) !important; /* Keep simple hover lift only */
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
    }
    
    /* Force disable activity card 3D transforms from perspective.css */
    .activity-card.activity-featured::before {
        display: none !important;
    }
    
    /* Override card-styles.css image transforms */
    .activities .activity-card .activity-img {
        transform-style: flat !important;
        overflow: hidden !important;
    }
    
    /* Disable image scale effects from card-styles.css and perspective.css */
    .activities .activity-card:hover .activity-img img {
        transform: scale(1.05) !important;
        transition: transform 0.3s ease !important;
        z-index: 5 !important; /* Keep below overlay */
    }
    
    /* Force image visibility like mobile */
    .activities .activity-img img {
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        position: relative !important;
        z-index: 5 !important; /* Below overlay */
        width: 100% !important;
        height: 180px !important;
        object-fit: cover !important;
        backface-visibility: visible !important;
        -webkit-backface-visibility: visible !important;
        perspective: none !important;
        transform-style: flat !important;
    }
}

/* Responsive control for About section floating images */
@media (max-width: 768px) {
    #about .floating-image {
        display: none !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    #about .floating-image {
        display: block !important;
    }
    
    /* Adjust for tablets - override inline styles */
    #about .floating-image:nth-of-type(1) {
        transform: translateX(-50px) translateY(15px) rotate(8deg) translateZ(40px) !important;
    }
    
    #about .floating-image:nth-of-type(2) {
        transform: translateX(-100px) translateY(15px) rotate(-12deg) translateZ(20px) !important;
    }
}

@media (min-width: 1025px) {
    #about .floating-image {
        display: block !important;
    }
}

/* Activity Details Modal */
.activity-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    background-color: var(--white-color);
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.activity-modal.active .modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white-color);
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.modal-header h2 {
    margin: 0;
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-close {
    background: none;
    border: none;
    color: var(--white-color);
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.modal-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 25px;
    overflow-y: auto;
}

.modal-top-section {
    display: flex;
    gap: 25px;
    align-items: stretch;
}

.modal-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
    flex: 1;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.modal-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    flex: 1;
}

.detail-item {
    background-color: var(--light-color);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.detail-item h4 {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-item p {
    color: var(--text-color);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

/* Duration & Price styling */
#modal-duration-price {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.price-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color);
    font-size: 0.85rem;
    padding: 4px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.price-option:last-child {
    border-bottom: none;
}

.price-duration {
    font-weight: 500;
}

.price-amount {
    font-weight: 600;
    color: var(--primary-color);
}

.modal-section {
    margin-bottom: 20px;
}

.modal-section h3 {
    color: var(--primary-color);
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 5px;
    display: inline-block;
}

.modal-section p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.modal-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-section li {
    color: var(--text-color);
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.modal-section li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

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

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

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

/* Two-column layout for Description and What's Included */
.modal-sections-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.modal-section-half {
    flex: 1;
    margin-bottom: 0;
}

.modal-footer {
    background-color: var(--light-color);
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.price-label {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.modal-btn-secondary,
.modal-btn-book {
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid;
}

.modal-btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

.modal-btn-book {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.modal-btn-book:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive Modal */
@media screen and (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
        margin: 0;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-header h2 {
        font-size: 1.4rem;
    }
    
    .modal-body {
        gap: 20px;
        padding: 20px;
    }
    
    .modal-top-section {
        flex-direction: column;
        gap: 20px;
    }
    
    .modal-image {
        height: 200px;
    }
    
    .modal-details-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-sections-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .modal-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
        padding: 15px 20px;
    }
    
    .modal-actions {
        justify-content: center;
        width: 100%;
    }
    
    .modal-btn-secondary,
    .modal-btn-book {
        flex: 1;
        justify-content: center;
        padding: 12px 15px;
        font-size: 0.85rem;
    }
    
    .activity-buttons {
        flex-direction: column;
        gap: 6px;
        width: 100%;
    }
    
    .activity-btn {
        width: 100%;
        justify-content: center;
        font-size: 0.6rem;
        padding: 5px 8px;
        min-height: 28px;
    }
    
    .activity-bottom {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
    }
    
    .activity-price {
        text-align: center;
        font-size: 0.85rem;
    }
}

.activity-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* Override perspective.css conflicts - strongest overrides */
    transform: none !important;
    transition: none !important;
    position: relative;
    z-index: 3; /* Ensure image is visible above everything */
}

/* Stronger overrides to prevent conflicts from perspective.css and card-styles.css */
.activities-grid .activity-card .activity-img img,
.activity-card.activity-featured .activity-img img {
    z-index: 5 !important; /* Below overlay */
    position: relative !important;
    transform: none !important;
    transition: transform 0.3s ease !important;
}

/* Specifically override perspective.css hover effects */
.activity-card:hover .activity-img img {
    transform: scale(1.05) !important;
    transition: transform 0.3s ease !important;
    z-index: 5 !important; /* Keep below overlay even on hover */
}
