@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --bg-deep: #0f1c13;
    --bg-surface: #1a2f22;
    --gold-primary: #C6A667;
    --gold-gradient: linear-gradient(135deg, #F3E5AB 0%, #C6A667 50%, #9C7830 100%);
    --gold-text-effect: linear-gradient(to right, #E8D39E, #C6A667, #E8D39E);
    --text-main: #FFFFFF;
    --text-muted: #c2d6c4;
    --font-heading: "Playfair Display", serif;
    --font-body: "Montserrat", sans-serif;
    --container-width: 1240px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 1rem;
}

a {
    text-decoration: none !important;
    color: inherit;
    transition: all .3s ease;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 8rem 0;
}

.text-gold {
    background: var(--gold-text-effect);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% auto;
    animation: shine 4s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Buttons */
.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(90deg, rgba(198, 166, 103, .1), transparent);
    border: 1px solid rgba(198, 166, 103, .4);
    color: #e8d39e;
    font-family: var(--font-body);
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    font-weight: 600;
    cursor: pointer;
    transition: all .4s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-premium:hover {
    border-color: #c6a667;
    box-shadow: 0 0 25px rgba(198, 166, 103, 0.25);
    transform: translateY(-2px);
    background: linear-gradient(90deg, rgba(198, 166, 103, 0.2), rgba(198, 166, 103, 0.05));
    color: #fff;
}

.btn-success {
    background: #198754 !important;
    /* Bootstrap success green */
    border-color: #198754 !important;
    color: white !important;
    box-shadow: 0 0 15px rgba(25, 135, 84, 0.4) !important;
    cursor: default !important;
    pointer-events: none;
}

/* Cards */
/* Cards */
/* Cards Premium Refinement */
/* Cards - Clean Animated Gradient Border */
.spotlight-card {
    position: relative;
    /* Two layers: Top is interior (dark), Bottom is border (gradient) */
    background: linear-gradient(var(--bg-surface), var(--bg-surface)),
        linear-gradient(135deg, transparent 45%, #C6A667 50%, transparent 55%);
    background-origin: border-box;
    background-clip: padding-box, border-box;

    /* The border is transparent so the gradient shows through */
    border: 1px solid transparent;
    border-radius: 0;
    /* Square edges */

    padding: 2.5rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;

    background-size: 100% 100%, 250% 250%;
    background-position: center, 0% 0%;
    transition: all 0.6s ease;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.spotlight-card:hover {
    transform: translateY(-5px);
    /* Animate the gradient background position to create a 'shine' passing through the border */
    background-position: center, 100% 100%;
    box-shadow: 0 15px 30px -10px rgba(198, 166, 103, 0.15);
    border-color: transparent;
}

.spotlight-card i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--gold-primary);
    transition: transform 0.4s ease;
}

.spotlight-card:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(198, 166, 103, 0.4));
}

.spotlight-card h3,
.spotlight-card h4,
.spotlight-card p {
    z-index: 2;
    position: relative;
}

/* Cleanup unused pseudo-elements */
.spotlight-card::before,
.spotlight-card::after {
    display: none;
}

/* Icon Styling - Liquid Gold Effect */
.spotlight-card i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #C6A667;
    /* Fallback */
    background: linear-gradient(135deg, #F3E5AB 0%, #C6A667 50%, #9C7830 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.5s ease;
}

.spotlight-card:hover i {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(198, 166, 103, 0.6));
}

/* Typography Polish */
.spotlight-card h3,
.spotlight-card h4 {
    transition: all 0.4s ease;
    letter-spacing: 0.5px;
}

.spotlight-card:hover h3,
.spotlight-card:hover h4 {
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.spotlight-card::before {
    display: none;
}

.spotlight-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Custom Additions for Layout */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mt-4 {
    margin-top: 2rem;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    position: relative;
    padding-top: 0;
    overflow: hidden;
}

.hero .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 100vh;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--bg-deep) 0%, rgba(8, 8, 8, 0.8) 50%, rgba(8, 8, 8, 0.4) 100%);
    z-index: -1;
}

.hero-content {
    align-self: center;
    padding-top: 0;
    padding-bottom: 4rem;
    padding-right: 2rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    border-radius: 50px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.hero-image-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    margin-bottom: -5px;
    /* Ensure visual ground contact */
}

.hero-image-wrapper img {
    width: auto;
    max-height: 90vh;
    /* Allow it to be tall */
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.5));
    mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
}

/* Icons */
.icon-gold {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

/* Services Marquee Banner */
/* Services Marquee Banner */
/* Services Marquee Banner - Ultra Premium Glass */
.marquee-container {
    width: 100%;
    /* Glass Effect: Dark semi-transparent gradient + Blur */
    background: linear-gradient(180deg, rgba(26, 47, 34, 0.6) 0%, rgba(15, 28, 19, 0.8) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    /* Premium Borders: Glossy top edge, gold tint */
    border-top: 1px solid rgba(243, 229, 171, 0.3);
    /* Pale gold gloss */
    border-bottom: 1px solid rgba(15, 28, 19, 0.8);

    /* Depth */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);

    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 1.2rem 0;
    z-index: 100;
}

.marquee-content {
    display: inline-block;
    animation: marquee 80s linear infinite;
    padding-left: 100%;
}

.marquee-content span {
    display: inline-block;

    /* Rich Metallic Gold Gradient Text */
    background: linear-gradient(135deg, #F9F295 0%, #E0AA3E 40%, #B88A44 70%, #F9F295 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    /* Makes the gradient visible */

    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    /* High-end fashion spacing */
    font-size: 0.95rem;
    margin-right: 5rem;

    /* Simulate gold reflection */
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.5));
}

.marquee-content span::after {
    content: "✦";
    margin-left: 5rem;
    color: #F3E5AB;
    /* Pale gold for the star */
    font-size: 0.8rem;
    vertical-align: middle;
    filter: drop-shadow(0 0 5px rgba(243, 229, 171, 0.6));
    /* Glowing star */
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 9999;
    /* Ensure it is on top */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 60px;
    height: 60px;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

/* 24h Badge */
.whatsapp-badge {
    position: absolute;
    top: -10px;
    right: -5px;
    background-color: #ff0000;
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 3px 6px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    animation: bounce 2s infinite;
}

/* Pulse Animation */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}

/* Footer */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 0;
    background: var(--bg-deep);
}

/* Responsive */
@media (max-width: 900px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 2rem !important;
    }

    .container {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .section-padding {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }

    /* Force Universal Centering on Mobile */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    span,
    div,
    a,
    li,
    button,
    input,
    select,
    textarea {
        text-align: center !important;
    }

    /* Additional centering for flex/grid items */
    .hero-content,
    .text-center,
    .footer .grid-2>div:first-child,
    .grid-2>div,
    .spotlight-card {
        display: flex;
        flex-direction: column;
        align-items: center !important;
        justify-content: center !important;
    }

    /* Grid Adjustments */
    .grid-2,
    .grid-3,
    .grid-4,
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* Flex adjustments for specific sections */
    .footer .grid-2 {
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }

    .spotlight-card {
        align-items: center !important;
        text-align: center !important;
        /* Mobile "Effect": Add permanent border since hover doesn't exist */
        border-color: rgba(198, 166, 103, 0.3);
        background: linear-gradient(var(--bg-surface), var(--bg-surface)),
            linear-gradient(135deg, rgba(198, 166, 103, 0.3) 0%, rgba(198, 166, 103, 0.1) 100%);
    }

    .spotlight-card i {
        /* Keep icon slightly scaled/visible */
        color: var(--gold-primary);
    }

    /* Fix Hero Image "Flying" */
    .hero-image-wrapper {
        order: 2;
        /* Move to bottom */
        margin-bottom: 0;
        margin-top: 1rem;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }

    .hero-image-wrapper img {
        max-height: 50vh;
        /* Don't take up entire mobile screen */
        mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
        -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    }

    .btn-premium {
        width: 100%;
        justify-content: center;
    }

    .hero {
        min-height: 100dvh;
        /* Dynamic viewport height for clearer mobile feel */
        padding-top: 2rem;
        /* Space for navbar */
        padding-bottom: 0;
    }

    .hero-content {
        margin: 0 auto;
        padding-right: 0;
        padding-top: 0;
        padding-bottom: 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Center buttons */
    }

    /* Ensure marquee doesn't break layout width */
    .marquee-content span {
        margin-right: 2rem;
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
}