:root {
    --black: #0B0B0B;
    --black-soft: #121212;
    --gold: #FFD700;
    --gold-soft: #e6c55a;
    --white: #ffffff;
    --gray: #aaaaaa;

    --shadow: 0 10px 30px rgba(0,0,0,0.5);
    --shadow-soft: 0 6px 18px rgba(0,0,0,0.3);

    --radius: 19px;
}

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

body {
    background: var(--black);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    padding-top: 90px;
}

a {
    text-decoration: none;
}

/* =========================
   NAVBAR
========================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 11, 11, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 215, 0, .1);
    transition: background .4s ease, box-shadow .4s ease, border-color .4s ease;
}

.nav-container {
    width: 92%;
    max-width: 1400px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 90px;
    gap: 24px;
}

.logo {
    width: 90px;
    height: 90px;
    object-fit: contain;

    transition: .4s;
}

.logo:hover {
    transform: scale(1.05);
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color:#ffffff;
    font-size: .82rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    position: relative;
    transition: color .3s ease;
    padding-bottom: 4px;
}

.nav-links a:hover {
    color: var(--gold);

    text-shadow:
        0 0 12px rgba(255,215,0,.3);
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .35s ease;
}
 
.nav-links a:hover::after {
    width: 100%;
}

.nav-glow {
    position: absolute;

    top: 0;
    left: 50%;

    transform: translateX(-50%);

    width: 450px;
    height: 2px;

    background: linear-gradient(
        to right,
        transparent,
        var(--gold),
        transparent
    );

    opacity: .7;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    font-size: .97rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-decoration: none;
    transition: color .3s ease;
    white-space: nowrap;
}
 
.nav-phone svg {
    width: 18px;
    height: 18px;
    color: var(--gold-soft);
    flex-shrink: 0;

    
}
 
.nav-phone:hover {
    color: var(--gold);
}

.navbar.scrolled {

      
    background: rgba(11, 11, 11, 0.98);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    box-shadow: 0 8px 30px rgba(0, 0, 0, .4);
}

.quote-btn {
    position: relative;

    overflow: hidden;

    background: linear-gradient(
        135deg,
        #ffd700,
        #e6c55a
    );

    color: #000;

    font-weight: 700;

    letter-spacing: .5px;

    padding: 14px 28px;

    border-radius: 50px;

    left: 90px;
}

.quote-btn::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 100%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.4),
        transparent
    );

    transition: .8s;
}



.line-2 {

    background:
        linear-gradient(
            90deg,
            var(--gold),
            #fff6b0,
            var(--gold)
        );

    background-size: 200% auto;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation:
        revealLine 1s forwards,
        shimmer 4s infinite;

    animation-delay:
        .4s,
        2s;
}

@keyframes shimmer {

    from {
        background-position: 200% center;
    }

    to {
        background-position: -200% center;
    }
}

.quote-btn:hover::before {
    left: 120%;
}

.quote-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease;
}

/* Mobile drawer */
.mobile-drawer {
    display: none;
    flex-direction: column;
    gap: 0;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 215, 0, .08);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .4s ease;
}
 
.mobile-drawer.open {
    max-height: 600px;
    padding: 20px 5% 28px;
}
 
.mobile-nav-links {
    display: flex;
    flex-direction: column;
}
 
.mobile-nav-links a {
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    transition: color .25s ease, padding-left .25s ease;
}
 
.mobile-nav-links a:hover {
    color: var(--gold);
    padding-left: 8px;
}
 
.mobile-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    text-decoration: none;
    font-size: .85rem;
    margin-top: 20px;
    transition: color .25s ease;
}
 
.mobile-phone:hover { color: var(--gold); }
 
.mobile-quote-btn {
    margin-top: 16px;
    text-align: center;
    display: block;
}
 

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo {
    width: 85px;
    height: 85px;
    object-fit: contain;
    transition: transform .4s ease;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    letter-spacing: 1px;
}

.brand-tagline {
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 5px;
}

@media (max-width: 900px) {
    .nav-links,
    .nav-phone { display: none; }
    .quote-btn:not(.mobile-quote-btn) { display: none; }
    .mobile-menu-btn { display: flex; }
    .mobile-drawer { display: flex; }
}
 
@media (max-width: 768px) {
    .brand-name { font-size: 1.4rem; }
    .brand-tagline { font-size: .65rem; }
    .logo { width: 60px; height: 60px; }
}
 

/* =========================
   FOOTER
========================= */


.footer {
    background: rgba(11, 11, 11, 0.88);
    margin-top: 0;
    position: relative;
}
 
.footer-rule {
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 215, 0, .5) 30%,
        rgba(255, 215, 0, .5) 70%,
        transparent
    );
}
 
.footer-container {
    width: 92%;
    max-width: 1400px;
    margin: auto;
    padding: 80px 0 60px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 50px;
    align-items: start;
}
 
/* Brand column */
.footer-brand__logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
   
}
 
.footer-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    
    
}
 
.footer-brand__desc {
    color: var(--gray);
    line-height: 1.85;
    font-size: .9rem;
    margin-bottom: 24px;
    max-width: 300px;
}
 
.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
 
.footer-social-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 215, 0, .15);
    color: var(--gray);
    text-decoration: none;
    font-size: .82rem;
    font-weight: 500;
    transition: border-color .25s ease, color .25s ease, background .25s ease;
    width: fit-content;
}
 
.footer-social-pill svg {
    color: var(--gold-soft);
    flex-shrink: 0;
}
 
.footer-social-pill:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(255, 215, 0, .05);
}
 
.footer-social-pill--wa svg {
    color: #25D366;
}
 
.footer-social-pill--wa:hover {
    border-color: #25D366;
    color: #25D366;
    background: rgba(37, 211, 102, .05);
}
 
/* Column title */
.footer-col__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}
 
.footer-col__title-line {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--gold-soft);
    flex-shrink: 0;
}
 
/* Links */
.footer-col__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
 
.footer-col__links li a {
    color: var(--gray);
    text-decoration: none;
    font-size: .88rem;
    line-height: 1.6;
    padding: 6px 0;
    display: inline-flex;
    align-items: center;
    gap: 0;
    transition: color .25s ease, gap .25s ease;
    position: relative;
}
 
.footer-col__links li a::before {
    content: "→";
    font-size: .75rem;
    color: var(--gold-soft);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity .25s ease, transform .25s ease;
    margin-right: 0;
    width: 0;
    overflow: hidden;
}
 
.footer-col__links li a:hover {
    color: var(--gold);
}
 
.footer-col__links li a:hover::before {
    opacity: 1;
    transform: translateX(0);
    width: 16px;
    margin-right: 4px;
}
 
/* Contact list */
.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}
 
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
 
.footer-contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 215, 0, .06);
    border: 1px solid rgba(255, 215, 0, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
 
.footer-contact-icon svg {
    color: var(--gold-soft);
}
 
.footer-contact-label {
    display: block;
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold-soft);
    margin-bottom: 3px;
    font-weight: 600;
}
 
.footer-contact-list li > div > span,
.footer-contact-list li > div > a {
    color: var(--gray);
    font-size: .88rem;
    line-height: 1.5;
    text-decoration: none;
    transition: color .25s ease;
    display: block;
}
 
.footer-contact-list li > div > a:hover {
    color: var(--gold);
}
 
/* Footer CTA button */
.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    color: #000;
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .5px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform .3s ease, box-shadow .3s ease;
}
 
.footer-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 215, 0, .28);
}
 
.footer-cta-btn svg {
    transition: transform .3s ease;
}
 
.footer-cta-btn:hover svg {
    transform: translateX(4px);
}
 
/* Bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 215, 0, .07);
    padding: 20px 4%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
 
.footer-bottom p {
    color: rgba(255, 255, 255, .35);
    font-size: .8rem;
}
 
.footer-bottom__tag {
    font-style: italic;
    color: rgba(255, 215, 0, .3) !important;
    font-size: .78rem !important;
}
 
/* =====================================================
   RESPONSIVE
===================================================== */
 
@media (max-width: 1100px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-brand {
        grid-column: span 2;
    }
    .footer-brand__desc { max-width: 100%; }
    .footer-socials { flex-direction: row; flex-wrap: wrap; }
}
 
@media (max-width: 640px) {
    .footer-container {
        grid-template-columns: 1fr;
        padding: 60px 0 40px;
        gap: 36px;
    }
    .footer-brand { grid-column: span 1; }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }
    .footer-socials { flex-direction: column; }
}
 

/* =========================
   PLACEHOLDER
========================= */

.placeholder-section {
    min-height: 70vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.placeholder-section h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.placeholder-section p {
    color: var(--gray);
    font-size: 1.1rem;
}


/* ===================================
   HERO SECTION
=================================== */

.hero{

    position: relative;

    min-height: 9vh;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;

    background: var(--black);
}

/* ===================================
   COLLAGE BACKGROUND
=================================== */

.hero-collage{

    position:absolute;

    inset:0;

    display:grid;

    grid-template-columns:
        repeat(4, 1fr);

    z-index:0;
}

.hero-collage__item{

    position:relative;

    overflow:hidden;
}

.hero-collage__item img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:transform 8s ease;
}

/* subtle movement */

.hero-collage__item:nth-child(1) img{
    animation: slowZoom1 18s infinite alternate;
}

.hero-collage__item:nth-child(2) img{
    animation: slowZoom2 20s infinite alternate;
}

.hero-collage__item:nth-child(3) img{
    animation: slowZoom1 22s infinite alternate;
}

.hero-collage__item:nth-child(4) img{
    animation: slowZoom2 24s infinite alternate;
}

.hero-collage__item::after{

    content:"";

    position:absolute;

    top:0;
    right:0;

    width:2px;
    height:100%;

    background:
        rgba(255,255,255,.25);
}

.hero-overlay{

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            rgba(0,0,0,.35),
            rgba(0,0,0,.65)
        );

    z-index:1;
}

.hero-content {
    position: relative;
    z-index: 2;

    width: 90%;
    max-width: 1400px;

    text-align: center;
}

.hero{
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom1{

    from{
        transform:scale(1);
    }

    to{
        transform:scale(1.08);
    }
}

@keyframes slowZoom2{

    from{
        transform:scale(1.05);
    }

    to{
        transform:scale(1);
    }
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
    radial-gradient(circle at 20% 30%, rgba(255,215,0,.15) 0, transparent 2%),
    radial-gradient(circle at 80% 70%, rgba(255,215,0,.15) 0, transparent 2%),
    radial-gradient(circle at 50% 20%, rgba(255,215,0,.15) 0, transparent 2%);

    animation: floatParticles 15s linear infinite;
}

.hero::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:200px;

    background:
    linear-gradient(
        to bottom,
        transparent,
        #0B0B0B
    );
}

/* ===================
   Animated Service
=================== */

.hero-services {
    margin-bottom: 35px;
}

.specialist-label {
    display: block;

    color: var(--gold-soft);

    text-transform: uppercase;

    letter-spacing: 4px;

    font-size: .9rem;

    margin-top: 18px;
}

#animated-service {

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: clamp(2rem,4vw,4rem);

    color: var(--white);

    min-height: 80px;

    text-shadow:
        0 0 20px rgba(255,215,0,.25);

    transition: .5s;

    margin-top: 15px;
}

/* ===================
   Main Text
=================== */

.hero-text h1 {

    font-family:
        'Cormorant Garamond',
        serif;

    font-size:
        clamp(3rem,7vw,7rem);

    line-height: 1.1;

    margin-bottom: 5px;

    max-width: 1000px;

    margin-left: auto;
    margin-right: auto;
}

.hero-text h1 span {

    color: var(--gold);

    position: relative;
}

.hero-text h1 span::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -10px;

    width: 100%;
    height: 3px;

    background: var(--gold-soft);
}


/* ===================
   CTA BUTTON
=================== */

/* Gold filled — used on hero CTA and primary actions */
.hero-btn,
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    color: var(--black);
    font-weight: 700;
    border-radius: 60px;
    transition: all .4s ease;
    position: relative;
    overflow: hidden;
}
 
.hero-btn:hover,
.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255,215,0,.35);
}
 
/* Ghost/outline — used as secondary action buttons */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px;
    background: transparent;           /* ← NOT gold */
    border: 1px solid rgba(255,255,255,.25);
    color: var(--white);
    font-weight: 600;
    border-radius: 60px;
    transition: all .4s ease;
    position: relative;
    overflow: hidden;
}
 
.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255,215,0,.15);
}


.hero-heading {
    display: flex;
    flex-direction: column;
    align-items: center;

    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 5vw, 5rem);

    line-height: 1.05;

    margin-bottom: 35px;

    overflow: hidden;
}

.hero-heading .line {
    display: block;
    opacity: 0;
    transform: translateY(80px);

    animation: revealLine 1s forwards;
}

/* Gold Highlight */

.line-2 {
    color: var(--gold);
    position: relative;

    animation-delay: .4s;
}

.line-1 {
    animation-delay: .1s;
}

.line-3 {
    animation-delay: .7s;
}

.line-2::after {

    content: "";

    position: absolute;

    left: 50%;
    bottom: -10px;

    transform: translateX(-50%) scaleX(0);

    width: 110%;
    height: 3px;

    background: var(--gold);

    animation:
        underlineReveal .8s ease forwards;

    animation-delay: 1.2s;
}

@keyframes revealLine {

    from {
        opacity: 0;
        transform: translateY(80px);
        filter: blur(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes underlineReveal {

    from {
        transform: translateX(-50%) scaleX(0);
    }

    to {
        transform: translateX(-50%) scaleX(1);
    }
}

@media (max-width:768px){

    .hero-collage{

        grid-template-columns:
            repeat(2,1fr);

        grid-template-rows:
            repeat(2,1fr);
    }

    .hero-overlay{

        background:
            linear-gradient(
                rgba(0,0,0,.55),
                rgba(0,0,0,.8)
            );
    }
}

/* ===================
   Scroll Indicator
=================== */

.scroll-indicator {

    position: absolute;

    bottom: 40px;
    left: 50%;

    transform: translateX(-50%);

    z-index: 2;
}

.scroll-indicator span {

    display: block;

    width: 28px;
    height: 50px;

    border:
        2px solid
        rgba(255,255,255,.5);

    border-radius: 50px;

    position: relative;
}

.scroll-indicator span::before {

    content: "";

    position: absolute;

    top: 8px;
    left: 50%;

    transform:
        translateX(-50%);

    width: 5px;
    height: 10px;

    background: var(--gold);

    border-radius: 20px;

    animation:
        scrollDown 1.8s infinite;
}

@keyframes scrollDown {

    0%{
        opacity:0;
        top:8px;
    }

    50%{
        opacity:1;
    }

    100%{
        opacity:0;
        top:25px;
    }
}

/* =================================
   PLANNING SECTION
================================= */

.planning {

    padding: 70px 5%;
    background: var(--black-soft);
}

.planning__header {

    text-align: center;
    max-width: 850px;
    margin: 0 auto 40px;
}

.section-eyebrow {

    color: var(--gold);

    text-transform: uppercase;

    letter-spacing: 4px;

    font-size: 0.97rem;

    

    margin-bottom: 15px;

    text-align: center;

    
}

.section-title {

    font-family:
        'Cormorant Garamond',
        serif;

    font-size:
        clamp(2.5rem,5vw,4.5rem);

    margin-bottom: 20px;

    color: var(--white);

    text-align: center;
}

.section-subtitle {

    color: var(--gray);

    text-align: center;

    line-height: 1.8;

    font-size: 1.05rem;

    margin-bottom: 24px;
}

/* =========================
   GRID
========================= */

.planning__grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 30px;

    
}

/* =========================
   CARD
========================= */

.planning__card {

    position: relative;

    height: 500px;

    border-radius: var(--radius);

    overflow: hidden;

    cursor: pointer;

    box-shadow: var(--shadow-soft);

    transition: .5s ease;
}

.planning__img {

    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;

    transition: transform .8s ease;
}

.planning__card:hover .planning__img {

    transform: scale(1.12);
}

/* =========================
   GOLD BORDER EFFECT
========================= */

.planning__card::before {

    content: "";

    position: absolute;

    inset: 0;

    border: 1px solid rgba(255,215,0,.15);

    z-index: 2;

    transition: .4s ease;
}

.planning__card:hover::before {

    border-color: var(--gold);
}

/* =========================
   OVERLAY
========================= */

.planning__overlay {

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.95),
            rgba(0,0,0,.2)
        );

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    padding: 30px;

    z-index: 3;
}

.planning__overlay h3 {

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 2rem;

    margin-bottom: 15px;

    color: var(--white);
}

.planning__overlay p {

    color: rgba(255,255,255,.8);

    line-height: 1.7;

    margin-bottom: 20px;
}

/* =========================
   CTA
========================= */

.planning__overlay a {

    color: var(--gold);

    font-weight: 600;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    transition: .3s;
}

.planning__overlay a::after {

    content: "→";

    transition: .3s;
}

.planning__overlay a:hover::after {

    transform: translateX(6px);
}

/* =========================
   HOVER LIFT
========================= */

.planning__card:hover {

    transform: translateY(-10px);

    box-shadow:
        0 20px 40px rgba(0,0,0,.4);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px){

    .planning__grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .planning{
        padding:90px 5%;
    }

    .planning__grid{
        grid-template-columns:1fr;
    }

    .planning__card{
        height:420px;
    }

    .section-title{
        font-size:2.5rem;
    }
}

.fade-in {

    opacity: 0;

    transform:
        translateY(60px);

    transition:
        all .8s ease;
}

.fade-in.show {

    opacity: 1;

    transform:
        translateY(0);
}

/* ===================================
   PURPOSE SECTION
=================================== */

.purpose {

    padding: 70px 5%;

    background:
        linear-gradient(
            180deg,
            #0B0B0B,
            #121212
        );
}

.purpose__header {

    max-width: 850px;

    margin: 0 auto 40px;

    text-align: center;
}

.purpose__grid {

    max-width: 1400px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 35px;
}

/* ======================
   CARD
====================== */

.purpose__card {

    background:
        rgba(255,255,255,.02);

    border:
        1px solid rgba(255,215,0,.12);

    border-radius:
        var(--radius);

    padding:
        45px 35px;

    text-align:
        center;

    transition:
        .4s ease;

    position:
        relative;

    overflow:
        hidden;
}

.purpose__card::before {

    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 100%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,215,0,.08),
            transparent
        );

    transition: .8s;
}

.purpose__card:hover::before {

    left: 100%;
}

.purpose__card:hover {

    transform:
        translateY(-10px);

    border-color:
        var(--gold);

    box-shadow:
        0 20px 40px rgba(0,0,0,.35);
}

/* ======================
   ICON
====================== */

.purpose__icon {

    width: 90px;
    height: 90px;

    margin: 0 auto 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            rgba(255,215,0,.12),
            rgba(255,215,0,.03)
        );

    border:
        1px solid rgba(255,215,0,.2);

    position: relative;

    transition: .4s ease;
}

.purpose__card h3 {

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 2rem;

    margin-bottom: 20px;
}

.purpose__card p {

    color:
        rgba(255,255,255,.75);

    line-height: 1.9;
}

.purpose__icon svg {

    width: 42px;
    height: 42px;

    stroke: var(--gold);

    stroke-width: 1.8;
}

.purpose__card:hover .purpose__icon {

    transform:
        translateY(-5px)
        rotate(5deg);

    border-color:
        var(--gold);

    box-shadow:
        0 0 25px rgba(255,215,0,.2);
}

/* =====================================
   WHY CHOOSE BITE BLISS
===================================== */

.why-choose {

    padding: 80px 5%;

    background:
        linear-gradient(
            to bottom,
            #0B0B0B,
            #121212
        );
}

.why-choose__header{
    margin-top: 0px;
}

.why-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 30px;

    max-width: 1400px;

    margin: auto;
}

/* ==========================
   CARD
========================== */

.why-card {

    position: relative;

    height: 450px;

    overflow: hidden;

    border-radius: var(--radius);

    cursor: pointer;

    border:
        1px solid rgba(255,215,0,.08);

    transition:
        .5s ease;
}

.why-image {

    position: absolute;

    inset: 0;

    z-index: 1;

    background-size: cover;
    background-position: center;

    transition:
        transform 1s ease;
}

.why-card:hover .why-image {

    transform:
        scale(1.15);
}

/* ==========================
   OVERLAY
========================== */

.why-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.95),
            rgba(0,0,0,.25)
        );

    padding: 35px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    z-index: 2;
}

.why-number {

    font-size: 4rem;

    font-family:
        'Cormorant Garamond',
        serif;

    color:
        rgba(255,215,0,.15);

    position: absolute;

    top: 20px;
    right: 25px;
}

.why-overlay h3 {

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 2rem;

    margin-bottom: 15px;
}

.why-overlay p {

    color:
        rgba(255,255,255,.8);

    line-height: 1.8;

    margin-bottom: 20px;
}

.why-overlay a {

    color:
        var(--gold);

    font-weight: 600;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    position: relative;

    
}

.why-overlay a::after {

    content: "→";

    transition: .3s;
}

.why-card:hover a::after {

    transform:
        translateX(6px);
}

/* ==========================
   GOLD BORDER
========================== */

.why-card::before {

    content: "";

    position: absolute;

    inset: 0;

    border:
        1px solid transparent;

    z-index: 4;

    transition: .4s;

    pointer-events: none;
}

.why-card:hover::before {

    border-color:
        var(--gold);
}

.why-card:hover {

    transform:
        translateY(-12px);

    box-shadow:
        0 20px 50px rgba(0,0,0,.4);
}

.why-card::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            250px circle at
            var(--mouse-x)
            var(--mouse-y),

            rgba(255,215,0,.12),

            transparent 40%
        );

    opacity: 0;

    transition: .3s;

    z-index: 3;

    pointer-events: none;
}

.why-card:hover::after {

    opacity: 1;
}