﻿/* Trav Around - Luxury Redesign Design System */

:root {
    --primary-olive: #577843;
    --primary-gold: #c5a059;
    --light-cream: #f9f8f4;
    --pure-white: #ffffff;
    --dark-text: #1a1a1a;
    --muted-text: #666666;

    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--dark-text);
    background-color: var(--pure-white);
    line-height: 1.6;
    /* overflow-x: hidden; */
}

html,
body {
    max-width: 100%;
    overflow-x: clip;
}

/* NAV LINK COLORS – FIX ACTIVE STATE */
.navbar .nav-link {
    color: var(--dark-text) !important;
}

.navbar .nav-link:hover {
    color: var(--primary-gold) !important;
}

.navbar .nav-link.active {
    color: var(--primary-gold) !important;
    font-weight: 600;
}


h1,
h2,
h3,
h4,
.serif {
    font-family: 'Playfair Display', serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
}

/* --- Signature Typing Loader --- */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    /* Robust viewport width */
    height: 100vh;
    /* Robust viewport height */
    background: #ffffff;
    /* Switched to White */
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    pointer-events: auto;
    /* Ensure it catches clicks while visible */
}

#loader-wrapper.fade-out {
    opacity: 0;
    pointer-events: none;
    /* Crucial: stop blocking clicks while fading */
}

.loader-logo {
    height: clamp(60px, 15vw, 100px);
    /* Fluid responsiveness for loader */
    margin-bottom: 30px;
    opacity: 0;
    transform: scale(0.8);
    animation: loader-logo-reveal 1.5s ease forwards;
}

@keyframes loader-logo-reveal {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.typing-container {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Explicit child centering */
    gap: 2px;
    width: 100%;
    /* Power centering */
    padding: 0 20px;
    /* Prevent text overflow on mobile */
}

#typing-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 3.5vw, 2.5rem);
    /* Better mobile scaling */
    color: var(--primary-olive);
    /* Changed from gold for white BG */
    font-weight: 700;
    letter-spacing: clamp(1px, 0.5vw, 4px);
    /* Responsive letter spacing */
    text-align: center;
    /* Center text */
    max-width: 90%;
    /* Prevent overflow */
    word-wrap: break-word;
    /* Break long words if needed */
}

.cursor {
    width: 3px;
    height: 1.2em;
    background: var(--primary-gold);
    display: inline-block;
    animation: blink 0.8s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* --- Top Bar --- */
.top-bar {
    background-color: var(--primary-olive);
    padding: 8px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}



.top-bar a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.top-bar a:hover {
    color: var(--primary-gold);
}

/* --- Navigation --- */
.navbar {
    padding: 12px 0;
    /* Reduced padding for cleaner height */
    transition: var(--transition);
    background: transparent;
    border-bottom: 1px solid transparent;
    position: fixed;
    width: 100%;
    top: 0;
    /* Aligns with Top Bar height */
    z-index: 1000;
}

@media (min-width: 992px) {
    .navbar {
        top: 40px;
    }
}

@media (max-width: 991px) {
    .navbar {
        background-color: #ffffff;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
        padding: 5px 0 !important;
        /* Smaller padding on mobile */
    }

    .navbar-brand {
        max-width: 70%;
        /* Prevent logo from taking too much space */
    }

    .logo-img {
        height: 50px !important;
        /* Smaller logo on mobile to fit menu icon */
    }

    .navbar-toggler {
        background-color: #ffffff !important;
        border: 1px solid rgba(0, 0, 0, 0.1) !important;
        border-radius: 5px;
        padding: 5px;
        z-index: 1050;
        display: flex !important;
        /* Force display on mobile */
        align-items: center;
        justify-content: center;
        opacity: 1 !important;
        width: 45px;
        /* Explicit width */
        height: 40px;
        /* Explicit height */
    }

    /* Extremely specific selector to override Bootstrap's theme defaults */
    .navbar-dark .navbar-toggler-icon,
    .navbar-light .navbar-toggler-icon,
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
        width: 24px;
        height: 24px;
    }

    .navbar-collapse {
        background-color: var(--light-cream);
        padding: 20px;
        margin-top: 10px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }
}

.navbar.scrolled {
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid #eee;
    top: 0;
    /* Sticks to top when scrolling */
}

.navbar-brand {
    padding: 0;
}

.logo-img {
    height: 85px;
    /* Sleeker professional size */
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.navbar.scrolled .logo-img {
    height: 65px;
    /* Compact on scroll */
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 15px !important;
    color: var(--dark-text);
    transition: var(--transition);
}

.navbar.scrolled .nav-link {
    padding: 5px 15px !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-gold);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hero Styles Replaced by Collage Layout below */

/* Outdated Hero Styles Removed */

/* Outdated Global Compass Drawing Removed */

.mosaic-1 {
    grid-row: span 2;
}

.mosaic-2 {
    grid-column: span 1;
    height: 280px;
}

.mosaic-3 {
    grid-column: span 1;
    height: 280px;
    align-self: end;
}

/* Outdated Hero Styles Removed */

/* Consolidated Responsive Styles */
@media (max-width: 991px) {
    .luxury-card {
        height: 250px !important;
    }
}

/* Cleaned Section Space */
/* --- Services Section --- */
.section-padding {
    padding: 120px 0;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 60px;
    text-align: center;
}

/* Package Section */
.package-card {
    background: var(--pure-white);
    border: 1px solid #f0f0f0;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.package-img-wrapper {
    position: relative;
    height: 200px;
    /* Decreased size */
    overflow: hidden;
}

.package-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.package-card:hover .package-img-wrapper img {
    transform: scale(1.05);
}

.package-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-olive);
    color: var(--pure-white);
    padding: 3px 12px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--primary-olive);
}

.package-info {
    font-size: 0.85rem;
    color: var(--muted-text);
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f8f8f8;
}

.package-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-gold);
}

/* Pagination UI */
.pagination-wrapper {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.pagination-item {
    width: 40px;
    height: 40px;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    color: var(--dark-text);
}

.pagination-item.active {
    background: var(--primary-olive);
    color: var(--pure-white);
    border-color: var(--primary-olive);
}

.pagination-item:hover:not(.active) {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.pagination-btn {
    padding: 0 20px;
    width: auto;
}

/* Masonry Gallery */
.masonry-gallery {
    columns: 3;
    column-gap: 20px;
    width: 100%;
}

.masonry-item {
    width: 100%;
    margin-bottom: 20px;
    break-inside: avoid;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

@media (max-width: 991px) {
    .masonry-gallery {
        columns: 2;
    }
}

@media (max-width: 575px) {
    .masonry-gallery {
        columns: 1;
    }
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.masonry-item:hover img {
    transform: scale(1.05);
    /* Subtle scale for luxury feel */
}

.masonry-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: #fff;
    opacity: 0;
    transition: var(--transition);
}

.masonry-item:hover .masonry-overlay {
    opacity: 1;
}


/* --- Premium V3 Hero: Interactive Voyage --- */
.hero-premium-v3 {
    min-height: 100vh;
    background-color: var(--light-cream);
    padding: 160px 0 100px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content-v3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.hero-text-v3 {
    flex: 0 0 45%;
    z-index: 20;
}

.hero-tagline-v3 {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--primary-gold);
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-title-v3 {
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    color: var(--dark-text);
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-desc-v3 {
    font-size: 1.1rem;
    color: var(--muted-text);
    max-width: 480px;
    margin-bottom: 50px;
    line-height: 1.8;
}

/* Premium Buttons V3 */
.btn-voyage {
    display: inline-flex;
    align-items: center;
    background: var(--primary-olive);
    color: #fff !important;
    padding: 16px 36px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: none;
}

.btn-voyage:hover {
    background: var(--primary-gold);
    color: #000 !important;
    transform: translateY(-5px);
}

.btn-portfolio {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--dark-text) !important;
    padding: 16px 0;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 2px solid var(--primary-gold);
}

.btn-portfolio:hover {
    color: var(--primary-gold) !important;
    padding-left: 10px;
}

/* Voyage Scene & Flight Animation */
.hero-visual-v3 {
    flex: 0 0 50%;
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.voyage-scene {
    position: relative;
    width: 450px;
    height: 450px;
}

.flight-path {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 380px;
    height: 380px;
    border: 1px dashed rgba(197, 160, 89, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotateX(60deg);
    animation: flight-orbit 12s linear infinite;
}

.css-airplane {
    position: absolute;
    top: -10px;
    left: 50%;
    color: var(--primary-gold);
    font-size: 1.5rem;
    transform: rotate(90deg);
}

@keyframes flight-orbit {
    from {
        transform: translate(-50%, -50%) rotateX(60deg) rotateZ(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotateX(60deg) rotateZ(360deg);
    }
}

.core-compass {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
}

.ring-v3 {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    opacity: 0.2;
}

.ring-v3.glow {
    border-width: 8px;
    filter: blur(15px);
    opacity: 0.1;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.2;
    }
}

/* Floating Image Cards */
.floating-image-card {
    position: absolute;
    width: 180px;
    height: 240px;
    background: #fff;
    padding: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    overflow: hidden;
    transition: var(--transition);
    z-index: 10;
}

.floating-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-1 {
    top: 0;
    right: 30px;
    transform: rotate(8deg);
    animation: float-y 6s ease-in-out infinite;
}

.card-2 {
    bottom: 20px;
    left: 30px;
    transform: rotate(-5deg);
    animation: float-y 6s ease-in-out infinite reverse;
}

.card-3 {
    top: 50%;
    right: -40px;
    transform: translateY(-50%) rotate(-10deg);
    animation: float-y 7s ease-in-out infinite 1s;
}

.card-4 {
    top: 50%;
    left: -40px;
    transform: translateY(-50%) rotate(12deg);
    animation: float-y 7s ease-in-out infinite 0.5s;
}

.card-5 {
    top: -20px;
    left: 20px;
    transform: rotate(-8deg);
    animation: float-y 6.5s ease-in-out infinite 0.3s;
}

.floating-image-card:hover {
    transform: scale(1.1) rotate(0deg);
    z-index: 50;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

@keyframes float-y {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 991px) {
    .hero-visual-v3 {
        height: 600px;
    }

    .hero-content-v3 {
        flex-direction: column;
        text-align: center;
    }

    .hero-text-v3 {
        margin-bottom: 60px;
    }

    .voyage-scene {
        width: 320px;
        height: 480px;
    }

    .floating-image-card {
        width: 120px;
        height: 160px;
    }

    .card-3 {
        right: 0;
    }

    .card-4 {
        left: 0;
    }
}

/* Luxury Card Resizing */
.luxury-card {
    position: relative;
    height: 300px;
    /* Reduced from 420px */
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    border-radius: 0;
    margin-bottom: 30px;
    transition: var(--transition);
}

.luxury-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.card-overlay {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    width: calc(100% - 50px);
    padding: 25px;
    background: #ffffff;
    color: var(--dark-text);
    transition: var(--transition);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(10px);
    opacity: 0.95;
    border-left: 4px solid var(--primary-olive);
}

.card-overlay h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-olive);
    font-family: 'Playfair Display', serif;
}

.card-overlay p {
    font-size: 0.85rem;
    color: var(--muted-text);
    margin-bottom: 0;
    line-height: 1.5;
}

.luxury-card:hover img {
    transform: scale(1.1);
}

.luxury-card:hover .card-overlay {
    transform: translateY(0);
    opacity: 1;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

/* --- Service Icon Cards --- */
.service-icon-card {
    background: var(--pure-white);
    padding: 40px 35px;
    border: 1px solid #f0f0f0;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-icon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-olive), var(--primary-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-icon-card:hover::before {
    transform: scaleX(1);
}

.service-icon-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-gold);
}

.service-icon-card.tall-card {
    padding: 50px 40px;
    min-height: 400px;
    justify-content: center;
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--light-cream), #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    transition: var(--transition);
    border: 2px solid var(--primary-gold);
}

.service-icon-wrapper.large {
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
}

.service-icon-wrapper i {
    font-size: 2rem;
    color: var(--primary-olive);
    transition: var(--transition);
}

.service-icon-wrapper.large i {
    font-size: 2.5rem;
}

.service-icon-card:hover .service-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-olive), var(--primary-gold));
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.3);
}

.service-icon-card:hover .service-icon-wrapper i {
    color: var(--pure-white);
    transform: scale(1.1);
}

.service-icon-card h3 {
    font-size: 1.5rem;
    color: var(--primary-olive);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.service-icon-card p {
    color: var(--muted-text);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Travel Ticketing Multi-Option Card */
.service-icon-header {
    width: 100%;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.service-icon-header h3 {
    font-size: 1.6rem;
    color: var(--primary-olive);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.service-icon-header p {
    color: var(--muted-text);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.service-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.service-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
    border-radius: 8px;
    transition: var(--transition);
    background: var(--light-cream);
}

.service-option:hover {
    background: var(--pure-white);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.service-option .service-icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.service-option .service-icon-wrapper i {
    font-size: 1.5rem;
}

.service-option h4 {
    font-size: 1.1rem;
    color: var(--primary-olive);
    margin-bottom: 5px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

.service-option p {
    font-size: 0.8rem;
    color: var(--muted-text);
    margin-bottom: 0;
}

.service-option:hover .service-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-olive), var(--primary-gold));
    transform: scale(1.15);
}

.service-option:hover .service-icon-wrapper i {
    color: var(--pure-white);
}

/* Responsive adjustments for service cards */
@media (max-width: 768px) {
    .service-options-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-icon-card {
        padding: 30px 25px;
    }

    .service-icon-card.tall-card {
        min-height: auto;
        padding: 40px 30px;
    }
}

/* --- Reviews Section --- */
.bg-cream {
    background-color: var(--light-cream);
}

.review-display {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.review-quote {
    font-size: 1.5rem;
    /* Reduced from 2.2rem */
    font-style: italic;
    font-family: 'Playfair Display', serif;
    margin-bottom: 30px;
    color: var(--muted-text);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    opacity: 0.6;
}

.rating-stars {
    color: var(--primary-gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.reviewer-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 2px solid var(--primary-gold);
}

/* --- Premium White Footer --- */
.footer-white-premium {
    background: #ffffff;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    color: #444;
    border-top: 1px solid var(--primary-olive);
}

.footer-white-premium .container {
    position: relative;
    z-index: 2;
}

.footer-white-premium .serif {
    background: linear-gradient(135deg, #c5a059 0%, #a6843d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.footer-text {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-link {
    color: #555;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    margin-bottom: 12px;
    position: relative;
    font-weight: 500;
}

.footer-link:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-white-premium .text-muted {
    color: #777 !important;
}

.footer-white-premium .text-gold {
    color: var(--primary-gold);
}

/* --- Footer Intricate Drawings (Watermark) --- */
.footer-drawings {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.25;
}

.drawing-circle {
    position: absolute;
    border: 1px solid rgba(197, 160, 89, 0.06);
    border-radius: 50%;
}

.c-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    left: -100px;
    border-style: dashed;
}

.c-1-inner {
    width: 350px;
    height: 350px;
    top: 75px;
    left: 75px;
    border: 1px solid rgba(197, 160, 89, 0.03);
    border-radius: 50%;
    position: absolute;
}

.c-1-dots {
    width: 200px;
    height: 200px;
    top: 150px;
    left: 150px;
    border: 2px dotted rgba(197, 160, 89, 0.08);
    border-radius: 50%;
    position: absolute;
}

.c-2 {
    width: 900px;
    height: 900px;
    bottom: -400px;
    right: -250px;
    border-style: double;
    border-width: 2px;
}

.c-2-inner {
    width: 600px;
    height: 600px;
    bottom: 150px;
    right: 150px;
    border: 1px dashed rgba(197, 160, 89, 0.02);
    border-radius: 50%;
    position: absolute;
}

.c-3 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    border: 1px solid rgba(197, 160, 89, 0.05);
    border-radius: 50%;
    position: absolute;
}

.footer-node {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 50%;
    opacity: 0.2;
}

.n-1 {
    top: 10%;
    left: 30%;
}

.n-2 {
    top: 40%;
    left: 5%;
}

.n-3 {
    bottom: 20%;
    left: 45%;
}

.n-4 {
    top: 15%;
    right: 25%;
}

.n-5 {
    bottom: 45%;
    right: 8%;
}

.n-6 {
    top: 65%;
    left: 12%;
}

.n-7 {
    bottom: 12%;
    right: 38%;
}

.n-8 {
    top: 25%;
    left: 60%;
}

.n-9 {
    bottom: 60%;
    right: 20%;
}

.decorative-line {
    position: absolute;
    background: rgba(197, 160, 89, 0.04);
}

.l-v1 {
    width: 1px;
    height: 100%;
    left: 5%;
    top: 0;
}

.l-v2 {
    width: 1px;
    height: 90%;
    left: 50%;
    top: 5%;
}

.l-v3 {
    width: 1px;
    height: 100%;
    right: 8%;
    top: 0;
}

.l-v4 {
    width: 1px;
    height: 100%;
    left: 25%;
    top: 0;
    opacity: 0.3;
}

.l-h1 {
    width: 100%;
    height: 1px;
    top: 15%;
    left: 0;
}

.l-h2 {
    width: 100%;
    height: 1px;
    bottom: 25%;
    left: 0;
}

.l-h3 {
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
    opacity: 0.3;
}

.compass-marking {
    position: absolute;
    width: 150px;
    height: 1px;
    background: rgba(197, 160, 89, 0.1);
    top: 50%;
    left: 0;
    transform-origin: right center;
}

.cm-1 {
    transform: rotate(45deg);
    left: -75px;
    top: 15%;
}

.cm-2 {
    transform: rotate(-30deg);
    right: -75px;
    bottom: 35%;
    left: auto;
    transform-origin: left center;
}

.cm-3 {
    transform: rotate(15deg);
    left: 15%;
    top: 75%;
    width: 250px;
}

.cm-4 {
    transform: rotate(105deg);
    right: 10%;
    top: 10%;
    width: 180px;
}

/* CSS Logo Watermark Drawing (Enhanced) */
.logo-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    opacity: 0.05;
    pointer-events: none;
}

.css-globe {
    width: 450px;
    height: 450px;
    border: 3px solid var(--primary-gold);
    border-radius: 50%;
    position: absolute;
    top: 75px;
    left: 75px;
    box-shadow: inset 0 0 50px rgba(197, 160, 89, 0.1);
}

.css-globe-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.css-globe-inner::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 120px;
    border: 1px solid var(--primary-gold);
    border-radius: 50%;
    top: 165px;
    left: 0;
}

.css-globe-inner::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 100%;
    border: 1px solid var(--primary-gold);
    border-radius: 50%;
    left: 135px;
    top: 0;
}

.css-continents {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.continent {
    position: absolute;
    background: rgba(197, 160, 89, 0.2);
    border-radius: 40%;
}

.cont-1 {
    width: 80px;
    height: 50px;
    top: 100px;
    left: 120px;
    transform: rotate(20deg);
}

.cont-2 {
    width: 60px;
    height: 90px;
    top: 220px;
    right: 100px;
    transform: rotate(-10deg);
}

.cont-3 {
    width: 100px;
    height: 60px;
    bottom: 80px;
    left: 160px;
}

.css-plane {
    position: absolute;
    top: 100px;
    right: 40px;
    width: 100px;
    height: 60px;
    border-bottom: 3px solid var(--primary-gold);
    transform: rotate(-25deg);
}

.css-plane::before {
    content: '';
    position: absolute;
    top: 20px;
    right: -3px;
    width: 0;
    height: 0;
    border-left: 25px solid var(--primary-gold);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

.css-plane-wing {
    position: absolute;
    width: 40px;
    height: 15px;
    background: var(--primary-gold);
    top: 10px;
    left: 20px;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.path-connection {
    position: absolute;
    border: 1px dashed rgba(197, 160, 89, 0.15);
    border-radius: 50%;
}

.path-1 {
    width: 300px;
    height: 150px;
    top: 20%;
    left: 10%;
    border-right: none;
    border-bottom: none;
    transform: rotate(15deg);
    position: absolute;
}

.path-2 {
    width: 400px;
    height: 200px;
    bottom: 15%;
    right: 5%;
    border-left: none;
    border-top: none;
    transform: rotate(-10deg);
    position: absolute;
}

.social-circle {
    width: 44px;
    height: 44px;
    border: 1px solid #eee;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #333;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fdfdfd;
}

.social-circle:hover {
    transform: translateY(-5px);
}

.social-circle.fb:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: #fff;
}

.social-circle.ig:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
    color: #fff;
}

.social-circle.wa:hover {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}

.footer-logo-img {
    height: 85px;
    width: auto;
    margin-bottom: 25px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
    text-align: center;
}

.footer-credits {
    color: #888;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    line-height: 1.8;
}

.credits-highlight {
    color: var(--primary-gold);
    font-weight: 600;
    opacity: 0.8;
}

/* --- Responsive Adjustments (Footer) --- */
@media (max-width: 991px) {
    .footer-white-premium {
        padding: 80px 0 40px;
    }
}

/* --- Premium Posters --- */
.premium-poster {
    position: relative;
    background: #fff;
    padding: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    overflow: hidden;
    height: 100%;
}

.premium-poster img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 20px;
    transition: var(--transition);
}

.premium-poster:hover img {
    transform: scale(1.03);
}

.poster-tag {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--primary-gold);
    color: #000;
    padding: 5px 15px;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}

.poster-footer {
    padding: 10px 5px;
}

.poster-footer h6 {
    letter-spacing: 1px;
}

.poster-footer small {
    color: var(--primary-gold);
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 2px;
    font-weight: 600;
}

 / *   - - -   L u c k   H i g h - R e s   I m a g e   F i x   &   G r i d   A l i g n m e n t   - - -   * /   h t m l ,
   b o d y    {
               o v e r f l o w - x :    h i d d e n ;
               w i d t h :    1 0 0 % ;
      
}

     . l u c k - c o l l e c t i o n - s e c t i o n    {
               p a d d i n g :    1 0 0 p x   0 ;
               b a c k g r o u n d :    # f f f ;
               o v e r f l o w :    h i d d e n ;
      
}

     . l u c k - u n i f o r m - g r i d    {
               d i s p l a y :    g r i d ;
               g r i d - t e m p l a t e - c o l u m n s :    r e p e a t ( 3 ,    1 f r ) ;
               g a p :    3 0 p x ;
               w i d t h :    1 0 0 % ;
               m a x - w i d t h :    1 2 0 0 p x ;
               m a r g i n :    0   a u t o ;
      
}

     @ m e d i a   ( m a x - w i d t h :   9 9 2 p x )    {
               . l u c k - u n i f o r m - g r i d    {
                           g r i d - t e m p l a t e - c o l u m n s :    1 f r ;
              
    }

      
}

     . l u c k - u n i f o r m - c a r d    {
               p o s i t i o n :    r e l a t i v e ;
               h e i g h t :    6 0 0 p x ;
               w i d t h :    1 0 0 % ;
               o v e r f l o w :    h i d d e n ;
               b a c k g r o u n d :    # f 8 f 8 f 8 ;
      
}

     . l u c k - u n i f o r m - c a r d   i m g    {
               w i d t h :    1 0 0 % ;
               h e i g h t :    1 0 0 % ;
               o b j e c t - f i t :    c o v e r ;
               o b j e c t - p o s i t i o n :    c e n t e r ;
               t r a n s i t i o n :    t r a n s f o r m   1 . 2 s   c u b i c - b e z i e r ( 0 . 1 9 ,    1 ,    0 . 2 2 ,    1 ) ;
      
}

     . l u c k - u n i f o r m - c a r d : h o v e r   i m g    {
               t r a n s f o r m :    s c a l e ( 1 . 1 ) ;
      
}

     . l u c k - c a r d - c o n t e n t    {
               p o s i t i o n :    a b s o l u t e ;
               b o t t o m :    0 ;
               l e f t :    0 ;
               w i d t h :    1 0 0 % ;
               p a d d i n g :    4 0 p x ;
               b a c k g r o u n d :    l i n e a r - g r a d i e n t ( t o   t o p ,    r g b a ( 0 ,  0 ,  0 ,  0 . 8 ) ,    t r a n s p a r e n t ) ;
               c o l o r :    # f f f ;
               t r a n s f o r m :    t r a n s l a t e Y ( 2 0 p x ) ;
               t r a n s i t i o n :    a l l   0 . 6 s   e a s e ;
      
}

     . l u c k - u n i f o r m - c a r d : h o v e r   . l u c k - c a r d - c o n t e n t    {
               t r a n s f o r m :    t r a n s l a t e Y ( 0 ) ;
      
}

     . l u c k - c a r d - c a t e g o r y    {
               f o n t - s i z e :    0 . 7 5 r e m ;
               l e t t e r - s p a c i n g :    4 p x ;
               t e x t - t r a n s f o r m :    u p p e r c a s e ;
               c o l o r :    v a r ( - - p r i m a r y - g o l d ) ;
               m a r g i n - b o t t o m :    1 0 p x ;
               d i s p l a y :    b l o c k ;
      
}

     . l u c k - c a r d - t i t l e    {
               f o n t - f a m i l y :    ' P l a y f a i r   D i s p l a y '  ,    s e r i f ;
               f o n t - s i z e :    2 r e m ;
               m a r g i n - b o t t o m :    1 5 p x ;
      
}

     . l u c k - c a r d - l i n k    {
               c o l o r :    # f f f ;
               t e x t - d e c o r a t i o n :    n o n e ;
               f o n t - s i z e :    0 . 8 r e m ;
               l e t t e r - s p a c i n g :    2 p x ;
               b o r d e r - b o t t o m :    1 p x   s o l i d   r g b a ( 2 5 5 ,  2 5 5 ,  2 5 5 ,  0 . 3 ) ;
               p a d d i n g - b o t t o m :    5 p x ;
               t r a n s i t i o n :    v a r ( - - t r a n s i t i o n ) ;
      
}

     . l u c k - c a r d - l i n k : h o v e r    {
               c o l o r :    v a r ( - - p r i m a r y - g o l d ) ;
               b o r d e r - c o l o r :    v a r ( - - p r i m a r y - g o l d ) ;
      
}

     / *   F i x   f o r   p o s s i b l e   o v e r f l o w   f r o m   f o o t e r   d r a w i n g s   * /   . f o o t e r - w h i t e - p r e m i u m    {
               p o s i t i o n :    r e l a t i v e ;
               o v e r f l o w :    h i d d e n ;
               p a d d i n g :    1 0 0 p x   0   0 ;
               b a c k g r o u n d :    # f f f ;
      
}

     . f o o t e r - d r a w i n g s    {
               p o s i t i o n :    a b s o l u t e ;
               t o p :    0 ;
               l e f t :    0 ;
               w i d t h :    1 0 0 % ;
               h e i g h t :    1 0 0 % ;
               p o i n t e r - e v e n t s :    n o n e ;
               z - i n d e x :    0 ;
               o p a c i t y :    0 . 1 5 ;
               o v e r f l o w :    h i d d e n ;
      
}

     / *   A d j u s t   t h e   m a s s i v e   b u i l d i n g s   i n   t h e   w a t e r m a r k   i f   t h e y   o v e r f l o w   * /   . l o g o - w a t e r m a r k    {
               m a x - w i d t h :    1 0 0 v w ;
               o v e r f l o w :    h i d d e n ;
      
}

         / *   L u c k   I n f o   C a r d s   w i t h   I m a g e s   * /   . l u c k - i n f o - c a r d    {
               b a c k g r o u n d :    # f f f ;
               o v e r f l o w :    h i d d e n ;
               t r a n s i t i o n :    a l l   0 . 4 s   e a s e ;
               b o r d e r :    1 p x   s o l i d   # f 0 f 0 f 0 ;
      
}

     . l u c k - i n f o - c a r d : h o v e r    {
               t r a n s f o r m :    t r a n s l a t e Y ( - 1 0 p x ) ;
               b o x - s h a d o w :    0   2 0 p x   4 0 p x   r g b a ( 0 ,  0 ,  0 ,  0 . 1 ) ;
               b o r d e r - c o l o r :    v a r ( - - p r i m a r y - g o l d ) ;
      
}

     . l u c k - i n f o - i m g    {
               w i d t h :    1 0 0 % ;
               h e i g h t :    2 5 0 p x ;
               o v e r f l o w :    h i d d e n ;
               p o s i t i o n :    r e l a t i v e ;
      
}

     . l u c k - i n f o - i m g   i m g    {
               w i d t h :    1 0 0 % ;
               h e i g h t :    1 0 0 % ;
               o b j e c t - f i t :    c o v e r ;
               t r a n s i t i o n :    t r a n s f o r m   0 . 6 s   e a s e ;
      
}

     . l u c k - i n f o - c a r d : h o v e r   . l u c k - i n f o - i m g   i m g    {
               t r a n s f o r m :    s c a l e ( 1 . 1 ) ;
      
}

     . l u c k - i n f o - c o n t e n t    {
               p a d d i n g :    3 0 p x   2 0 p x ;
      
}

     . l u c k - i n f o - c o n t e n t   h 5    {
               f o n t - s i z e :    1 . 3 r e m ;
               c o l o r :    # 1 a 1 a 1 a ;
      
}

     . l u c k - i n f o - c o n t e n t   p    {
               l i n e - h e i g h t :    1 . 6 ;
      
}

         / *   L u c k   C a r d   S t y l e s   * /   . l u c k - c a r d    {
               b a c k g r o u n d :    # f f f ;
               b o r d e r :    1 p x   s o l i d   # f 0 f 0 f 0 ;
               o v e r f l o w :    h i d d e n ;
               t r a n s i t i o n :    a l l   0 . 5 s   e a s e ;
               h e i g h t :    1 0 0 % ;
      
}

     . l u c k - c a r d : h o v e r    {
               t r a n s f o r m :    t r a n s l a t e Y ( - 1 5 p x ) ;
               b o x - s h a d o w :    0   2 5 p x   5 0 p x   r g b a ( 0 ,  0 ,  0 ,  0 . 1 5 ) ;
               b o r d e r - c o l o r :    v a r ( - - p r i m a r y - g o l d ) ;
      
}

     . l u c k - c a r d - i m a g e    {
               p o s i t i o n :    r e l a t i v e ;
               h e i g h t :    4 0 0 p x ;
               o v e r f l o w :    h i d d e n ;
      
}

     . l u c k - c a r d - i m a g e   i m g    {
               w i d t h :    1 0 0 % ;
               h e i g h t :    1 0 0 % ;
               o b j e c t - f i t :    c o v e r ;
               t r a n s i t i o n :    t r a n s f o r m   0 . 8 s   e a s e ;
      
}

     . l u c k - c a r d : h o v e r   . l u c k - c a r d - i m a g e   i m g    {
               t r a n s f o r m :    s c a l e ( 1 . 1 5 ) ;
      
}

     . l u c k - c a r d - o v e r l a y    {
               p o s i t i o n :    a b s o l u t e ;
               b o t t o m :    0 ;
               l e f t :    0 ;
               w i d t h :    1 0 0 % ;
               p a d d i n g :    4 0 p x   3 0 p x ;
               b a c k g r o u n d :    l i n e a r - g r a d i e n t ( t o   t o p ,    r g b a ( 0 ,  0 ,  0 ,  0 . 9 ) ,    r g b a ( 0 ,  0 ,  0 ,  0 . 4 ) ,    t r a n s p a r e n t ) ;
               o p a c i t y :    0 ;
               t r a n s f o r m :    t r a n s l a t e Y ( 2 0 p x ) ;
               t r a n s i t i o n :    a l l   0 . 5 s   e a s e ;
      
}

     . l u c k - c a r d : h o v e r   . l u c k - c a r d - o v e r l a y    {
               o p a c i t y :    1 ;
               t r a n s f o r m :    t r a n s l a t e Y ( 0 ) ;
      
}

     . l u c k - c a r d - o v e r l a y   h 3    {
               f o n t - s i z e :    2 r e m ;
               m a r g i n - b o t t o m :    1 0 p x ;
      
}

     . l u c k - c a r d - o v e r l a y   p    {
               f o n t - s i z e :    0 . 9 r e m ;
               l e t t e r - s p a c i n g :    2 p x ;
               t e x t - t r a n s f o r m :    u p p e r c a s e ;
      
}

     . l u c k - c a r d - b o d y    {
               p a d d i n g :    3 5 p x   3 0 p x ;
      
}

     . l u c k - c a r d - b o d y   h 4    {
               f o n t - s i z e :    1 . 6 r e m ;
               c o l o r :    # 1 a 1 a 1 a ;
               m a r g i n - b o t t o m :    1 5 p x ;
      
}

     . l u c k - c a r d - b o d y   p    {
               l i n e - h e i g h t :    1 . 8 ;
               f o n t - s i z e :    0 . 9 5 r e m ;
      
}

     . l u c k - c a r d - b o d y   . b t n    {
               t r a n s i t i o n :    a l l   0 . 3 s   e a s e ;
      
}

     . l u c k - c a r d - b o d y   . b t n : h o v e r    {
               b a c k g r o u n d :    v a r ( - - p r i m a r y - g o l d ) ;
               b o r d e r - c o l o r :    v a r ( - - p r i m a r y - g o l d ) ;
               c o l o r :    # f f f ;
      
}

         / *   F i x   L u c k   C a r d   O v e r f l o w   -   S t e p   9 3 6   * /   . l u c k - c a r d    {
               h e i g h t :    1 0 0 % ;
               m a x - w i d t h :    3 0 0 p x    ! i m p o r t a n t ;
               m a r g i n :    0   a u t o ;
               o v e r f l o w :    h i d d e n    ! i m p o r t a n t ;
               b o r d e r :    1 p x   s o l i d   # f 0 f 0 f 0 ;
               t r a n s i t i o n :    a l l   0 . 5 s   e a s e ;
               b a c k g r o u n d :    # f f f ;
      
}

     . l u c k - c a r d - i m a g e    {
               h e i g h t :    3 0 0 p x    ! i m p o r t a n t ;
               o v e r f l o w :    h i d d e n    ! i m p o r t a n t ;
               p o s i t i o n :    r e l a t i v e ;
               w i d t h :    1 0 0 % ;
      
}

     . l u c k - c a r d - i m a g e   i m g    {
               w i d t h :    1 0 0 %    ! i m p o r t a n t ;
               h e i g h t :    1 0 0 %    ! i m p o r t a n t ;
               o b j e c t - f i t :    c o v e r    ! i m p o r t a n t ;
               t r a n s i t i o n :    t r a n s f o r m   0 . 8 s   e a s e ;
      
}

     . l u c k - c a r d : h o v e r   . l u c k - c a r d - i m a g e   i m g    {
               t r a n s f o r m :    s c a l e ( 1 . 1 5 ) ;
      
}

     / *   E n s u r e   n o   g l o b a l   o v e r f l o w   * /   b o d y ,
   h t m l    {
               o v e r f l o w - x :    h i d d e n ;
      
}

         / *   C o n s o l i d a t e d   L u c k   C a r d   S t y l e s   * /   . l u c k - c a r d    {
               b a c k g r o u n d :    # f f f ;
               b o r d e r :    1 p x   s o l i d   # f 0 f 0 f 0 ;
               o v e r f l o w :    h i d d e n    ! i m p o r t a n t ;
               t r a n s i t i o n :    a l l   0 . 5 s   e a s e ;
               h e i g h t :    1 0 0 % ;
               m a x - w i d t h :    3 0 0 p x    ! i m p o r t a n t ;
               m a r g i n :    0   a u t o ;
      
}

     . l u c k - c a r d : h o v e r    {
               t r a n s f o r m :    t r a n s l a t e Y ( - 1 0 p x ) ;
               b o x - s h a d o w :    0   2 0 p x   4 0 p x   r g b a ( 0 ,  0 ,  0 ,  0 . 1 ) ;
               b o r d e r - c o l o r :    v a r ( - - p r i m a r y - g o l d ) ;
      
}

     . l u c k - c a r d - i m a g e    {
               p o s i t i o n :    r e l a t i v e ;
               h e i g h t :    3 0 0 p x    ! i m p o r t a n t ;
               w i d t h :    1 0 0 % ;
               o v e r f l o w :    h i d d e n    ! i m p o r t a n t ;
      
}

     . l u c k - c a r d - i m a g e   i m g    {
               w i d t h :    1 0 0 %    ! i m p o r t a n t ;
               h e i g h t :    1 0 0 %    ! i m p o r t a n t ;
               o b j e c t - f i t :    c o v e r    ! i m p o r t a n t ;
               o b j e c t - p o s i t i o n :    c e n t e r ;
               t r a n s i t i o n :    t r a n s f o r m   0 . 8 s   e a s e ;
      
}

     . l u c k - c a r d : h o v e r   . l u c k - c a r d - i m a g e   i m g    {
               t r a n s f o r m :    s c a l e ( 1 . 1 ) ;
      
}

     . l u c k - c a r d - o v e r l a y    {
               p o s i t i o n :    a b s o l u t e ;
               b o t t o m :    0 ;
               l e f t :    0 ;
               w i d t h :    1 0 0 % ;
               p a d d i n g :    2 0 p x ;
               b a c k g r o u n d :    l i n e a r - g r a d i e n t ( t o   t o p ,    r g b a ( 0 ,  0 ,  0 ,  0 . 8 ) ,    t r a n s p a r e n t ) ;
               o p a c i t y :    0 ;
               t r a n s f o r m :    t r a n s l a t e Y ( 2 0 p x ) ;
               t r a n s i t i o n :    a l l   0 . 5 s   e a s e ;
      
}

     . l u c k - c a r d : h o v e r   . l u c k - c a r d - o v e r l a y    {
               o p a c i t y :    1 ;
               t r a n s f o r m :    t r a n s l a t e Y ( 0 ) ;
      
}

     . l u c k - c a r d - o v e r l a y   h 3    {
               f o n t - s i z e :    1 . 5 r e m ;
               m a r g i n - b o t t o m :    5 p x ;
      
}

     . l u c k - c a r d - o v e r l a y   p    {
               f o n t - s i z e :    0 . 8 r e m ;
               l e t t e r - s p a c i n g :    1 p x ;
               t e x t - t r a n s f o r m :    u p p e r c a s e ;
      
}

     . l u c k - c a r d - b o d y    {
               p a d d i n g :    2 5 p x   2 0 p x ;
      
}

     . l u c k - c a r d - b o d y   h 4    {
               f o n t - s i z e :    1 . 4 r e m ;
               c o l o r :    # 1 a 1 a 1 a ;
               m a r g i n - b o t t o m :    1 0 p x ;
      
}

     . l u c k - c a r d - b o d y   p    {
               l i n e - h e i g h t :    1 . 6 ;
               f o n t - s i z e :    0 . 9 r e m ;
               m a r g i n - b o t t o m :    2 0 p x ;
      
}

     . l u c k - c a r d - b o d y   . b t n    {
               t r a n s i t i o n :    a l l   0 . 3 s   e a s e ;
               f o n t - s i z e :    0 . 8 5 r e m ;
      
}

     . l u c k - c a r d - b o d y   . b t n : h o v e r    {
               b a c k g r o u n d :    v a r ( - - p r i m a r y - g o l d ) ;
               b o r d e r - c o l o r :    v a r ( - - p r i m a r y - g o l d ) ;
               c o l o r :    # f f f ;
      
}

     / *   G l o b a l   O v e r f l o w   P r o t e c t i o n   * /   b o d y ,
   h t m l    {
               o v e r f l o w - x :    h i d d e n ;
               w i d t h :    1 0 0 % ;
               m a x - w i d t h :    1 0 0 v w ;
      
}

         / *   P r e m i u m   A l t e r n a t i n g   F e a t u r e   L a y o u t   * /   . l u c k - m a i n - h e r o    {
               p o s i t i o n :    r e l a t i v e ;
               b a c k g r o u n d - a t t a c h m e n t :    f i x e d ;
               m a r g i n - t o p :    - 8 5 p x ;
       / *   O f f s e t   f i x e d   n a v b a r   * /   
}

     . l u c k - f e a t u r e - s e c t i o n    {
               p o s i t i o n :    r e l a t i v e ;
               o v e r f l o w :    h i d d e n ;
      
}

     . l u c k - f e a t u r e - i m g - w r a p p e r    {
               b o x - s h a d o w :    0   3 0 p x   6 0 p x   r g b a ( 0 ,  0 ,  0 ,  0 . 1 ) ;
      
}

     . l u c k - f e a t u r e - i m g - w r a p p e r   i m g : h o v e r    {
               t r a n s f o r m :    s c a l e ( 1 . 0 5 ) ;
      
}

     . l e t t e r - s p a c i n g - 4    {
               l e t t e r - s p a c i n g :    4 p x ;
      
}

     . l e t t e r - s p a c i n g - 2    {
               l e t t e r - s p a c i n g :    2 p x ;
      
}

     . d i s p l a y - 1    {
               f o n t - w e i g h t :    7 0 0 ;
               l i n e - h e i g h t :    1 . 1 ;
      
}

         / *   P a r a l l a x   S t o r y   S t y l e s   * /   . l u c k - p a r a l l a x - h e r o    {
               h e i g h t :    1 0 0 v h ;
               b a c k g r o u n d :    l i n e a r - g r a d i e n t ( r g b a ( 0 ,  0 ,  0 ,  0 . 5 ) ,    r g b a ( 0 ,  0 ,  0 ,  0 . 5 ) ) ,    u r l ( ' i m a g e s / l u c k / k l . j p g '  )   c e n t e r / c o v e r   n o - r e p e a t   f i x e d ;
               m a r g i n - t o p :    - 8 5 p x ;
      
}

     . l u c k - p a r a l l a x - s e c t i o n    {
               m i n - h e i g h t :    9 0 v h ;
       / *   N e a r l y   f u l l   s c r e e n   * /           b a c k g r o u n d - s i z e :    c o v e r ;
               b a c k g r o u n d - p o s i t i o n :    c e n t e r ;
               b a c k g r o u n d - a t t a c h m e n t :    f i x e d ;
       / *   K e y   t o   p a r a l l a x   * /           p o s i t i o n :    r e l a t i v e ;
               p a d d i n g :    1 0 0 p x   0 ;
               d i s p l a y :    f l e x ;
               a l i g n - i t e m s :    c e n t e r ;
      
}

     . l u c k - f l o a t i n g - c a r d    {
               b a c k g r o u n d :    r g b a ( 2 5 5 ,    2 5 5 ,    2 5 5 ,    0 . 9 5 ) ;
               p a d d i n g :    6 0 p x ;
               b o r d e r - l e f t :    5 p x   s o l i d   v a r ( - - p r i m a r y - g o l d ) ;
               b o x - s h a d o w :    0   4 0 p x   8 0 p x   r g b a ( 0 ,  0 ,  0 ,  0 . 2 ) ;
               p o s i t i o n :    r e l a t i v e ;
               b a c k d r o p - f i l t e r :    b l u r ( 1 0 p x ) ;
      
}

     . l u c k - c a r d - n u m b e r    {
               p o s i t i o n :    a b s o l u t e ;
               t o p :    - 4 0 p x ;
               r i g h t :    4 0 p x ;
               f o n t - s i z e :    6 r e m ;
               f o n t - f a m i l y :    s e r i f ;
               c o l o r :    v a r ( - - p r i m a r y - g o l d ) ;
               o p a c i t y :    0 . 2 ;
               f o n t - w e i g h t :    7 0 0 ;
      
}

     . l u c k - f l o a t i n g - c a r d   h 2    {
               f o n t - s i z e :    3 r e m ;
               c o l o r :    # 1 a 1 a 1 a ;
      
}

     . l u c k - f l o a t i n g - c a r d   p    {
               f o n t - s i z e :    1 . 1 r e m ;
               l i n e - h e i g h t :    1 . 8 ;
      
}

     . b t n - l i n k - g o l d    {
               c o l o r :    v a r ( - - p r i m a r y - g o l d ) ;
               t e x t - d e c o r a t i o n :    n o n e ;
               f o n t - w e i g h t :    6 0 0 ;
               t e x t - t r a n s f o r m :    u p p e r c a s e ;
               l e t t e r - s p a c i n g :    2 p x ;
               f o n t - s i z e :    0 . 8 r e m ;
               t r a n s i t i o n :    a l l   0 . 3 s   e a s e ;
      
}

     . b t n - l i n k - g o l d : h o v e r    {
               c o l o r :    # 1 a 1 a 1 a ;
               p a d d i n g - l e f t :    5 p x ;
      
}

         / *   S t r i c t   F o o t e r   C o n t a i n m e n t   f o r   P a r a l l a x   P a g e   * /   . f o o t e r - w h i t e - p r e m i u m    {
               p o s i t i o n :    r e l a t i v e    ! i m p o r t a n t ;
               o v e r f l o w :    h i d d e n    ! i m p o r t a n t ;
               z - i n d e x :    1 0    ! i m p o r t a n t ;
               b a c k g r o u n d :    # f f f    ! i m p o r t a n t ;
      
}

     . f o o t e r - d r a w i n g s    {
               p o s i t i o n :    a b s o l u t e    ! i m p o r t a n t ;
               t o p :    0    ! i m p o r t a n t ;
               l e f t :    0    ! i m p o r t a n t ;
               w i d t h :    1 0 0 %    ! i m p o r t a n t ;
               h e i g h t :    1 0 0 %    ! i m p o r t a n t ;
               o v e r f l o w :    h i d d e n    ! i m p o r t a n t ;
               c o n t a i n :    p a i n t    ! i m p o r t a n t ;
      
}

     . l o g o - w a t e r m a r k    {
               m a x - w i d t h :    1 0 0 %    ! i m p o r t a n t ;
               o v e r f l o w :    h i d d e n    ! i m p o r t a n t ;
      
}

         / *   C l a s s i c   E d i t o r i a l   C a r d   S t y l e s   * /   . l u c k - c l a s s i c - c a r d    {
               b a c k g r o u n d :    # f f f ;
               b o x - s h a d o w :    0   1 0 p x   3 0 p x   r g b a ( 0 ,  0 ,  0 ,  0 . 0 5 ) ;
               t r a n s i t i o n :    t r a n s f o r m   0 . 4 s   e a s e ,    b o x - s h a d o w   0 . 4 s   e a s e ;
               h e i g h t :    1 0 0 % ;
      
}

     . l u c k - c l a s s i c - c a r d : h o v e r    {
               t r a n s f o r m :    t r a n s l a t e Y ( - 5 p x ) ;
               b o x - s h a d o w :    0   2 0 p x   4 0 p x   r g b a ( 0 ,  0 ,  0 ,  0 . 1 ) ;
      
}

     . l u c k - c l a s s i c - i m g - w r a p p e r    {
               h e i g h t :    3 5 0 p x ;
               w i d t h :    1 0 0 % ;
               o v e r f l o w :    h i d d e n ;
               p o s i t i o n :    r e l a t i v e ;
      
}

     . l u c k - c l a s s i c - i m g - w r a p p e r   i m g    {
               w i d t h :    1 0 0 % ;
               h e i g h t :    1 0 0 % ;
               o b j e c t - f i t :    c o v e r ;
               t r a n s i t i o n :    t r a n s f o r m   0 . 8 s   e a s e ;
      
}

     . l u c k - c l a s s i c - c a r d : h o v e r   . l u c k - c l a s s i c - i m g - w r a p p e r   i m g    {
               t r a n s f o r m :    s c a l e ( 1 . 1 ) ;
      
}

     . l u c k - c l a s s i c - b o d y    {
               p a d d i n g :    3 0 p x ;
               t e x t - a l i g n :    c e n t e r ;
      
}

         / *   L u c k   F r a m e d   H e r o   S e c t i o n   * /   . l u c k - f r a m e d - h e r o    {
               p a d d i n g :    1 4 0 p x   0   1 0 0 p x ;
               b a c k g r o u n d :    # e 8 e 6 e 1 ;
       / *   P r e m i u m   w a r m   g r e y / c r e a m   * /           p o s i t i o n :    r e l a t i v e ;
               o v e r f l o w :    h i d d e n ;
      
}

     . h e r o - f r a m e - w r a p p e r    {
               d i s p l a y :    f l e x ;
               j u s t i f y - c o n t e n t :    c e n t e r ;
               a l i g n - i t e m s :    c e n t e r ;
               g a p :    3 0 p x ;
               m a r g i n - t o p :    6 0 p x ;
               f l e x - w r a p :    w r a p ;
      
}

     . w h i t e - f r a m e - c a r d    {
               b a c k g r o u n d :    # f f f ;
               p a d d i n g :    1 5 p x ;
       / *   T h i s   c r e a t e s   t h e   w h i t e   f r a m e   e f f e c t   a r o u n d   t h e   i m a g e   * /           b o x - s h a d o w :    0   2 0 p x   4 0 p x   r g b a ( 0 ,  0 ,  0 ,  0 . 1 ) ;
               t r a n s i t i o n :    a l l   0 . 5 s   e a s e ;
               w i d t h :    3 2 0 p x ;
               p o s i t i o n :    r e l a t i v e ;
      
}

     / *   A d d   s l i g h t   r o t a t i o n s   f o r   a   m o r e   o r g a n i c   f e e l   i f   d e s i r e d ,
   o r   k e e p   c l e a n   * /   . w h i t e - f r a m e - c a r d : n t h - c h i l d ( 1 )    {
       t r a n s f o r m :    r o t a t e ( - 3 d e g ) ;
       m a r g i n - t o p :    2 0 p x ;
      
}

   . w h i t e - f r a m e - c a r d : n t h - c h i l d ( 2 )    {
       t r a n s f o r m :    r o t a t e ( 0 d e g ) ;
       z - i n d e x :    2 ;
       m a r g i n - b o t t o m :    2 0 p x ;
      
}

   . w h i t e - f r a m e - c a r d : n t h - c h i l d ( 3 )    {
       t r a n s f o r m :    r o t a t e ( 3 d e g ) ;
       m a r g i n - t o p :    2 0 p x ;
      
}

     . w h i t e - f r a m e - c a r d : h o v e r    {
               t r a n s f o r m :    s c a l e ( 1 . 0 5 )   r o t a t e ( 0 d e g )    ! i m p o r t a n t ;
               z - i n d e x :    1 0 ;
               b o x - s h a d o w :    0   3 0 p x   6 0 p x   r g b a ( 0 ,  0 ,  0 ,  0 . 2 ) ;
      
}

     . w h i t e - f r a m e - c a r d   i m g    {
               w i d t h :    1 0 0 % ;
               h e i g h t :    3 5 0 p x ;
               o b j e c t - f i t :    c o v e r ;
               d i s p l a y :    b l o c k ;
      
}

     . f r a m e - c a p t i o n    {
               t e x t - a l i g n :    c e n t e r ;
               p a d d i n g - t o p :    1 5 p x ;
               f o n t - f a m i l y :    ' P l a y f a i r   D i s p l a y '  ,    s e r i f ;
               f o n t - s i z e :    1 . 1 r e m ;
               c o l o r :    # 3 3 3 ;
      
}

         / *   E n h a n c e d   G a l l e r y   H e r o   S e c t i o n   * /   . l u c k - f r a m e d - h e r o    {
               m i n - h e i g h t :    1 0 0 v h ;
               p a d d i n g :    1 8 0 p x   0   1 4 0 p x ;
               b a c k g r o u n d :    l i n e a r - g r a d i e n t ( r g b a ( 0 ,  0 ,  0 ,  0 . 6 ) ,    r g b a ( 0 ,  0 ,  0 ,  0 . 5 ) ) ,    u r l ( ' i m a g e s / l u c k / k l . j p g '  )   c e n t e r / c o v e r   n o - r e p e a t   f i x e d ;
               p o s i t i o n :    r e l a t i v e ;
               o v e r f l o w :    h i d d e n ;
               d i s p l a y :    f l e x ;
               f l e x - d i r e c t i o n :    c o l u m n ;
               j u s t i f y - c o n t e n t :    c e n t e r ;
               c o l o r :    # f f f ;
      
}

     . l u c k - f r a m e d - h e r o : : b e f o r e    {
               c o n t e n t :    ' '  ;
               p o s i t i o n :    a b s o l u t e ;
               t o p :    0 ;
       l e f t :    0 ;
       w i d t h :    1 0 0 % ;
       h e i g h t :    1 0 0 % ;
               b a c k g r o u n d :    r a d i a l - g r a d i e n t ( c i r c l e   a t   c e n t e r ,    r g b a ( 0 ,  0 ,  0 ,  0 . 2 )   0 % ,    r g b a ( 0 ,  0 ,  0 ,  0 . 7 )   1 0 0 % ) ;
               p o i n t e r - e v e n t s :    n o n e ;
      
}

     . h e r o - f r a m e - w r a p p e r    {
               d i s p l a y :    f l e x ;
               j u s t i f y - c o n t e n t :    c e n t e r ;
               a l i g n - i t e m s :    c e n t e r ;
               g a p :    4 0 p x ;
               m a r g i n - t o p :    8 0 p x ;
               f l e x - w r a p :    w r a p ;
               p e r s p e c t i v e :    1 0 0 0 p x ;
      
}

     . w h i t e - f r a m e - c a r d    {
               b a c k g r o u n d :    # f f f ;
               p a d d i n g :    2 0 p x ;
               b o x - s h a d o w :    0   3 0 p x   6 0 p x   r g b a ( 0 ,  0 ,  0 ,  0 . 5 ) ;
               t r a n s i t i o n :    a l l   0 . 6 s   c u b i c - b e z i e r ( 0 . 2 5 ,    1 ,    0 . 5 ,    1 ) ;
               w i d t h :    3 4 0 p x ;
               p o s i t i o n :    r e l a t i v e ;
               t r a n s f o r m - o r i g i n :    c e n t e r   b o t t o m ;
      
}

     . w h i t e - f r a m e - c a r d : n t h - c h i l d ( 1 )    {
       t r a n s f o r m :    r o t a t e ( - 5 d e g )   t r a n s l a t e Y ( 2 0 p x )   s c a l e ( 0 . 9 5 ) ;
       o p a c i t y :    0 . 9 ;
      
}

   . w h i t e - f r a m e - c a r d : n t h - c h i l d ( 2 )    {
       t r a n s f o r m :    r o t a t e ( 0 d e g )   s c a l e ( 1 . 1 ) ;
       z - i n d e x :    5 ;
       b o x - s h a d o w :    0   4 0 p x   8 0 p x   r g b a ( 0 ,  0 ,  0 ,  0 . 6 ) ;
      
}

   . w h i t e - f r a m e - c a r d : n t h - c h i l d ( 3 )    {
       t r a n s f o r m :    r o t a t e ( 5 d e g )   t r a n s l a t e Y ( 2 0 p x )   s c a l e ( 0 . 9 5 ) ;
       o p a c i t y :    0 . 9 ;
      
}

     . w h i t e - f r a m e - c a r d : h o v e r    {
               t r a n s f o r m :    s c a l e ( 1 . 1 5 )   r o t a t e ( 0 d e g )   t r a n s l a t e Y ( - 1 0 p x )    ! i m p o r t a n t ;
               z - i n d e x :    1 0 0 ;
               o p a c i t y :    1 ;
               b o x - s h a d o w :    0   5 0 p x   1 0 0 p x   r g b a ( 0 ,  0 ,  0 ,  0 . 7 ) ;
      
}

     . w h i t e - f r a m e - c a r d   i m g    {
               w i d t h :    1 0 0 % ;
               h e i g h t :    3 8 0 p x ;
               o b j e c t - f i t :    c o v e r ;
               d i s p l a y :    b l o c k ;
               f i l t e r :    b r i g h t n e s s ( 0 . 9 5 ) ;
               t r a n s i t i o n :    f i l t e r   0 . 3 s   e a s e ;
      
}

     . w h i t e - f r a m e - c a r d : h o v e r   i m g    {
               f i l t e r :    b r i g h t n e s s ( 1 . 1 ) ;
      
}

     . f r a m e - c a p t i o n    {
               t e x t - a l i g n :    c e n t e r ;
               p a d d i n g - t o p :    2 0 p x ;
               f o n t - f a m i l y :    ' P l a y f a i r   D i s p l a y '  ,    s e r i f ;
               f o n t - s i z e :    1 . 2 r e m ;
               c o l o r :    # 1 a 1 a 1 a ;
               f o n t - w e i g h t :    6 0 0 ;
               l e t t e r - s p a c i n g :    1 p x ;
               o p a c i t y :    0 . 9 ;
      
}

         / *   - - -   A b o u t   P a g e   S t y l e s   - - -   * /   . a b o u t - h e r o    {
               p a d d i n g :    1 8 0 p x   0   1 0 0 p x ;
               b a c k g r o u n d :    # f 9 f 8 f 4 ;
               t e x t - a l i g n :    c e n t e r ;
      
}

     . a b o u t - c a r d - s e c t i o n    {
               p a d d i n g :    1 0 0 p x   0 ;
               b a c k g r o u n d :    # f f f ;
      
}

     . b e a u t i f u l - c a r d    {
               p o s i t i o n :    r e l a t i v e ;
               h e i g h t :    4 0 0 p x ;
               b a c k g r o u n d :    # f f f ;
               b o r d e r - r a d i u s :    4 p x ;
       / *   S l i g h t   r o u n d e d   f o r   s o f t n e s s   * /           o v e r f l o w :    h i d d e n ;
               b o x - s h a d o w :    0   1 5 p x   3 5 p x   r g b a ( 0 ,  0 ,  0 ,  0 . 0 5 ) ;
               t r a n s i t i o n :    a l l   0 . 5 s   c u b i c - b e z i e r ( 0 . 2 5 ,    0 . 8 ,    0 . 2 5 ,    1 ) ;
               b o r d e r :    1 p x   s o l i d   r g b a ( 0 ,  0 ,  0 ,  0 . 0 3 ) ;
      
}

     . b e a u t i f u l - c a r d : h o v e r    {
               t r a n s f o r m :    t r a n s l a t e Y ( - 1 5 p x ) ;
               b o x - s h a d o w :    0   3 0 p x   6 0 p x   r g b a ( 0 ,  0 ,  0 ,  0 . 1 ) ;
      
}

     . b e a u t i f u l - c a r d - i m g    {
               h e i g h t :    1 0 0 % ;
               w i d t h :    1 0 0 % ;
               p o s i t i o n :    a b s o l u t e ;
               t o p :    0 ;
               l e f t :    0 ;
               t r a n s i t i o n :    t r a n s f o r m   0 . 8 s   e a s e ;
      
}

     . b e a u t i f u l - c a r d - i m g : : a f t e r    {
               c o n t e n t :    ' '  ;
               p o s i t i o n :    a b s o l u t e ;
               i n s e t :    0 ;
               b a c k g r o u n d :    l i n e a r - g r a d i e n t ( t o   t o p ,    r g b a ( 0 ,  0 ,  0 ,  0 . 8 ) ,    r g b a ( 0 ,  0 ,  0 ,  0 . 2 ) ,    t r a n s p a r e n t ) ;
               z - i n d e x :    1 ;
      
}

     . b e a u t i f u l - c a r d   i m g    {
               w i d t h :    1 0 0 % ;
               h e i g h t :    1 0 0 % ;
               o b j e c t - f i t :    c o v e r ;
               t r a n s i t i o n :    t r a n s f o r m   0 . 8 s   e a s e ;
      
}

     . b e a u t i f u l - c a r d : h o v e r   i m g    {
               t r a n s f o r m :    s c a l e ( 1 . 1 ) ;
      
}

     . b e a u t i f u l - c a r d - c o n t e n t    {
               p o s i t i o n :    a b s o l u t e ;
               b o t t o m :    0 ;
               l e f t :    0 ;
               w i d t h :    1 0 0 % ;
               p a d d i n g :    4 0 p x   3 0 p x ;
               z - i n d e x :    2 ;
               c o l o r :    # f f f ;
               t r a n s f o r m :    t r a n s l a t e Y ( 2 0 p x ) ;
               t r a n s i t i o n :    t r a n s f o r m   0 . 5 s   e a s e ;
      
}

     . b e a u t i f u l - c a r d : h o v e r   . b e a u t i f u l - c a r d - c o n t e n t    {
               t r a n s f o r m :    t r a n s l a t e Y ( 0 ) ;
      
}

     . b e a u t i f u l - c a r d - i c o n    {
               f o n t - s i z e :    2 r e m ;
               c o l o r :    v a r ( - - p r i m a r y - g o l d ) ;
               m a r g i n - b o t t o m :    2 0 p x ;
               d i s p l a y :    i n l i n e - b l o c k ;
               b a c k g r o u n d :    r g b a ( 2 5 5 ,  2 5 5 ,  2 5 5 ,  0 . 1 ) ;
               w i d t h :    6 0 p x ;
               h e i g h t :    6 0 p x ;
               l i n e - h e i g h t :    6 0 p x ;
               t e x t - a l i g n :    c e n t e r ;
               b o r d e r - r a d i u s :    5 0 % ;
               b a c k d r o p - f i l t e r :    b l u r ( 5 p x ) ;
      
}

     . b e a u t i f u l - c a r d   h 3    {
               f o n t - s i z e :    1 . 8 r e m ;
               f o n t - f a m i l y :    ' P l a y f a i r   D i s p l a y '  ,    s e r i f ;
               m a r g i n - b o t t o m :    1 5 p x ;
      
}

     . b e a u t i f u l - c a r d   p    {
               f o n t - s i z e :    0 . 9 5 r e m ;
               o p a c i t y :    0 . 9 ;
               l i n e - h e i g h t :    1 . 6 ;
               m a r g i n - b o t t o m :    0 ;
               t r a n s f o r m :    t r a n s l a t e Y ( 2 0 p x ) ;
               o p a c i t y :    0 ;
               t r a n s i t i o n :    a l l   0 . 5 s   e a s e   0 . 1 s ;
      
}

     . b e a u t i f u l - c a r d : h o v e r   p    {
               t r a n s f o r m :    t r a n s l a t e Y ( 0 ) ;
               o p a c i t y :    1 ;
      
}

    

/* --- Section Subtitles --- */
.section-subtitle {
    font-size: 1.8rem;
    color: var(--primary-olive);
    margin-bottom: 15px;
}

.title-separator {
    width: 80px;
    height: 3px;
    background-color: var(--primary-gold);
    margin-top: 10px;
    margin-bottom: 30px;
}


/* --- Updated Tagline & Reviews BG --- */
.hero-tagline-v3 {
    font-size: 1.25rem !important;
    font-family: 'Outfit', sans-serif !important;
    color: var(--primary-olive) !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
    font-weight: 600;
}

.hero-tagline-v3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--primary-gold);
}

#reviews {
    background-color: #fdfbf7 !important;
}

#reviews .section-title {
    color: var(--primary-olive);
}


.tagline-style {
    font-family: 'Averia Serif Libre', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 0.5px;
    text-transform: none;
    line-height: 1.4;
}


/* Page Header Responsive */
.page-header {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

@media (max-width: 991px) {
    .page-header {
        min-height: 50vh;
        padding: 0;
    }

    .section-padding {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        min-height: 40vh;
        padding: 0 !important;
        margin-top: 0 !important;
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .page-header h1 {
        font-size: 2rem !important;
    }

    .page-header p {
        font-size: 1rem !important;
    }
}


/* --- Navbar Page Style (Solid for Sub-pages) --- */
.navbar.navbar-page {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 10px 0;
}

.navbar.navbar-page .nav-link {
    color: var(--dark-text);
}

.navbar.navbar-page .nav-link:hover,
.navbar.navbar-page .nav-link.active {
    color: var(--primary-olive);
}

/* Mobile Menu Fix */
.navbar-toggler {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 8px 12px;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: white;
        padding: 15px;
        margin-top: 10px;
        border-radius: 4px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .navbar {
        top: 0;
    }

    .navbar-nav {
        text-align: center;
    }

    .nav-item {
        margin: 8px 0;
    }

    .nav-item.ms-lg-4 {
        margin-left: 0 !important;
        margin-top: 15px;
    }
}

/* --- Inquire Button --- */
.btn-inquire {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-olive);
    color: var(--pure-white);
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border: 1px solid var(--primary-olive);
    transition: var(--transition);
    cursor: pointer;
}

.btn-inquire:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--dark-text);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(197, 160, 89, 0.2);
}

/* --- Beautiful Card Modifications --- */
.beautiful-card-img img {
    border-radius: 12px;
}

.beautiful-card-content h3 {
    margin-top: 25px;
    margin-bottom: 15px;
}

.beautiful-card-content {
    padding-bottom: 30px;


}

/* --- Gallery Card Styles (Premium Update) --- */
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    background: #1a1a1a;
    height: 100%;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.gallery-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
    opacity: 0.9;
    border: 8px solid #fff;
    /* White Frame */
    box-sizing: border-box;
}

.gallery-card:hover img {
    transform: scale(1.12);
    opacity: 0.6;
    /* Darken image slightly to let text pop */
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    opacity: 0.9;
    transition: all 0.4s ease;
}

.gallery-overlay h4 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--pure-white);
    transform: translateY(10px);
    transition: transform 0.4s ease, color 0.3s;
    font-family: 'Playfair Display', serif;
}

.gallery-card:hover .gallery-overlay h4 {
    transform: translateY(0);
    color: var(--primary-gold);
}

.gallery-subtitle {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(10px);
    transition: transform 0.4s ease 0.1s, color 0.3s;
    position: relative;
    padding-left: 15px;
}

.gallery-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 1px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.gallery-card:hover .gallery-subtitle {
    transform: translateY(0);
    color: var(--pure-white);
}

.gallery-card:hover .gallery-subtitle::before {
    width: 25px;
}

/* --- Lightbox Styles --- */
.lightbox {
    position: fixed;
    z-index: 100000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content-wrapper {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    border: 10px solid #fff;
    border-radius: 4px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: -40px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    background: none;
    border: none;
    padding: 10px;
}

.lightbox-close:hover {
    color: var(--primary-gold);
}

@media (max-width: 768px) {
    .lightbox-close {
        top: -40px;
        right: 0;
    }
}

/* --- Beautiful Cards Section (About Page) --- */
.about-card-section {
    padding: 80px 0;
    background: var(--light-cream);
}

.beautiful-card {
    background: var(--pure-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.beautiful-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.beautiful-card-img {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.beautiful-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.beautiful-card:hover .beautiful-card-img img {
    transform: scale(1.1);
}

.beautiful-card-content {
    padding: 35px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: var(--pure-white);
}

.beautiful-card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-olive);
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.beautiful-card-icon {
    color: var(--primary-gold);
    font-size: 1.3rem;
}

.beautiful-card-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--muted-text);
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .beautiful-card-img {
        height: 240px;
    }

    .beautiful-card-content {
        padding: 30px 25px;
    }

    .beautiful-card-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 575px) {
    .about-card-section {
        padding: 60px 0;
    }

    /* Added narrow space from top as requested */
    .beautiful-card {
        padding-top: 10px;
    }

    .beautiful-card-img {
        height: 280px;
        /* Increased height */
    }

    .beautiful-card-content {
        padding: 25px 20px;
    }

    .beautiful-card-content h3 {
        font-size: 1.2rem;
    }

    .beautiful-card-content p {
        font-size: 0.95rem;
    }
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    transition: all 0.3s ease;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float a:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    color: white;
    font-size: 30px;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }

    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float a {
        width: 50px;
        height: 50px;
    }

    .whatsapp-float i {
        font-size: 24px;
    }
}

/* --- Testimonials 3-Card Carousel --- */
.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
    /* Removed margin to increase width */
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 2px solid var(--primary-gold);
    padding: 3px;
    background: #fff;
}

.testimonial-quote {
    font-size: 0.95rem;
    color: var(--muted-text);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.rating-stars {
    color: var(--primary-gold);
    font-size: 0.8rem;
    margin-bottom: 15px;
}

/* Custom Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.8;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary-olive);
    border-radius: 50%;
    background-size: 50%;
    width: 3rem;
    height: 3rem;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

/* Indicators */
.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators button {
    background-color: var(--primary-gold) !important;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;
    margin: 0 5px !important;
}




/* Custom Nav Responsive Css */


/* =========================================================
   FIX TOP BAR COLLAPSING ON MOBILE (BOOTSTRAP GRID RESTORE)
   ========================================================= */
@media (max-width: 991px) {

    /* Force show */
    .top-bar.d-none.d-lg-block {
        display: block !important;
        width: 100%;
        background-color: var(--primary-olive);
    }

    /* Restore container */
    .top-bar .container {
        width: 100%;
        padding-left: 12px;
        padding-right: 12px;
    }

    /* Restore row behavior */
    .top-bar .row {
        display: flex !important;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        min-height: 36px;
        margin: 0;
    }

    /* Restore columns */
    .top-bar .col-md-8,
    .top-bar .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center !important;
        padding: 2px 0;
    }

    /* Text visibility */
    .top-bar span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 0.75rem;
        white-space: nowrap;
        color: #fff;
    }
}

/* =========================================================
   FIX FIXED NAVBAR OFFSET
   ========================================================= */
@media (max-width: 991px) {
    .navbar {
        top: 36px;
    }
}

/* --- My Code FIXED CUSTOM TOP BAR --- */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    /* ABOVE navbar */
}


/* =====================================
   GLOBAL HEADER SPACING FIX
   ===================================== */

/* Desktop: top-bar (40px) + navbar (~80px) */
@media (min-width: 992px) {
    body {
        padding-top: 50px;
    }
}

/* Mobile: navbar only */
@media (max-width: 991px) {
    body {
        padding-top: 70px;
    }
}


/* ================================
   MOBILE FIX: SHOW NAVBAR BELOW TOP BAR
   ================================ */
@media (max-width: 991px) {
    .navbar {
        position: relative;
        /* KEY FIX */
        top: 0;
        /* reset */
        z-index: 1000;
    }

    body {
        padding-top: 65px;
        /* only top-bar height */
    }
}

/* =========================================
   MOBILE HERO GAP FIX
   Reduce space below navbar
   ========================================= */
@media (max-width: 991px) {
    .hero-premium-v3 {
        padding-top: 30px;
        /* was 160px */
        padding-bottom: 60px;
        min-height: auto;
        /* prevent forced tall hero */
    }

    .hero-tagline-v3 {
        margin-top: 0;
        /* ensure no extra gap */
    }
}

/* --- My Code FIXED CUSTOM TOP BAR --- */

/* =========================================
   GLOBAL FIXED NAV OFFSET (ALL PAGES)
   ========================================= */

@media (min-width: 992px) {

    /* About Page: Push content down below fixed header */
    .about-card-section {
        margin-top: 100px;
    }

    /* Packages Page: Increase padding to clear navbar while keeping background */
    .page-header {
        padding-top: 200px !important;
    }
}


/* bcbb */

/* Top bar hide on scroll */
.top-bar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    transition: transform 0.4s ease;
}

.top-bar.hidden {
    transform: translateY(-100%);
}

/* Mobile: top bar should scroll away */
@media (max-width: 991px) {
    .top-bar {
        position: static;
        transform: none !important;
    }
}
@media (max-width: 991px) {
    .navbar {
        position: fixed;
        top: 0 !important;
        left: 0;
        right: 0;
        z-index: 1000;
    }
}

/* FIX: Remove white gap above navbar on packages page */
.page-header {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
.page-header {
    position: relative;
    top: 0;
}


/* FIX: Packages page mobile navbar ordering */
@media (max-width: 991px) {
    body {
        padding-top: 0 !important;
    }

    .navbar {
        top: 0 !important;
        position: fixed !important;
    }

    .top-bar {
        position: relative !important;
        top: auto !important;
    }
}
 





