:root {
    --primary: #0f172a;
    /* Navy Blue - Authority, Trust */
    --primary-light: #334155;
    --accent: #d97706;
    /* Gold - Premium, Success */
    --accent-hover: #b45309;
    --bg-light: #f1f5f9;
    /* Slate 100 - Calm Background */
    --bg-white: #ffffff;
    --text-main: #1e293b;
    /* Slate 800 - High Contrast Text */
    --text-muted: #64748b;
    /* Slate 500 - Secondary Text */
    --border: #e2e8f0;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    --radius: 8px;
    /* Sharper corners for serious tone */
}

/* --- RESET & BASE --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

h1,
h2,
h3,
h4,
.hero-title,
.logo {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius);
}

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

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

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.text-accent {
    color: var(--accent);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    border-color: var(--primary);
    background: var(--bg-light);
}

.btn-outline {
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: transparent;
    font-size: 0.9rem;
    padding: 8px 16px;
}

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

.btn-block {
    width: 100%;
    justify-content: center;
}

/* --- HEADER --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
    transition: 0.3s;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo i {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--accent);
    transition: 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

/* --- HERO --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    /* Offset fixed header */
    background: url('https://images.unsplash.com/photo-1541829070764-84a7d30dd3f3?auto=format&fit=crop&q=80&w=1920') center/cover no-repeat fixed;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text-box {
    max-width: 650px;
}

.hero-sub {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 16px;
}

/* Daily Quote Widget */
.daily-quote-widget {
    position: absolute;
    bottom: 50px;
    right: 50px;
    background: white;
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    max-width: 350px;
    z-index: 2;
    border-left: 4px solid var(--accent);
}

.quote-icon {
    font-size: 2rem;
    color: var(--accent-hover);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 10px;
}

.daily-quote-widget p {
    font-style: italic;
    color: var(--text-main);
    font-weight: 500;
    font-family: 'Playfair Display', serif;
}

/* Trust Strip */
.trust-strip {
    background: var(--primary);
    color: white;
    padding: 40px 0;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-item i {
    font-size: 2.5rem;
    color: var(--accent);
}

.trust-item h4 {
    color: white;
    margin-bottom: 2px;
    font-size: 1.5rem;
}

.trust-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* --- SECTION HEADERS --- */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-line {
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-sub {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

/* --- PRICING SECTION --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.price-card {
    background: white;
    border-radius: 16px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.08);
    /* Subtle border */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Hover Effect - Lift and Shadow */
.price-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    border-color: var(--accent);
}

/* Featured Card Styling */
.price-card.featured {
    border: 2px solid var(--accent);
    background: #fff;
    box-shadow: 0 10px 30px -10px rgba(217, 119, 6, 0.2);
    z-index: 1;
    /* Pop out */
}

/* Top Color Strip */
.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--primary);
}

.price-card.featured::before {
    background: var(--accent);
    height: 8px;
}

/* Body Padding */
.price-card {
    padding: 0;
    /* Clear padding for inner structure */
}

.pc-content {
    padding: 40px 30px 30px;
    flex: 1;
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: 24px;
    right: -32px;
    background: var(--accent);
    color: white;
    padding: 6px 40px;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.plan-title {
    font-size: 1.6rem;
    margin-bottom: 5px;
    color: var(--primary);
    font-weight: 700;
}

.plan-time {
    display: inline-block;
    background: var(--bg-light);
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 25px;
}

/* Price Box */
.price-box {
    margin-bottom: 25px;
    text-align: left;
}

.price-flex {
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.old-price {
    text-decoration: line-through;
    color: #ef4444;
    /* Red for strike */
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.7;
}

.current-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
}

.current-price small {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.save-badge {
    display: inline-block;
    background: #dcfce7;
    color: #15803d;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 8px;
    border: 1px solid #bbf7d0;
}

/* Features List */
.plan-features {
    margin-bottom: 30px;
    border-top: 1px dashed var(--border);
    padding-top: 25px;
}

.plan-features li {
    margin-bottom: 15px;
    color: var(--text-main);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.plan-features i {
    color: var(--accent);
    /* Check mark color */
    font-size: 1.25rem;
    background: #fff7ed;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
}

/* Featured features */
.price-card.featured .plan-features i {
    background: var(--accent);
    color: white;
}

/* Bulk Pricing Mini-Table */
.bulk-price {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin-top: auto;
    /* Push to bottom */
    margin-bottom: 20px;
    border: 1px solid var(--border);
}

.bulk-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 10px;
}

.bulk-row:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.bulk-row span:first-child {
    color: var(--text-muted);
    font-weight: 500;
}

.bulk-row span:last-child {
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
}

/* Buttons in Card */
.price-card .btn {
    width: 100%;
    border-radius: 50px;
    /* Pill shape */
    padding: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    font-weight: 700;
}

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

.facility-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
    border: 1px solid var(--border);
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}

.f-icon {
    width: 60px;
    height: 60px;
    background: #fff7ed;
    color: var(--accent);
    font-size: 1.5rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    margin-bottom: 20px;
}

.facility-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.facility-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- NOTICE BOARD --- */
.notice-wrapper {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid var(--border);
}

.notice-header {
    background: var(--primary);
    color: white;
    padding: 15px 25px;
}

.notice-body {
    padding: 0;
    max-height: 300px;
    overflow-y: auto;
}



.notice-item {
    padding: 15px 25px;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

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

.notice-date {
    background: var(--accent);
    color: white;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 700;
}

.notice-item p {
    font-size: 0.95rem;
    color: var(--text-main);
}

/* --- SUCCESS STORIES --- */
.success-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.success-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: 0.3s;
    width: 100%;
    max-width: 320px;
    border: 1px solid var(--border);
    position: relative;
}

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

/* Featured Story Style */
.featured-story {
    border: 2px solid var(--accent);
    transform: scale(1.02);
}

.featured-story:hover {
    transform: scale(1.02) translateY(-5px);
}

.featured-story::before {
    content: 'HALL OF FAME';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    font-size: 0.7rem;
    padding: 4px 12px;
    border-radius: 0 0 8px 8px;
    font-weight: 700;
    z-index: 2;
    letter-spacing: 1px;
}

.join-story {
    border: 2px dashed #cbd5e1;
    background: #f8fafc;
}

.s-img-wrap {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: #f1f5f9;
}

.s-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: 0.5s;
    border-radius: 0;
}

.success-card:hover .s-img-wrap img {
    transform: scale(1.05);
}

.join-wrap {
    display: grid;
    place-items: center;
}

.join-icon {
    font-size: 5rem;
    color: #cbd5e1;
    transition: 0.3s;
}

.join-story:hover .join-icon {
    color: var(--primary);
    transform: scale(1.1);
}

.s-content {
    padding: 25px 20px;
}

.s-content h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.s-designation {
    display: block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.s-details {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

.s-dept {
    color: var(--text-muted);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.success-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #e0f2fe;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    margin-top: 15px;
    border: 1px solid #bae6fd;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.join-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

/* --- QUIZ --- */
.quiz-box {
    background: #ffffff;
    border: 2px solid var(--primary);
    border-radius: 16px;
    max-width: 720px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.quiz-header {
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    padding: 22px 28px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.quiz-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(22, 163, 74, 0.1);
    color: #15803d;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: pulse-green 1.8s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.quiz-header h3 {
    font-size: 1.4rem;
    color: var(--text-main);
    margin-bottom: 6px;
    font-weight: 700;
}

.quiz-header p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

.quiz-body {
    padding: 26px 30px;
}

.quiz-meta-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 0.85rem;
}

.quiz-badge-tag {
    background: var(--bg-light);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 600;
    border: 1px solid rgba(0,0,0,0.06);
}

.quiz-counter {
    color: #64748b;
    font-weight: 500;
}

.quiz-question-container {
    margin-bottom: 22px;
}

.quiz-question {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.5;
    color: #1e293b;
    margin: 0;
}

.quiz-options {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 600px) {
    .quiz-options {
        grid-template-columns: 1fr;
    }
}

.quiz-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.98rem;
    font-weight: 500;
    color: #334155;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
    width: 100%;
}

.quiz-btn:hover:not(:disabled) {
    background: #f8fafc;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.quiz-opt-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #f1f5f9;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    color: #475569;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.quiz-btn:hover:not(:disabled) .quiz-opt-letter {
    background: var(--primary);
    color: #ffffff;
}

.quiz-opt-text {
    flex-grow: 1;
}

.quiz-btn.correct {
    background: #f0fdf4 !important;
    border-color: #22c55e !important;
    color: #15803d !important;
}

.quiz-btn.correct .quiz-opt-letter {
    background: #22c55e !important;
    color: #ffffff !important;
}

.quiz-btn.wrong {
    background: #fef2f2 !important;
    border-color: #ef4444 !important;
    color: #b91c1c !important;
}

.quiz-btn.wrong .quiz-opt-letter {
    background: #ef4444 !important;
    color: #ffffff !important;
}

.quiz-btn:disabled {
    cursor: default;
    opacity: 0.9;
}

.quiz-result {
    display: none;
    margin-top: 20px;
    animation: quizFadeIn 0.3s ease-out forwards;
}

.quiz-result.show {
    display: block;
}

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

.quiz-alert {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 12px;
    text-align: left;
}

.quiz-alert-success {
    background: #f0fdf4;
    border: 1.5px solid #86efac;
    color: #166534;
}

.quiz-alert-danger {
    background: #fef2f2;
    border: 1.5px solid #fca5a5;
    color: #991b1b;
}

.quiz-alert-icon {
    font-size: 1.6rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}

.quiz-alert-content h5 {
    margin: 0 0 4px 0;
    font-size: 1.05rem;
    font-weight: 700;
}

.quiz-alert-content p {
    margin: 0;
    font-size: 0.93rem;
    line-height: 1.4;
}

.quiz-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

/* --- GALLERY SLIDER --- */
.gallery-slider-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 50px auto 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 4px solid white;
}

.gallery-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.slide-item {
    min-width: 100%;
    height: 500px;
    position: relative;
}

.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    z-index: 10;
}

.slider-control:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

@media(max-width: 768px) {
    .slide-item {
        height: 300px;
    }

    .slider-control {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* --- ENQUIRY / CONTACT --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    margin-top: 40px;
    align-items: start;
}

.contact-form-col,
.contact-info-col {
    min-width: 0;
}

.contact-form-card,
.premium-fee-card,
.payment-card,
.map-container {
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: linear-gradient(135deg, rgba(255,255,255,0.97), rgba(248,250,252,0.94));
    box-shadow: 0 18px 45px -20px rgba(15, 23, 42, 0.25);
    backdrop-filter: blur(14px);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    transform-style: preserve-3d;
}

.contact-form-card:hover,
.premium-fee-card:hover,
.payment-card:hover,
.map-container:hover {
    transform: perspective(1000px) rotateX(2deg) translateY(-6px);
    box-shadow: 0 24px 50px -20px rgba(15, 23, 42, 0.35);
    border-color: rgba(217, 119, 6, 0.28);
}

.contact-form-card {
    padding: 30px;
}

.form-header {
    margin-bottom: 24px;
}

.enquiry-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.16), rgba(15, 23, 42, 0.08));
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.form-header h3 {
    font-size: 1.8rem;
    margin-bottom: 6px;
}

.form-header p {
    color: var(--text-muted);
}

.input-group {
    margin-bottom: 16px;
}

.input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-main);
    font-size: 0.95rem;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #dbe3ee;
    border-radius: 14px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: all 0.2s ease;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.12);
    transform: translateY(-1px);
}

.seat-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.radio-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.radio-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
    box-shadow: 0 10px 20px -12px rgba(217, 119, 6, 0.35);
}

.radio-card input {
    accent-color: var(--accent);
    width: 16px;
    height: 16px;
}

.premium-fee-card {
    padding: 24px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 55%, #fffef2 100%);
}

.fee-pill {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--primary);
    color: white;
    font-size: 0.74rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.premium-fee-card h4 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.premium-fee-card p {
    color: var(--text-muted);
}

.fee-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 10px 0 8px;
}

.fee-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.fee-unit {
    font-size: 1rem;
    color: var(--text-muted);
}

.fee-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.fee-list span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(217, 119, 6, 0.12);
    border: 1px solid rgba(217, 119, 6, 0.18);
    color: var(--accent);
    font-size: 0.86rem;
    font-weight: 600;
}

/* Payment Card */
.payment-card {
    padding: 28px;
    text-align: center;
    margin-bottom: 24px;
}

.payment-card h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.pay-instr {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.qr-placeholder {
    background: var(--bg-light);
    width: 150px;
    height: 150px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.map-container {
    padding: 14px;
}

.map-container iframe {
    border-radius: 16px;
    display: block;
    height: 220px;
}

.map-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    color: var(--text-muted);
    font-weight: 600;
}

.map-rating span {
    color: var(--primary);
    font-size: 1.1rem;
}

.btn {
    box-shadow: 0 12px 24px -12px rgba(15, 23, 42, 0.22);
}

.btn:hover {
    transform: translateY(-3px) perspective(1000px) rotateX(2deg);
}

/* Footer */
footer {
    background: var(--primary);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.f-about {
    max-width: 400px;
}

.f-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: grid;
    place-items: center;
    border-radius: 50%;
}

.social-links a:hover {
    background: var(--accent);
}

.f-contact p {
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
    opacity: 0.8;
}

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

/* Sticky Whatsapp */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.wa-float:hover {
    transform: scale(1.1);
}

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

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu */
@media(max-width: 900px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 30px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: 0.4s;
    }

    .nav-menu.open {
        right: 0;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.8rem;
    }
}

/* --- REVIEWS SECTION --- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.g-review-card {
    background: white;
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: 0.3s;
    position: relative;
}

.g-review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.review-meta h4 {
    font-size: 1rem;
    margin-bottom: 2px;
    color: var(--text-main);
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
}

.google-icon {
    width: 24px;
    height: 24px;
    margin-left: auto;
    opacity: 0.8;
}

.review-stars {
    color: #fbbf24;
    /* Google Star Yellow */
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: flex;
    gap: 2px;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.6;
}

.write-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    padding: 12px 30px;
    background: white;
    color: #1a73e8;
    /* Google Blue */
    border: 1px solid #dadce0;
    border-radius: 50px;
    font-weight: 500;
    font-family: 'Product Sans', sans-serif;
    transition: 0.3s;
}

.write-review-btn:hover {
    background: #f8f9fa;
    box-shadow: 0 1px 3px rgba(60, 64, 67, 0.3);
}

/* --- DROPDOWN MENU --- */
.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 10px;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1001;
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}

/* Dropdown Arrow Indicator */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: white;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 500;
    transition: 0.2s;
    text-decoration: none;
    white-space: nowrap;
}

.dropdown-link:hover {
    background: var(--bg-light);
    color: var(--primary);
    transform: translateX(5px);
}

.dropdown-link i {
    font-size: 1.2rem;
    color: var(--accent);
    width: 20px;
    text-align: center;
}

/* Nav Item Chevron interaction */
.nav-link i {
    font-size: 1rem;
    margin-left: 2px;
    transition: transform 0.3s;
    vertical-align: middle;
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

/* Mobile Responsive Dropdown */
@media(max-width: 900px) {
    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 0 20px;
        opacity: 1;
        visibility: visible;
        display: none;
        background: transparent;
        margin-top: 10px;
        min-width: auto;
    }

    .nav-item:hover .dropdown-menu {
        transform: none;
    }

    .nav-item {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .nav-item:hover .dropdown-menu {
        display: flex;
    }
}

/* --- LOGO ANIMATION --- */
@keyframes logoSpinBlink {
    0% {
        transform: rotate(0deg);
        opacity: 1;
        border-color: var(--accent);
    }

    50% {
        opacity: 0.5;
        border-color: var(--primary);
    }

    100% {
        transform: rotate(360deg);
        opacity: 1;
        border-color: var(--accent);
    }
}

.logo img,
.f-logo img {
    border: 3px solid var(--accent);
    border-radius: 50%;
    padding: 3px;
    animation: logoSpinBlink 4s linear infinite;
    box-shadow: 0 0 10px rgba(217, 119, 6, 0.3);
    /* Glow effect */
}