/* ============================================
   GOOGLE FONTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================
   CSS VARIABLES - DESIGN SYSTEM
   ============================================ */
:root {
    /* Colors - Dual Tone Palette */
    --primary-orange: #fd9b45;
    --deep-brown: #862100;

    /* Neutrals */
    --cream: #FAF8F3;
    --white: #FFFFFF;
    --dark: #1F2937;
    --gray: #6B7280;
    --light-gray: #F3F4F6;

    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;

    /* Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-orange: 0 8px 30px rgba(253, 155, 69, 0.3);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-orange: linear-gradient(135deg, #fd9b45, #862100);
    --gradient-warm: linear-gradient(135deg, #862100, #fd9b45);
}

/* ============================================
   GLOBAL RESET & BASE STYLES
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--deep-brown);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    color: var(--gray);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: var(--section-padding) 0;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   GRID SYSTEM
   ============================================ */
.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ============================================
   HEADER
   ============================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
}

.logo img {
    height: 60px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

nav ul li a {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
    position: relative;
    padding-bottom: 5px;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-orange);
    transition: var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--deep-brown);
    border-radius: 3px;
    transition: var(--transition);
}

/* ============================================
   HERO SECTION - CREATIVE BANNER
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

/* Background Image */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

/* Animated Gradient Overlay - DUAL TONE (Deepened for visibility) */
.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(134, 33, 0, 0.9) 0%,
            /* Darker brown */
            rgba(134, 33, 0, 0.6) 50%,
            /* Darker center */
            rgba(134, 33, 0, 0.9) 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    z-index: 1;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(253, 155, 69, 0.8), transparent);
    border-radius: 50%;
    animation: floatParticle 20s infinite ease-in-out;
    transition: transform 0.3s cubic-bezier(0.1, 0.7, 1.0, 1.0);
    /* For smooth parallax */
    pointer-events: none;
}

.particle-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.particle-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    left: 80%;
    animation-delay: 3s;
    animation-duration: 30s;
}

.particle-3 {
    width: 60px;
    height: 60px;
    top: 30%;
    left: 70%;
    animation-delay: 6s;
    animation-duration: 22s;
}

.particle-4 {
    width: 100px;
    height: 100px;
    top: 70%;
    left: 15%;
    animation-delay: 9s;
    animation-duration: 28s;
}

.particle-5 {
    width: 90px;
    height: 90px;
    top: 20%;
    left: 50%;
    animation-delay: 12s;
    animation-duration: 26s;
}

.particle-6 {
    width: 70px;
    height: 70px;
    top: 80%;
    left: 60%;
    animation-delay: 15s;
    animation-duration: 24s;
}

@keyframes floatParticle {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }

    25% {
        transform: translate(30px, -30px) scale(1.2);
        opacity: 0.6;
    }

    50% {
        transform: translate(-20px, -60px) scale(0.8);
        opacity: 0.4;
    }

    75% {
        transform: translate(40px, -40px) scale(1.1);
        opacity: 0.5;
    }
}

/* Animated Wave Shapes */
.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    z-index: 2;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wave-1 {
    animation: waveMove 12s ease-in-out infinite;
}

.wave-2 {
    animation: waveMove 18s ease-in-out infinite reverse;
}

@keyframes waveMove {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-50px);
    }
}

/* Floating Spiritual Symbols */
.floating-symbols {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.symbol {
    position: absolute;
    color: rgba(255, 255, 255, 0.15);
    font-size: 3rem;
    animation: floatSymbol 20s infinite ease-in-out;
    transition: transform 0.4s cubic-bezier(0.1, 0.7, 1.0, 1.0);
    /* For smooth parallax */
    pointer-events: none;
}

.symbol-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.symbol-2 {
    top: 25%;
    right: 12%;
    animation-delay: 5s;
    animation-duration: 30s;
}

.symbol-3 {
    bottom: 30%;
    left: 15%;
    animation-delay: 10s;
    animation-duration: 28s;
}

.symbol-4 {
    top: 50%;
    right: 8%;
    animation-delay: 15s;
    animation-duration: 26s;
}

.symbol-5 {
    bottom: 20%;
    right: 20%;
    animation-delay: 20s;
    animation-duration: 32s;
}

@keyframes floatSymbol {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.15;
    }

    25% {
        transform: translateY(-30px) rotate(90deg);
        opacity: 0.25;
    }

    50% {
        transform: translateY(-60px) rotate(180deg);
        opacity: 0.2;
    }

    75% {
        transform: translateY(-30px) rotate(270deg);
        opacity: 0.25;
    }
}

/* Hero Content Wrapper */
.hero-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1000px;
    padding: 0 20px;
}

/* Hero Content Seamless Glass Effect */
.hero-content-glass {
    position: relative;
    background: transparent;
    /* Seamless with no sides */
    padding: 60px 0;
    animation: fadeInUp 1s ease-out;
    transition: transform 0.5s cubic-bezier(0.1, 0.7, 1.0, 1.0);
}

/* Add a very soft glow behind text for focus */
.hero-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(134, 33, 0, 0.3) 0%, transparent 70%);
    /* Darker glow for contrast */
    z-index: -1;
    pointer-events: none;
    filter: blur(60px);
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(253, 155, 69, 0.2);
    border: 1px solid rgba(253, 155, 69, 0.5);
    padding: 10px 25px;
    border-radius: 50px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    animation: pulse 2s ease-in-out infinite;
}

.hero-badge i {
    color: var(--primary-orange);
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(253, 155, 69, 0.7);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 10px rgba(253, 155, 69, 0);
    }
}

@keyframes sparkle {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.2);
    }
}

/* Hero Title */
.hero-title {
    color: var(--white);
    margin-bottom: 25px;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.1;
}

.title-line {
    display: block;
    animation: slideInFromLeft 1s ease-out;
}

.title-line-1 {
    background: linear-gradient(to right, #fff 0%, var(--primary-orange) 50%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    animation: slideInFromLeft 1s ease-out, shine 5s linear infinite;
    animation-delay: 0.2s, 0s;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.8));
}

.title-line-2 {
    background: linear-gradient(to right, #fff 0%, var(--primary-orange) 50%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    animation: slideInFromLeft 1s ease-out, shine 5s linear infinite;
    animation-delay: 0.4s, 0s;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.8));
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Description */
.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(134, 33, 0, 0.6);
    /* Soft brown shadow */
    animation: fadeIn 1s ease-out 0.6s both;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    animation: fadeIn 1s ease-out 0.8s both;
}

.btn-animated {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-animated::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-animated:hover::before {
    width: 300px;
    height: 300px;
}

.btn-animated span,
.btn-animated i {
    position: relative;
    z-index: 1;
}

.btn-animated i {
    transition: transform 0.4s ease;
}

.btn-animated:hover i {
    transform: translateX(5px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-animated:hover {
    box-shadow: 0 0 40px rgba(253, 155, 69, 0.5);
    background: var(--gradient-warm);
    color: var(--white);
    border-color: transparent;
}

.btn-primary.btn-animated:hover {
    transform: translateY(-5px) scale(1.05);
}

.btn-outline.btn-animated:hover {
    transform: translateY(-5px) scale(1.05);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(253, 155, 69, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
    /* Sharper shadow */
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.stat-divider {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom,
            transparent,
            rgba(255, 255, 255, 0.5),
            transparent);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    animation: fadeIn 1s ease-out 1.5s both;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    margin: 0 auto 10px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: var(--primary-orange);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

.scroll-indicator p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}


/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    display: inline-block;
    padding: 18px 45px;
    background: var(--gradient-orange);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: var(--shadow-orange);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(253, 155, 69, 0.4);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header .subtitle {
    color: var(--primary-orange);
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header h2 {
    color: var(--deep-brown);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(253, 155, 69, 0.2);
    border-color: var(--primary-orange);
}

.card-img {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover .card-img img {
    transform: scale(1.1);
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    margin-bottom: 15px;
    color: var(--deep-brown);
}

.card-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--deep-brown);
    border: 2px solid var(--deep-brown);
    font-weight: 600;
    border-radius: 30px;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--deep-brown);
    color: var(--white);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.feature-box {
    text-align: center;
    padding: 50px 35px;
    background: linear-gradient(135deg, #fff 0%, #fef5ed 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(253, 155, 69, 0.15);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-orange);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-box:hover::before {
    transform: scaleX(1);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(253, 155, 69, 0.25);
    border-color: var(--primary-orange);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.2rem;
    box-shadow: 0 8px 20px rgba(253, 155, 69, 0.3);
    transition: var(--transition);
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(253, 155, 69, 0.4);
}

.feature-box h3 {
    color: var(--deep-brown);
    margin-bottom: 15px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

/* Advanced Hover Effects */
.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(253, 155, 69, 0.4);
}

.hover-scale {
    transition: var(--transition);
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Image Zoom on Hover */
.img-zoom-container {
    overflow: hidden;
}

.img-zoom {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-zoom-container:hover .img-zoom {
    transform: scale(1.15);
}

/* Enquiry Form Styles */
.enquiry-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--deep-brown);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(253, 155, 69, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Cuisine Cards */
.cuisine-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
}

.cuisine-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.cuisine-card:hover img {
    transform: scale(1.1);
}

.cuisine-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px 20px;
    color: var(--white);
}

/* Itinerary Cards */
.itinerary-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.itinerary-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.itinerary-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-orange);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 10;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {

    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        transition: var(--transition);
        padding: 50px;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 30px;
    }

    .hamburger {
        display: flex;
    }

    /* Banner Responsive */
    .hero-content-glass {
        padding: 40px 30px;
    }

    .hero-title {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }

    .hero-stats {
        gap: 25px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .particle {
        display: none;
    }

    .symbol {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .header-wrapper {
        padding: 15px 20px;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 60px;
    }

    .enquiry-form {
        padding: 25px;
    }

    /* Banner Mobile Responsive */
    .hero-content-glass {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .corner-decoration {
        width: 30px;
        height: 30px;
        border-width: 2px;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 20px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 35px;
    }

    .btn-animated {
        width: 100%;
        justify-content: center;
        padding: 15px 30px;
        font-size: 0.95rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .stat-divider {
        height: 40px;
    }

    .floating-symbols .symbol {
        font-size: 1.5rem;
        opacity: 0.1;
    }

    .hero-waves {
        height: 100px;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-mouse {
        width: 25px;
        height: 40px;
    }

    .scroll-indicator p {
        font-size: 0.75rem;
    }
}

/* ============================================
   INTERNAL PAGE BANNERS (Universal Style)
   ============================================ */
.abot-banner,
.banner {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 80px;
    /* To account for fixed header */
}

/* Background Zoom for Internal Banners */
.banner-image,
.abot-banner::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.abot-banner::before {
    content: '';
    background: url('../images/spiritual_hero_banner_1768884441968.png') no-repeat center center/cover;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

/* Standard Banner Overlay */
.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

.banner-overlay,
.banner::after,
.abot-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(134, 33, 0, 0.7), rgba(253, 155, 69, 0.6));
    z-index: 2;
}

/* Internal Banner Content */
.banner-sect,
.banner-text {
    position: relative;
    z-index: 3;
    color: var(--white);
    max-width: 800px;
    padding: 20px;
    animation: fadeInUp 1s ease-out;
}

.banner-sect h1,
.banner-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
}

.banner-sect p,
.banner-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

/* ============================================
   UNIQUENESS SECTION (What Makes Us Different)
   ============================================ */
.uniqueness-section {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--gradient-orange);
    overflow: hidden;
}

.uniqueness-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.mandala {
    position: absolute;
    opacity: 0.1;
    filter: brightness(0) invert(1);
    animation: rotateMandala 60s linear infinite;
}

.mandala-1 {
    width: 600px;
    top: -100px;
    right: -100px;
}

.mandala-2 {
    width: 400px;
    bottom: -50px;
    left: -50px;
    animation-direction: reverse;
}

@keyframes rotateMandala {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.uniqueness-container {
    position: relative;
    z-index: 2;
}

.uniqueness-section .subtitle {
    color: #FFFFFF !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.uniqueness-title {
    color: var(--white);
    background: linear-gradient(to right, #fff 0%, var(--primary-orange) 50%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    /* Deepened shadow */
    animation: shine 5s linear infinite;
    font-family: var(--font-heading);
    text-align: center;
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.uniqueness-desc {
    color: #FFFFFF !important;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
    /* Stronger shadow */
    text-align: center;
    font-weight: 500;
}

.uniqueness-grid {
    margin-top: 60px;
    gap: 30px;
}

.uniqueness-card {
    background: rgba(134, 33, 0, 0.25);
    /* Tinted darker for text visibility */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 40px;
    display: flex;
    gap: 25px;
    transition: var(--transition);
    height: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.uniqueness-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-orange);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.u-card-icon {
    font-size: 3rem;
    color: var(--primary-orange);
    text-shadow: 0 0 20px rgba(253, 155, 69, 0.4);
    flex-shrink: 0;
}

.u-card-content h3 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.u-card-content p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.hover-lift-lg:hover {
    transform: translateY(-15px);
}

@media (max-width: 768px) {
    .uniqueness-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .u-card-icon {
        margin: 0 auto;
        margin-bottom: 15px;
    }
}

/* ============================================
   CTA SECTION (Ready to Begin)
   ============================================ */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: var(--gradient-warm);
    text-align: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-bg .mandala {
    opacity: 0.08;
}

.cta-particles .particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: float 8s infinite ease-in-out;
}

.cta-particles .p-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.cta-particles .p-2 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    right: 10%;
    animation-delay: 2s;
}

.cta-particles .p-3 {
    width: 40px;
    height: 40px;
    top: 30%;
    right: 25%;
    animation-delay: 4s;
}

.cta-container {
    position: relative;
    z-index: 2;
}

.cta-title {
    color: var(--white);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 25px;
    font-family: var(--font-heading);
    background: linear-gradient(to right, #fff 0%, var(--primary-orange) 50%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 5s linear infinite;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.cta-desc {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.cta-actions .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.cta-actions i {
    transition: transform 0.3s ease;
}

.cta-actions .btn-primary:hover i {
    transform: translateX(5px) translateY(-5px);
}

/* ============================================
   MAIN FOOTER
   ============================================ */
.main-footer {
    background: var(--deep-brown);
    color: var(--white);
    padding: 80px 0 40px;
    position: relative;
    border-top: 2px solid var(--primary-orange);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo img {
    height: 70px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.footer-logo:hover img {
    transform: scale(1.05);
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: var(--primary-orange);
    color: var(--deep-brown);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(253, 155, 69, 0.3);
    border-color: transparent;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-orange);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-orange);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--primary-orange);
    opacity: 0.5;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-orange);
    transform: translateX(8px);
}

.footer-links a:hover i {
    opacity: 1;
    transform: translateX(3px);
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-item i {
    color: var(--primary-orange);
    font-size: 1.2rem;
    margin-top: 4px;
}

.contact-item span,
.contact-item a {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-row p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--primary-orange);
}

.footer-legal .sep {
    color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-col {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-col {
        grid-column: span 1;
    }

    .main-footer {
        padding: 60px 0 30px;
    }

    .copyright-row {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   PREMIUM CONTACT PAGE STYLES
   ============================================ */
.contact-premium-section {
    padding: var(--section-padding) 0;
    background: #fdfaf5;
    /* Very soft cream */
    position: relative;
    overflow: hidden;
}

.contact-info-container {
    position: sticky;
    top: 100px;
}

.section-badge {
    display: inline-block;
    background: rgba(253, 155, 69, 0.1);
    color: var(--primary-orange);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid rgba(253, 155, 69, 0.2);
}

.section-title-sm {
    font-family: var(--font-heading);
    color: var(--deep-brown);
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-desc-sm {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Modern Contact Cards */
.modern-contact-cards {
    display: grid;
    gap: 25px;
}

.m-contact-card {
    background: var(--white);
    padding: 25px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(134, 33, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(134, 33, 0, 0.05);
}

.m-contact-card:hover {
    transform: translateX(10px);
    border-color: var(--primary-orange);
    box-shadow: 0 15px 40px rgba(253, 155, 69, 0.15);
}

.m-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-warm);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(134, 33, 0, 0.2);
}

.m-card-content h3 {
    font-size: 1.25rem;
    color: var(--deep-brown);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.m-card-content p {
    margin: 0;
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.5;
}

.m-card-content p a {
    color: var(--gray);
    transition: var(--transition);
}

.m-card-content p a:hover {
    color: var(--primary-orange);
}

.availability {
    font-size: 0.85rem !important;
    color: var(--primary-orange) !important;
    font-weight: 600;
    margin-top: 5px !important;
}

/* Social Icons Contact */
.contact-social-wrap h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--deep-brown);
    margin-bottom: 20px;
}

.c-social-icons {
    display: flex;
    gap: 15px;
}

.c-social-btn {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 1px solid rgba(134, 33, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--deep-brown);
    transition: var(--transition);
}

.c-social-btn:hover {
    background: var(--primary-orange);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-5px) rotate(8deg);
    box-shadow: 0 10px 20px rgba(253, 155, 69, 0.3);
}

/* Premium Form Card */
.premium-form-card {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(134, 33, 0, 0.08);
    border: 1px solid rgba(134, 33, 0, 0.05);
    position: relative;
}

.premium-form-card::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100px;
    height: 100px;
    background: var(--gradient-orange);
    border-radius: 30px;
    z-index: -1;
    opacity: 0.1;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--deep-brown);
    margin-bottom: 15px;
}

.form-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

/* Modern Form Inputs */
.form-floating-group {
    position: relative;
    width: 100%;
}

.form-floating-group i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-orange);
    font-size: 1.1rem;
    transition: var(--transition);
}

.form-floating-group.textarea i {
    top: 25px;
    transform: none;
}

.form-floating-group input,
.form-floating-group textarea {
    width: 100%;
    padding: 18px 20px 18px 55px;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 15px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--dark);
    transition: var(--transition);
}

.form-floating-group textarea {
    min-height: 150px;
    padding-top: 20px;
    resize: none;
}

.form-floating-group input:focus,
.form-floating-group textarea:focus {
    background: var(--white);
    border-color: var(--primary-orange);
    outline: none;
    box-shadow: 0 10px 20px rgba(253, 155, 69, 0.1);
}

.form-floating-group input:focus+i,
.form-floating-group textarea:focus+i {
    transform: translateY(-50%) scale(1.2);
}

.btn-submit-luxury {
    width: 100%;
    justify-content: center;
    padding: 20px;
    font-size: 1.1rem;
    margin-top: 10px;
    box-shadow: 0 15px 35px rgba(134, 33, 0, 0.2);
}

.btn-submit-luxury:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(253, 155, 69, 0.4);
}

@media (max-width: 992px) {
    .premium-form-card {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .contact-premium-section {
        padding: 60px 0;
    }

    .section-title-sm {
        text-align: center;
    }

    .section-desc-sm {
        text-align: center;
    }

    .section-badge {
        display: block;
        width: max-content;
        margin: 0 auto 20px;
    }

    .m-contact-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .contact-social-wrap {
        text-align: center;
    }

    .c-social-icons {
        justify-content: center;
    }
}

/* ============================================
   PREMIUM EXPERIENCE PAGE STYLES
   ============================================ */
.experience-filter-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.modern-filter-wrap {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.m-filter-btn {
    background: var(--white);
    border: 1px solid rgba(134, 33, 0, 0.1);
    padding: 12px 25px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--deep-brown);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    cursor: pointer;
}

.m-filter-btn i {
    color: var(--primary-orange);
    font-size: 1.1rem;
}

.m-filter-btn:hover,
.m-filter-btn.active {
    background: var(--gradient-warm);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(134, 33, 0, 0.2);
}

.m-filter-btn:hover i,
.m-filter-btn.active i {
    color: var(--white);
}

/* Premium Experience Grid */
.experience-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.exp-card-premium {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.exp-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.exp-card-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.exp-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(134, 33, 0, 0.9) 0%, rgba(134, 33, 0, 0.4) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0.9;
    transition: var(--transition);
}

.exp-card-content {
    transform: translateY(20px);
    transition: var(--transition);
}

.exp-cat-tag {
    background: var(--primary-orange);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: inline-block;
}

.exp-card-content h3 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.exp-card-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 20px;
    opacity: 0;
    transition: var(--transition);
    height: 0;
    overflow: hidden;
}

.exp-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transition: var(--transition);
}

.exp-card-premium:hover {
    transform: translateY(-10px);
}

.exp-card-premium:hover img {
    transform: scale(1.1);
}

.exp-card-premium:hover .exp-card-content {
    transform: translateY(0);
}

.exp-card-premium:hover .exp-card-content p,
.exp-card-premium:hover .exp-link {
    opacity: 1;
    height: auto;
    margin-bottom: 20px;
}

/* Featured Swiper Premium */
.featured-experience-swiper-section {
    padding: var(--section-padding) 0;
    background: #fdfaf5;
}

.f-exp-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid rgba(134, 33, 0, 0.05);
}

.f-card-img {
    height: 250px;
    overflow: hidden;
}

.f-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.f-exp-card:hover .f-card-img img {
    transform: scale(1.1);
}

.f-card-body {
    padding: 30px;
}

.f-card-body h3 {
    font-family: var(--font-heading);
    color: var(--deep-brown);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.f-card-body p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.view-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(253, 155, 69, 0.1);
    color: var(--primary-orange);
    padding: 12px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: var(--transition);
    text-decoration: none;
}

.view-more-btn:hover {
    background: var(--primary-orange);
    color: var(--white);
}

.f-pagination .swiper-pagination-bullet-active {
    background: var(--primary-orange);
}

.f-next,
.f-prev {
    color: var(--primary-orange) !important;
    background: var(--white);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

.f-next:after,
.f-prev:after {
    font-size: 1.2rem !important;
    font-weight: 900;
}

@media (max-width: 992px) {
    .experience-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .experience-grid-premium {
        grid-template-columns: 1fr;
    }

    .exp-card-premium {
        height: 350px;
    }
}

/* ============================================
   PREMIUM SACRED PLACES STYLES
   ============================================ */
.sacred-places-section {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.sacred-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sacred-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(134, 33, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(134, 33, 0, 0.05);
    height: 100%;
}

.s-card-img {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.s-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.s-card-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.s-card-body {
    padding: 30px;
}

.s-card-body h3 {
    font-family: var(--font-heading);
    color: var(--deep-brown);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.s-card-subtitle {
    display: block;
    color: var(--primary-orange);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.s-card-body p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.s-card-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--deep-brown);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: var(--transition);
    text-decoration: none;
    width: max-content;
}

.s-card-btn i {
    color: var(--primary-orange);
    transition: transform 0.3s ease;
}

.sacred-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(134, 33, 0, 0.1);
    border-color: var(--primary-orange);
}

.sacred-card:hover .s-card-img img {
    transform: scale(1.1);
}

.sacred-card:hover .s-card-btn {
    color: var(--primary-orange);
}

.sacred-card:hover .s-card-btn i {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .sacred-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sacred-grid {
        grid-template-columns: 1fr;
    }

    .s-card-img {
        height: 220px;
    }
}

/* ============================================
   PREMIUM ABOUT PAGE STYLES
   ============================================ */
.about-story-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.story-image-wrap {
    position: relative;
    padding-right: 30px;
}

.story-badge {
    position: absolute;
    bottom: -20px;
    right: 10px;
    background: var(--gradient-warm);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 15px;
    font-family: var(--font-heading);
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(134, 33, 0, 0.3);
}

.story-text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 25px;
}

/* Mission & Vision Premium */
.mission-vision-premium {
    padding: 80px 0;
    background: #fdfaf5;
}

.mv-card-premium {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(134, 33, 0, 0.05);
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(134, 33, 0, 0.05);
    text-align: center;
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: rgba(253, 155, 69, 0.1);
    color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 30px;
    transition: var(--transition);
}

.mv-card-premium h3 {
    font-family: var(--font-heading);
    color: var(--deep-brown);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.mv-card-premium p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.7;
}

.mv-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(134, 33, 0, 0.1);
}

.mv-card-premium:hover .mv-icon {
    background: var(--primary-orange);
    color: var(--white);
    transform: scale(1.1);
}

/* About Offer Premium */
.offer-card-premium {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.o-card-img {
    height: 250px;
}

.o-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.o-card-body {
    padding: 30px;
    text-align: center;
}

.o-card-body h3 {
    font-size: 1.3rem;
    color: var(--deep-brown);
    margin-bottom: 12px;
}

.o-pagination .swiper-pagination-bullet-active {
    background: var(--primary-orange);
}

.o-next,
.o-prev {
    color: var(--primary-orange) !important;
}

/* About Final CTA */
.about-final-cta {
    padding: var(--section-padding) 0;
    background: var(--gradient-warm);
    color: var(--white);
}

.about-final-cta .cta-title {
    color: var(--white);
    margin-bottom: 20px;
}

.about-final-cta .cta-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
}

@media (max-width: 768px) {
    .mv-card-premium {
        padding: 40px 25px;
    }

    .story-image-wrap {
        padding-right: 0;
        margin-bottom: 40px;
    }
}