﻿/*=====================================
GOOGLE FONTS
=====================================*/
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

/*=====================================
ROOT COLORS (DRC LUXURY THEME)
=====================================*/
:root{

    --primary:#F04A23;      /* Logo Orange */
    --gold:#D4A017;         /* Luxury Gold */
    --black:#111111;        /* Premium Black */
    --dark:#1E1E1E;
    --cream:#FFF8F2;
    --light-bg:#F8F1E7;
    --white:#ffffff;
    --text:#434040;
    --border:#ece2d5;

    --shadow:
    0 15px 40px rgba(0,0,0,.08);

    --shadow-hover:
    0 25px 60px rgba(0,0,0,.15);
}

/*=====================================
GLOBAL CSS
=====================================*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat',sans-serif;
    background:var(--cream);
    color:#fe2c2c;
    overflow-x:hidden;
    position:relative;
}

/* Luxury Background Glow */
body::before{
    content:"";
    position:fixed;
    top:-300px;
    right:-200px;
    width:650px;
    height:650px;
    background:
    radial-gradient(circle,
    rgba(212,160,23,.10),
    transparent 70%);
    z-index:-1;
}

body::after{
    content:"";
    position:fixed;
    bottom:-250px;
    left:-200px;
    width:500px;
    height:500px;
    background:
    radial-gradient(circle,
    rgba(240,74,35,.08),
    transparent 70%);
    z-index:-1;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:100%;
    max-width:1320px;
    margin:auto;
    padding:0 20px;
}

section{
    padding:110px 0;
}

/*=====================================
COMMON ELEMENTS
=====================================*/
.mini-tag,
.section-subtitle{
    display:inline-block;
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
    position:relative;
}

.mini-tag::after,
.section-subtitle::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:60px;
    height:2px;
    background:var(--primary);
}

/*=====================================
BUTTONS
=====================================*/
.theme-btn,
.btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    padding:18px 38px;
    background:
    linear-gradient(
    135deg,
    var(--primary),
    #cf3f1d
    );
    color:var(--white);
    font-size:15px;
    font-weight:600;
    border:none;
    cursor:pointer;
    transition:.4s ease;
    border-radius:12px;
    box-shadow:
    0 10px 25px rgba(240,74,35,.25);
}

.theme-btn:hover,
.btn-primary:hover{
    transform:translateY(-4px);
    background:var(--black);
    box-shadow:
    0 20px 40px rgba(0,0,0,.18);
}

.text-btn,
.btn-outline{
    color:var(--black);
    font-weight:600;
    transition:.3s;
}

.text-btn:hover,
.btn-outline:hover{
    color:var(--primary);
}

.main-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;

    z-index:999;

    background:transparent;

  

    transition:
    all .35s ease;
}

.main-header.sticky{

    background:#ffffff;

    box-shadow:
    0 10px 30px
    rgba(0,0,0,.08);

    padding:12px 0;
}

/* Navbar */
.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:90px;
}

/* Logo */
.logo{
    display:flex;
    align-items:center;
    height:90px;
}

.logo img{
    width:auto;
    max-height:115px;
    object-fit:contain;
}

/* Nav */
.nav-links{
    display:flex;
    gap:35px;
}

.nav-links li{
    position:relative;
}

.nav-links li a{
    color:#e9a119;
    font-size:15px;
    font-weight:600;
    transition:.3s ease;
    position:relative;
}

.nav-links li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0%;
    height:2px;
    background:var(--primary);
    transition:.4s;
}

.nav-links li a:hover{
    color:var(--primary);
}

.nav-links li a:hover::after{
    width:100%;
}

/* Header Button */
.header-btn{
    background:var(--black);
    color:#fff;
    padding:15px 28px;
    border-radius:12px;
    transition:.4s;
}

.header-btn:hover{
    background:var(--primary);
}

/* Mobile Menu */
.menu-toggle{
    display:none;
    cursor:pointer;
    font-size:28px;
}

/*=====================================
DROPDOWN
=====================================*/
.dropdown-menu{
    position:absolute;
    top:40px;
    left:0;
    background:#fff;
    width:240px;
    border-radius:18px;
    box-shadow:
    0 20px 45px rgba(0,0,0,.08);
    opacity:0;
    visibility:hidden;
    transition:.4s ease;
    overflow:hidden;
}

.dropdown-menu li a{
    display:block;
    padding:15px 22px;
    border-bottom:
    1px solid #f1f1f1;
}

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    top:50px;
}

/*=====================================
EDITORIAL HERO SECTION
=====================================*/
.editorial-hero-section{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    padding-top:180px;

   background:
linear-gradient(
135deg,
#fff8f2 55%,
#f8f1e7 45%
);
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:90px;
    align-items:center;
   
}
@media(max-width:991px){

    .menu-toggle{
        display:block;
        z-index:9999;
    }

    .nav-links{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#fff;
        flex-direction:column;
        padding:20px;
        gap:15px;

        display:none;
        box-shadow:0 10px 20px rgba(0,0,0,.08);
    }

    .nav-links.active{
        display:flex;
    }

    .header-btn{
        display:none;
    }
}
/* Hero Content */
.hero-left-content h1{
    font-size:88px;
    line-height:1;
    color:var(--black);
    font-family:
    'Cormorant Garamond', serif;
    margin-bottom:25px;
}

.hero-left-content p{
    font-size:17px;
    line-height:2;
    color:var(--text);
    max-width:580px;
}

.hero-btns{
    display:flex;
    align-items:center;
    gap:25px;
    margin-top:45px;
}

/*=====================================
HERO SLIDER
=====================================*/
.hero-right-images{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-slider{
    position:relative;
    width:100%;
    max-width:580px;
    height:680px;
    overflow:hidden;
    border-radius:35px;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transform:scale(1.08);
    transition:all 1.5s ease;
}

.slide.active{
    opacity:1;
    transform:scale(1);
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:35px;
    box-shadow:
    0 30px 80px rgba(0,0,0,.15);
}

/* Floating Effect */
.slide.active img{
    animation:
    floatImage 6s ease-in-out infinite;
}

@keyframes floatImage{

    0%{
        transform:
        translateY(0px);
    }

    50%{
        transform:
        translateY(-14px);
    }

    100%{
        transform:
        translateY(0px);
    }
}

/* Decorative Shape */
.hero-right-images::before{
    content:"";
    position:absolute;
    width:480px;
    height:480px;
    background:
    radial-gradient(circle,
    rgba(212,160,23,.12),
    transparent 70%);
    z-index:-1;
}

/*=====================================
RESPONSIVE
=====================================*/
@media(max-width:1100px){

    .hero-grid{
        grid-template-columns:1fr;
        /*text-align:center;*/
    }

    .hero-left-content p{
        margin:auto;
    }

    .hero-btns{
        justify-content:center;
    }

    .hero-slider{
        height:620px;
    }
}

@media(max-width:768px){

    section{
        padding:80px 0;
    }

    .editorial-hero-section{
        min-height:auto;
        padding-top:150px;
    }

    .hero-left-content h1{
        font-size:56px;
    }

    .hero-btns{
        flex-direction:column;
    }

    .hero-slider{
        height:430px;
    }

    .nav-links{
        position:absolute;
        top:100px;
        left:-100%;
        width:100%;
        background:#fff;
        flex-direction:column;
        padding:35px;
        transition:.4s;
        border-radius:0 0 30px 30px;
        box-shadow:
        0 20px 40px rgba(0,0,0,.08);
    }

    .nav-links.active{
        left:0;
    }

    .menu-toggle{
        display:block;
    }

    .header-btn{
        display:none;
    }

    .logo img{
        max-height:85px;
    }
}

@media(max-width:480px){

    .hero-left-content h1{
        font-size:44px;
    }

    .theme-btn{
        width:100%;
    }
}
/*=====================================
LUXURY FLOWERS
=====================================*/
.editorial-hero-section{
    position:relative;
    overflow:hidden;
    isolation:isolate;
}

/* TOP RIGHT FLOWER */
.hero-flower-top{
    position:absolute;
    top:0;
    right:0;
    width:671px;
    z-index:9999;
    pointer-events:none;
    margin-top: 79px;
}

.hero-flower-top img{
    width:100%;
    height:auto;
    display:block;
    opacity:7.05;
}

/* BOTTOM LEFT FLOWER */
.hero-flower-bottom{
    position:absolute;
    left:0;
    bottom:0;
    width:240px;
    z-index:9999;
    pointer-events:none;
}

.hero-flower-bottom img{
    width:100%;
    height:auto;
    display:block;
    opacity:.18;
}

/* CONTENT ABOVE FLOWER */
.editorial-hero-section .container{
    position:relative;
    z-index:5;
}
/*=====================================
EDITORIAL STATS SECTION
=====================================*/
.editorial-stats-section{
    background:var(--white);
    padding:70px 0;
    position:relative;
}

.stats-wrapper{
    display:grid;
    grid-template-columns:1.2fr repeat(4,1fr);
    gap:35px;
    align-items:center;
}

.stats-image{
    overflow:hidden;
    border-radius:35px;
    position:relative;
}

.stats-image img{
    border-radius:143px;
    height:260px;
    object-fit:cover;
    transition:.7s ease;
}

.stats-image:hover img{
    transform:scale(1.08);
}

.single-stat{
    text-align:center;
    background:var(--cream);
    padding:35px 20px;
    border-radius:28px;
    transition:.4s ease;
    border:1px solid rgba(212,160,23,.12);
}

.single-stat:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-hover);
}

.single-stat h3{
    font-size:58px;
    color:var(--primary);
    font-family:
    'Cormorant Garamond', serif;
    margin-bottom:8px;
}

.single-stat span{
    color:var(--text);
    line-height:1.8;
    display:block;
    font-size:15px;
}

/*=====================================
ABOUT PREVIEW SECTION
=====================================*/
.editorial-about-preview{
    background:
    linear-gradient(
    180deg,
    var(--cream),
    #fffdf9
    );
    position:relative;
    overflow:hidden;
}

/* Background Glow */
.editorial-about-preview::before{
    content:"";
    position:absolute;
    right:-150px;
    top:0;
    width:500px;
    height:500px;
    background:
    radial-gradient(circle,
    rgba(240,74,35,.08),
    transparent 70%);
    z-index:0;
}

.about-preview-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:90px;
    align-items:center;
    position:relative;
    z-index:2;
}

/* Left Content */
.about-preview-content h2{
    font-size:55px;
    color:var(--black);
    font-family:
    'Cormorant Garamond', serif;
    line-height:1.1;
    margin-bottom:24px;
}

.about-preview-content p{
    color:var(--text);
    line-height:2;
    max-width:560px;
    margin-bottom:35px;
}

/*=====================================
PREMIUM IMAGE STACK
=====================================*/
.about-preview-image{
    position:relative;
    display:flex;
    justify-content:center;
}

.image-stack{
    position:relative;
    width:600px;
    height:680px;
}

/* Common Image Box */
.img-box{
    position:absolute;
    overflow:hidden;
    border-radius:35px;
    transition:.5s ease;
    box-shadow:
    0 20px 50px rgba(0,0,0,.12);
}

.img-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.7s ease;
}

.img-box:hover img{
    transform:scale(1.08);
}

.img-box:hover{
    transform:translateY(-10px);
}

/* Main Image */
.img-main{
    width:400px;
    height:530px;
    right:0;
    top:70px;
    z-index:2;
}

/* Top Image */
.img-top{
    width:250px;
    height:300px;
    left:0;
    top:0;
    z-index:3;
    border:8px solid #fff;
}

/* Bottom Diagonal */
.img-diagonal{
    width:270px;
    height:320px;
    left:30px;
    bottom:20px;
    
    z-index:4;
    border:8px solid #fff;
}

/* Luxury Glow Border */
.img-box::after{
    content:"";
    position:absolute;
    inset:0;
    border:
    1px solid rgba(212,160,23,.18);
    border-radius:35px;
    pointer-events:none;
}

/* Floating Animations */
.img-main{
    animation:
    floatMain 6s ease-in-out infinite;
    margin-right: 143px;
}

.img-top{
    animation:
    floatTop 7s ease-in-out infinite;
    margin-left: -120px;
}

.img-diagonal{
    margin-left: 302px;
   
}

@keyframes floatMain{

    0%,100%{
        transform:
        translateY(0px);
    }

    50%{
        transform:
        translateY(-18px);
    }
}

@keyframes floatTop{

    0%,100%{
        transform:
        translateY(0px);
    }

    50%{
        transform:
        translateY(12px);
    }
}

@keyframes floatBottom{

    0%,100%{
        transform:
        rotate(-10deg)
        translateY(0px);
    }

    50%{
        transform:
        rotate(-10deg)
        translateY(-16px);
    }
}
/*=====================================
TABLET RESPONSIVE
=====================================*/
@media(max-width:1199px){

    .about-preview-grid{
        grid-template-columns:1fr;
        gap:70px;
    }

    .about-preview-content{
        text-align:center;
    }

    .about-preview-content p{
        margin:auto auto 35px;
        max-width:100%;
    }

    .about-preview-image{
        justify-content:center;
    }

    .image-stack{
        width:100%;
        max-width:650px;
        height:620px;
    }

    /* RESET DESKTOP MARGINS */
    .img-main,
    .img-top,
    .img-diagonal{
        margin:0 !important;
    }

    /* MAIN IMAGE */
    .img-main{
        width:360px;
        height:500px;
        right:50%;
        transform:translateX(50%);
        top:60px;
    }

    /* TOP IMAGE */
    .img-top{
        width:220px;
        height:270px;
        left:30px;
        top:0;
    }

    /* BOTTOM IMAGE */
    .img-diagonal{
        width:240px;
        height:280px;
        left:40px;
        bottom:10px;
    }
}


/*=====================================
MOBILE VIEW
=====================================*/
@media(max-width:767px){

    .editorial-about-preview{
        padding:90px 0;
    }

    .about-preview-grid{
        gap:50px;
    }

    .about-preview-content h2{
        font-size:38px;
        line-height:1.2;
    }

    .about-preview-content p{
        font-size:15px;
        line-height:1.9;
    }

    /* IMAGE AREA */
    .image-stack{
        width:100%;
        height:500px;
        max-width:100%;
    }

    /* RESET EVERYTHING */
    .img-main,
    .img-top,
    .img-diagonal{
        margin:0 !important;
        border-width:5px;
        border-radius:25px;
    }

    /* MAIN IMAGE */
    .img-main{
        width:250px;
        height:340px;
        top:70px;
        right:50%;
        transform:translateX(50%);
        z-index:2;
    }

    /* TOP IMAGE */
    .img-top{
        width:140px;
        height:180px;
        left:0;
        top:0;
        z-index:3;
    }

    /* BOTTOM IMAGE */
    .img-diagonal{
        width:150px;
        height:190px;
        left:15px;
        bottom:25px;
        z-index:4;
    }

    /* REMOVE FLOAT ISSUE */
    .img-main,
    .img-top,
    .img-diagonal{
        animation:none;
    }
}


/* EXTRA SMALL DEVICES */
@media(max-width:480px){

    .about-preview-content h2{
        font-size:32px;
    }

    .image-stack{
        height:430px;
    }

    .img-main{
        width:220px;
        height:300px;
    }

    .img-top{
        width:120px;
        height:160px;
    }

    .img-diagonal{
        width:130px;
        height:170px;
    }
}

/*=====================================
ABOUT LEFT FLOWER
=====================================*/
.about-preview-content{
    position:relative;
    z-index:2;
    padding-top:70px;
}

.about-corner-flower{
    position:absolute;
    top:-40px;
    left:-120px;

    width:320px;

    opacity:.95;
    z-index:-1;
    pointer-events:none;
}

/* Responsive */
@media(max-width:991px){

    .about-corner-flower{
        width:220px;
        left:-30px;
        top:-20px;
        opacity:.18;
    }
}

@media(max-width:768px){

    .about-preview-content{
        text-align:center;
    }

    .about-corner-flower{
        left:50%;
        transform:translateX(-50%);
        top:-40px;
        width:180px;
    }
}
/*=====================================
PROCESS SECTION
=====================================*/
.soft-process-section{
    background:var(--white);
}

.process-heading{
    text-align:center;
    margin-bottom:70px;
}

.process-heading h2{
    font-size:55px;
    color:var(--black);
    font-family:
    'Cormorant Garamond', serif;
    line-height:1.1;
    margin-top:15px;
}

.process-grid{
    display:grid;
    grid-template-columns:
    repeat(3,1fr);
    gap:35px;
}

.process-card{
    background:#fff;
    border-radius:35px;
    padding:55px 35px;
    text-align:center;
    transition:.4s ease;
    border:1px solid rgba(212,160,23,.12);
    box-shadow:
    0 15px 40px rgba(0,0,0,.05);
}

.process-card:hover{
    transform:
    translateY(-12px);
    box-shadow:
    var(--shadow-hover);
}

.process-card h3{
    width:95px;
    height:95px;
    margin:auto;
    border-radius:50%;
    background:
    linear-gradient(
    135deg,
    var(--primary),
    #cf3f1d
    );

    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:28px;
    font-family:
    'Cormorant Garamond', serif;

    box-shadow:
    0 10px 25px rgba(240,74,35,.20);
}

.process-card h4{
    font-size:34px;
    color:var(--black);
    margin-bottom:15px;
    font-family:
    'Cormorant Garamond', serif;
}

.process-card p{
    color:var(--text);
    line-height:2;
}

/*=====================================
WHY CHOOSE US
=====================================*/
.editorial-feature-section{
    background:
    linear-gradient(
    180deg,
    var(--cream),
    #fff
    );
}

.feature-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:90px;
    align-items:center;
}

/* Content */
.feature-content h2{
    font-size:55px;
    line-height:1.1;
    color:var(--black);
    font-family:
    'Cormorant Garamond', serif;
    margin-bottom:22px;
}

.feature-content p{
    color:var(--text);
    line-height:2;
}

.feature-list{
    margin:35px 0;
}

.feature-list li{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:20px;
    color:var(--black);
    font-size:16px;
    font-weight:500;
}

.feature-list li i{
    width:42px;
    height:42px;
    border-radius:50%;
    background:
    linear-gradient(
    135deg,
    var(--gold),
    #b8850d
    );

    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
}

/* Feature Image */
.feature-image{
    position:relative;
}

.feature-image img{
    border-radius:40px;
    height:680px;
    object-fit:cover;
    box-shadow:
    0 30px 70px rgba(0,0,0,.12);
}

/* Floating Counter Box */
.floating-box{
    position:absolute;
    left:30px;
    bottom:30px;
    background:
    linear-gradient(
    135deg,
    rgba(17,17,17,.96),
    rgba(40,40,40,.96)
    );

    color:#fff;
    padding:16px;
    border-radius:28px;
    width:134px;
    backdrop-filter:blur(20px);

    border:
    1px solid rgba(255,255,255,.08);

    box-shadow:
    0 25px 50px rgba(0,0,0,.18);
}

.floating-box h3{
    font-size:55px;
    color:var(--gold);
    font-family:
    'Cormorant Garamond', serif;
    margin-bottom:10px;
}

.floating-box span{
    color:#ddd;
    line-height:1.8;
}

/*=====================================
RESPONSIVE
=====================================*/
@media(max-width:1100px){

    .stats-wrapper,
    .about-preview-grid,
    .process-grid,
    .feature-grid{
        grid-template-columns:1fr;
    }

    .about-preview-content,
    .feature-content{
        text-align:center;
    }

    .feature-list li{
        justify-content:center;
    }

    .about-preview-content p{
        margin:auto auto 35px;
    }
}

@media(max-width:768px){

    .about-preview-content h2,
    .process-heading h2,
    .feature-content h2{
        font-size:42px;
    }

    .image-stack{
        width:100%;
        height:540px;
    }

    .img-main{
        width:260px;
        height:360px;
    }

    .img-top{
        width:170px;
        height:200px;
    }

    .img-diagonal{
        width:180px;
        height:210px;
    }

    .feature-image img{
        height:500px;
    }

    .floating-box{
        position:relative;
        left:0;
        bottom:0;
        width:100%;
        margin-top:20px;
    }
}

@media(max-width:480px){

    .about-preview-content h2,
    .process-heading h2,
    .feature-content h2{
        font-size:34px;
    }

    .process-card{
        padding:35px 25px;
    }
}
/*=====================================
FEATURE TOP RIGHT FLOWER
=====================================*/
.editorial-feature-section{
    position:relative;
    overflow:hidden;

    background:
    linear-gradient(
    180deg,
    var(--cream),
    #fff
    );
}

/* Flower */
.feature-corner-flower{
    position:absolute;
    top:-30px;
    right:-40px;

    width:300px;

    opacity:.95;
    pointer-events:none;
    z-index:0;
}

/* Content Above Flower */
.editorial-feature-section .container{
    position:relative;
    z-index:2;
}

/*=====================================
RESPONSIVE
=====================================*/
@media(max-width:991px){

    .feature-corner-flower{
        width:220px;
        top:-20px;
        right:-30px;
        opacity:.18;
    }
}

@media(max-width:576px){

    .feature-corner-flower{
        width:150px;
        top:-10px;
        right:-15px;
    }
}
/*=====================================
SERVICES SECTION
=====================================*/
.services-section{
    background:var(--white);
    position:relative;
    overflow:hidden;
}

/* Decorative Glow */
.services-section::before{
    content:"";
    position:absolute;
    left:-180px;
    top:0;
    width:450px;
    height:450px;
    background:
    radial-gradient(circle,
    rgba(212,160,23,.08),
    transparent 70%);
    z-index:0;
}

.section-title-center{
    text-align:center;
    margin-bottom:75px;
    position:relative;
    z-index:2;
}

.section-title-center h2{
    font-size:50px;
    font-family:
    'Cormorant Garamond', serif;
    color:var(--black);
    margin:15px 0;
    line-height:1.1;
}

.section-title-center p{
    max-width:760px;
    margin:auto;
    color:var(--text);
    line-height:2;
}

.services-grid{
    display:grid;
    grid-template-columns:
    repeat(4,1fr);
    gap:30px;
    position:relative;
    z-index:2;
}

/* Service Card */
.service-card{
    background:
    linear-gradient(
    180deg,
    #ffffff,
    #fffaf4
    );

    border-radius:35px;
    padding:45px 35px;
    transition:.45s ease;
    border:
    1px solid rgba(212,160,23,.12);

    box-shadow:
    0 15px 40px rgba(0,0,0,.05);

    position:relative;
    overflow:hidden;
}

/* Hover Background */
.service-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    linear-gradient(
    135deg,
    rgba(240,74,35,.04),
    rgba(212,160,23,.08)
    );

    opacity:0;
    transition:.4s;
}

.service-card:hover::before{
    opacity:1;
}

.service-card:hover{
    transform:
    translateY(-12px);

    box-shadow:
    var(--shadow-hover);
}

/* Featured Card */
.active-card{
    background:
    linear-gradient(
    135deg,
    #111111,
    #1f1f1f
    );

    border:
    1px solid rgba(212,160,23,.20);
}

.active-card *{
    color:#fff !important;
}

.active-card .service-icon{
    background:
    linear-gradient(
    135deg,
    var(--gold),
    #b8840f
    );
}

/* Icon */
.service-icon{
    width:90px;
    height:90px;
    border-radius:24px;

    background:
    linear-gradient(
    135deg,
    var(--primary),
    #cf3f1d
    );

    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:28px;

    box-shadow:
    0 15px 30px rgba(240,74,35,.18);
}

.service-card h3{
    font-size:34px;
    color:var(--black);
    font-family:
    'Cormorant Garamond', serif;
    margin-bottom:16px;
}

.service-card p{
    color:var(--text);
    line-height:2;
    margin-bottom:22px;
}

.service-card a{
    color:var(--primary);
    font-weight:600;
    transition:.3s;
}

.service-card a:hover{
    color:var(--gold);
}

.service-card a i{
    margin-left:8px;
}

/*=====================================
PREMIUM LUXURY GALLERY
=====================================*/

.luxury-gallery-section{
    padding:90px 0;
    background:
    linear-gradient(
    180deg,
    #fff,
    #fff8f2
    );

    overflow:hidden;
}

/*=====================================
SECTION TITLE
=====================================*/
.section-title-center{
    text-align:center;
    margin-bottom:55px;
}

.section-subtitle{
    display:inline-block;
    color:#D4A017;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:12px;
    font-weight:600;
    margin-bottom:14px;
    position:relative;
}

.section-subtitle::after{
    content:"";
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:-8px;
    width:55px;
    height:2px;
    background:#F04A23;
}

.section-title-center h2{
    font-size:55px;
    color:#111;
    margin:20px 0 15px;

    font-family:
    'Cormorant Garamond',
    serif;
}

.section-title-center p{
    max-width:650px;
    margin:auto;
    line-height:1.8;
    color:#777;
    font-size:15px;
}

/*=====================================
MASONRY GALLERY
=====================================*/
.masonry-gallery{
    columns:3 260px;
    column-gap:18px;
}

/* Gallery Card */
.masonry-item{
    position:relative;
    overflow:hidden;
    border-radius:24px;
    margin-bottom:18px;

    break-inside:avoid;
    cursor:pointer;

    background:#fff;

    box-shadow:
    0 12px 35px rgba(0,0,0,.08);

    transition:
    transform .45s ease,
    box-shadow .45s ease;
}

.masonry-item:hover{
    transform:
    translateY(-8px);

    box-shadow:
    0 20px 50px rgba(0,0,0,.14);
}

/* Images */
.masonry-item img{
    width:100%;
    display:block;
    object-fit:cover;

    transition:
    transform 1s ease;
}

.masonry-item:hover img{
    transform:
    scale(1.08);
}

/*=====================================
IMAGE HEIGHTS
=====================================*/

/* Tall Image */
.masonry-item.tall img{
    height:380px;
}

/* Medium Image */
.masonry-item.medium img{
    height:250px;
}

/* Small Image */
.masonry-item.small img{
    height:180px;
}

/* Wide Image */
.masonry-item.wide img{
    height:220px;
}

/*=====================================
OVERLAY CONTENT
=====================================*/
.gallery-content{
    position:absolute;
    left:0;
    right:0;
    bottom:0;

    padding:22px;

    background:
    linear-gradient(
    to top,
    rgba(17,17,17,.96),
    rgba(17,17,17,.35),
    transparent
    );

    transform:
    translateY(100%);

    transition:
    .45s ease;
}

.masonry-item:hover
.gallery-content{
    transform:
    translateY(0);
}

/* Category */
.gallery-content span{
    display:inline-block;

    color:#D4A017;
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:600;
    margin-bottom:8px;
}

/* Title */
.gallery-content h3{
    color:#fff;
    font-size:24px;
    line-height:1.3;

    font-family:
    'Cormorant Garamond',
    serif;
}

/*=====================================
LUXURY SHINE EFFECT
=====================================*/
.masonry-item::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;

    width:60%;
    height:100%;

    background:
    linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.20),
    transparent
    );

    transform:skewX(-25deg);
    z-index:2;
}

.masonry-item:hover::before{
    left:150%;
    transition:1s;
}

/*=====================================
RESPONSIVE
=====================================*/
@media(max-width:991px){

    .section-title-center h2{
        font-size:42px;
    }

    .masonry-gallery{
        columns:2 240px;
    }
}

@media(max-width:768px){

    .luxury-gallery-section{
        padding:70px 0;
    }

    .masonry-gallery{
        columns:1;
    }

    .section-title-center h2{
        font-size:34px;
    }

    .section-title-center p{
        font-size:14px;
    }

    /* Same Height on Mobile */
    .masonry-item.tall img,
    .masonry-item.medium img,
    .masonry-item.small img,
    .masonry-item.wide img{
        height:240px;
    }

    /* Always show content mobile */
    .gallery-content{
        transform:
        translateY(0);
    }

    .gallery-content h3{
        font-size:22px;
    }
}
/*=====================================
GALLERY FLOWERS
=====================================*/
.luxury-gallery-section{
    position:relative;
    overflow:hidden;
}

/* Common */
.gallery-flower{
    position:absolute;
    pointer-events:none;
    z-index:0;
}

/* Top Right Flower */
.gallery-flower-top{
    top:30px;
    right:-20px;

    width:220px;
    opacity:.95;
}

/* Bottom Right Flower */
.gallery-flower-bottom{
    right:-10px;
    bottom:40px;

    width:170px;
    opacity:.95;
}

/* Content Above Flower */
.luxury-gallery-section .container{
    position:relative;
    z-index:2;
}

/*=====================================
RESPONSIVE
=====================================*/
@media(max-width:991px){

    .gallery-flower-top{
        width:170px;
        opacity:.20;
    }

    .gallery-flower-bottom{
        width:130px;
        opacity:.20;
    }
}

@media(max-width:576px){

    .gallery-flower-top{
        width:120px;
        top:20px;
        right:-15px;
    }

    .gallery-flower-bottom{
        width:90px;
        bottom:20px;
        right:-10px;
    }
}
/*=====================================
COUNTER SECTION
=====================================*/
.counter-section{
    position:relative;
    overflow:hidden;

    background:
    linear-gradient(
    135deg,
    #111111,
    #1d1d1d
    );
}

/* Decorative Gold Glow */
.counter-section::before{
    content:"";
    position:absolute;
    top:-150px;
    right:-150px;
    width:420px;
    height:420px;

    background:
    radial-gradient(circle,
    rgba(212,160,23,.12),
    transparent 70%);
}

.counter-grid{
    display:grid;
    grid-template-columns:
    repeat(4,1fr);
    gap:35px;
}

.counter-box{
    text-align:center;
    color:#fff;
    padding:40px 25px;

    background:
    rgba(255,255,255,.03);

    border-radius:30px;

    border:
    1px solid rgba(255,255,255,.05);

    backdrop-filter:blur(12px);

    transition:.4s ease;
}

.counter-box:hover{
    transform:
    translateY(-8px);
}

.counter-box h2{
    font-size:72px;
    color:var(--gold);

    font-family:
    'Cormorant Garamond', serif;

    margin-bottom:12px;
}

.counter-box p{
    font-size:18px;
    color:#d9d9d9;
}

/*=====================================
PACKAGE SECTION
=====================================*/
.package-section{
    background:
    linear-gradient(
    180deg,
    #fff,
    var(--cream)
    );
}

.package-grid{
    display:grid;
    grid-template-columns:
    repeat(3,1fr);
    gap:35px;
}

/* Package Card */
.package-card{
    background:#fff;
    border-radius:35px;
    padding:55px 40px;
    text-align:center;
    transition:.45s ease;

    border:
    1px solid rgba(212,160,23,.10);

    box-shadow:
    0 15px 40px rgba(0,0,0,.06);

    position:relative;
    overflow:hidden;
}

.package-card:hover{
    transform:
    translateY(-12px);

    box-shadow:
    var(--shadow-hover);
}

/* Featured Package */
.featured-package{
    background:
    linear-gradient(
    135deg,
    #111111,
    #202020
    );

    transform:scale(1.04);

    border:
    1px solid rgba(212,160,23,.25);
}

.featured-package *{
    color:#fff !important;
}

/* Top Glow */
.package-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;

    background:
    linear-gradient(
    to right,
    var(--primary),
    var(--gold)
    );
}

/* Tag */
.package-tag{
    display:inline-block;

    background:
    linear-gradient(
    135deg,
    var(--gold),
    #b8840f
    );

    color:#fff;
    padding:9px 24px;
    border-radius:50px;
    font-size:14px;
    margin-bottom:28px;
    font-weight:600;
}

.package-card h3{
    font-size:30px;
    color:var(--black);
    font-family:
    'Cormorant Garamond', serif;

    margin-bottom:10px;
}

.package-card h2{
    font-size:35px;
    color:var(--primary);
    margin-bottom:28px;
}

.package-card ul{
    margin-bottom:35px;
}

.package-card ul li{
    margin-bottom:18px;
    color:var(--text);
    font-size:15px;
}

.package-card ul li i{
    color:var(--gold);
    margin-right:10px;
}

.package-card .btn-primary{
    width:100%;
}

/*=====================================
RESPONSIVE
=====================================*/
@media(max-width:1100px){

    .services-grid,
    .package-grid,
    .counter-grid{
        grid-template-columns:
        repeat(2,1fr);
    }

    .gallery-grid{
        grid-template-columns:
        repeat(2,1fr);
    }
}

@media(max-width:768px){

    .section-title-center h2{
        font-size:42px;
    }

    .services-grid,
    .package-grid,
    .counter-grid,
    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-item.large{
        grid-row:auto;
    }

    .featured-package{
        transform:none;
    }
}

@media(max-width:480px){

    .section-title-center h2{
        font-size:34px;
    }

    .service-card,
    .package-card{
        padding:35px 25px;
    }

    .counter-box h2{
        font-size:54px;
    }
}

/*=====================================
PACKAGE FLOWER
=====================================*/
.package-section{
    position:relative;
    overflow:hidden;
}

/* Bottom Left Flower */
.package-corner-flower{
    position:absolute;
    left:-15px;
    bottom:30px;

    width:240px;

    opacity:.95;
    pointer-events:none;
    z-index:0;
}

/* Content Above Flower */
.package-section .container{
    position:relative;
    z-index:2;
}

/*=====================================
RESPONSIVE
=====================================*/
@media(max-width:991px){

    .package-corner-flower{
        width:180px;
        left:-20px;
        bottom:20px;
        opacity:.20;
    }
}

@media(max-width:576px){

    .package-corner-flower{
        width:120px;
        left:-10px;
        bottom:10px;
    }
}

/*=====================================
FOOTER SECTION
=====================================*/
.footer-section{
    background:
    linear-gradient(
    135deg,
    #111111,
    #1b1b1b
    );

    padding:110px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:
    2fr 1fr 1fr 1.5fr;

    gap:45px;
    margin-bottom:70px;
}

.footer-column h3,
.footer-column h4{
    color:#fff;
    margin-bottom:28px;

    font-family:
    'Cormorant Garamond', serif;
}

.footer-column h3{
    font-size:40px;
}

.footer-column p,
.footer-column ul li,
.footer-column ul li a{
    color:#cfcfcf;
    line-height:2;
    transition:.3s;
}

.footer-column ul li a:hover{
    color:var(--gold);
    padding-left:4px;
}

/* Social Icons */
.social-icons{
    display:flex;
    gap:14px;
    margin-top:25px;
}

.social-icons a{
    width:48px;
    height:48px;
    border-radius:50%;

    background:
    rgba(255,255,255,.06);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    transition:.4s ease;
}

.social-icons a:hover{
    background:
    linear-gradient(
    135deg,
    var(--primary),
    #cf3f1d
    );

    transform:
    translateY(-5px);
}

/* Footer Bottom */
.footer-bottom{
    border-top:
    1px solid rgba(255,255,255,.08);

    padding-top:28px;
    text-align:center;
}

.footer-bottom p{
    color:#bbbbbb;
}

/*=====================================
MOBILE MENU FIX
=====================================*/
@media(max-width:1100px){

    .team-grid,
    .footer-grid,
    .appointment-wrapper{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .newsletter-box{
        flex-direction:column;
        text-align:center;
        padding:45px 30px;
    }

    .newsletter-form{
        width:100%;
    }

    .appointment-content h2,
    .newsletter-box h2{
        font-size:42px;
    }

    .appointment-form{
        padding:35px 25px;
    }

    .nav-links{
        position:absolute;
        top:95px;
        left:-100%;
        width:100%;
        background:#fff;
        flex-direction:column;
        padding:35px;
        gap:20px;
        transition:.4s ease;

        border-radius:
        0 0 30px 30px;

        box-shadow:
        0 20px 40px rgba(0,0,0,.08);
    }

    .nav-links.active{
        left:0;
    }

    .menu-toggle{
        display:block;
    }

    .header-btn{
        display:none;
    }
}

@media(max-width:480px){

    .appointment-content h2,
    .newsletter-box h2{
        font-size:34px;
    }

    .newsletter-form{
        flex-direction:column;
        border-radius:20px;
    }

    .newsletter-form button{
        padding:18px;
    }

    .team-card img{
        height:320px;
    }
}

/*=====================================
FINAL PREMIUM EFFECTS
=====================================*/
.theme-btn,
.btn-primary,
.service-card,
.package-card,
.team-card,
.process-card,
.single-stat,
.counter-box{
    will-change:transform;
}

/* Smooth Hover Animation */
.service-card,
.package-card,
.team-card,
.process-card{
    transition:
    transform .45s ease,
    box-shadow .45s ease;
}

/* Smooth Scroll Fix */
html{
    scroll-behavior:smooth;
}

/* Better Text Rendering */
body{
    text-rendering:optimizeLegibility;
    -webkit-font-smoothing:antialiased;
}
/*=====================================
LUXURY PROCESS SECTION
=====================================*/
.luxury-process-section{
    position:relative;
    padding:120px 0;
    overflow:hidden;
    background:
    linear-gradient(
    180deg,
    #fff,
    #fff8f2
    );
    margin-top: -91px;
}

/* Background Glow */
.luxury-process-section::before{
    content:"";
    position:absolute;
    left:-200px;
    top:100px;
    width:450px;
    height:450px;

    background:
    radial-gradient(circle,
    rgba(212,160,23,.12),
    transparent 70%);
}

.process-heading{
    text-align:center;
    margin-bottom:90px;
}

.process-heading h2{
    font-size:55px;
    color:var(--black);
    font-family:
    'Cormorant Garamond', serif;
    margin-top:18px;
}

.process-heading p{
    max-width:700px;
    margin:auto;
    color:var(--text);
    line-height:2;
    margin-top:20px;
}

/* Wrapper */
.luxury-process-wrapper{
    position:relative;
    display:grid;
    grid-template-columns:
    repeat(3,1fr);
    gap:40px;
}

/* Connecting Line */
.process-line{
    position:absolute;
    top:120px;
    left:10%;
    width:80%;
    height:4px;

    background:
    linear-gradient(
    to right,
    var(--primary),
    var(--gold)
    );

    z-index:0;
}

/* Card */
.luxury-process-card{
    position:relative;
    z-index:2;

    background:
    rgba(255,255,255,.7);

    backdrop-filter:blur(20px);

    border:
    1px solid rgba(212,160,23,.12);

    border-radius:35px;
    padding:90px 40px 45px;

    text-align:center;

    transition:.5s ease;

    box-shadow:
    0 20px 50px rgba(0,0,0,.06);
}

.luxury-process-card:hover{
    transform:
    translateY(-15px);

    box-shadow:
    0 30px 70px rgba(0,0,0,.12);
}

/* Highlight Center Card */
.active-process{
    /*background:
    linear-gradient(
    135deg,
    #111111,
    #1f1f1f
    );*/

    transform:
    translateY(-20px);
}

.active-process h3,
.active-process p{
    color:#fff;
}

/* Number Circle */
.process-number{
    position:absolute;
    top:-38px;
    left:50%;
    transform:translateX(-50%);

    width:90px;
    height:90px;
    border-radius:50%;

    background:
    linear-gradient(
    135deg,
    var(--primary),
    #cf3f1d
    );

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:28px;
    font-weight:700;

    box-shadow:
    0 15px 30px rgba(240,74,35,.30);

    animation:
    pulseGlow 2s infinite;
}

.process-icon{
    width:85px;
    height:85px;
    border-radius:24px;

    background:
    linear-gradient(
    135deg,
    var(--gold),
    #b8840f
    );

    display:flex;
    align-items:center;
    justify-content:center;

    margin:auto;
    margin-bottom:28px;

    color:#fff;
    font-size:32px;

    box-shadow:
    0 15px 30px rgba(212,160,23,.25);
}

.luxury-process-card h3{
    font-size:38px;
    color:var(--black);

    font-family:
    'Cormorant Garamond', serif;

    margin-bottom:18px;
}

.luxury-process-card p{
    color:var(--text);
    line-height:2;
}

/* Glow Animation */
@keyframes pulseGlow{

    0%{
        box-shadow:
        0 0 0 0 rgba(240,74,35,.4);
    }

    70%{
        box-shadow:
        0 0 0 20px rgba(240,74,35,0);
    }

    100%{
        box-shadow:
        0 0 0 0 rgba(240,74,35,0);
    }
}

/* Responsive */
@media(max-width:991px){

    .luxury-process-wrapper{
        grid-template-columns:1fr;
    }

    .process-line{
        display:none;
    }

    .active-process{
        transform:none;
    }
}

@media(max-width:768px){

    .process-heading h2{
        font-size:42px;
    }

    .luxury-process-card{
        padding:80px 30px 35px;
    }
}
/*=====================================
PREMIUM SERVICES SECTION
=====================================*/
.premium-services-section{
    padding:120px 0;
    background:
    linear-gradient(
    180deg,
    #fff,
    #fff8f2
    );
}

.premium-services-grid{
    display:grid;
    grid-template-columns:
    repeat(4,1fr);
    gap:25px;
}

/* Card */
.premium-service-card{
    position:relative;
    overflow:hidden;
    
    height:520px;
    cursor:pointer;

    box-shadow:
    0 20px 50px rgba(0,0,0,.08);

    transition:.5s ease;
}

.premium-service-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:1s ease;
}

/* Overlay */
.service-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
    to top,
    rgba(17,17,17,.90),
    rgba(17,17,17,.25),
    transparent
    );
}

/* Featured Card */
.featured-service{
    transform:translateY(-20px);
}

.featured-service .service-content a{
    background:var(--gold);
    color:#111;
}

/* Hover */
.premium-service-card:hover{
    transform:
    translateY(-12px);
}

.premium-service-card:hover img{
    transform:scale(1.08);
}

.premium-service-card:hover .service-content{
    transform:translateY(-10px);
}

/* Content */
.service-content{
    position:absolute;
    bottom:35px;
    left:35px;
    right:35px;
    z-index:2;

    transition:.4s ease;
}

.service-content span{
    display:inline-block;

    color:var(--gold);
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:15px;
    font-weight:600;
}

.service-content h3{
    color:#fff;
    font-size:42px;
    line-height:1.1;
    margin-bottom:25px;

    font-family:
    'Cormorant Garamond', serif;
}

.service-content a{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:120px;
    height:46px;

    border-radius:50px;

    background:
    linear-gradient(
    135deg,
    var(--primary),
    #cf3f1d
    );

    color:#fff;
    font-size:14px;
    font-weight:600;

    transition:.4s ease;
}

.service-content a:hover{
    background:var(--gold);
    color:#111;
}

/*=====================================
RESPONSIVE
=====================================*/
@media(max-width:1100px){

    .premium-services-grid{
        grid-template-columns:
        repeat(2,1fr);
    }
}

@media(max-width:768px){

    .premium-services-grid{
        grid-template-columns:1fr;
    }

    .featured-service{
        transform:none;
    }

    .premium-service-card{
        height:420px;
    }

    .service-content h3{
        font-size:34px;
    }
}
/* LEFT SIDE SLIDER ONLY */

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.hero-right-images{
    position:relative;
    height:700px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-slider{
    position:relative;
    width:100%;
    max-width:560px;
    height:650px;
    overflow:hidden;
    border-radius:35px;
}

.slide{
    position:absolute;
    inset:0;
    opacity:0;
    transition:
    opacity 1.5s ease,
    transform 8s ease;

    transform:scale(1.08);
}

.slide.active{
    opacity:1;
    z-index:2;
    transform:scale(1);
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:35px;

    box-shadow:
    0 30px 70px rgba(0,0,0,.18);

    animation:
    premiumZoom 8s linear infinite alternate;
}

/* Luxury Zoom */
@keyframes premiumZoom{

    0%{
        transform:scale(1);
    }

    100%{
        transform:scale(1.08);
    }
}

/* Mobile */
@media(max-width:768px){

    .hero-grid{
        grid-template-columns:1fr;
    }

    .hero-right-images{
        height:500px;
    }

    .hero-slider{
        height:450px;
    }
}
/*=====================================
SPLIT HOVER SERVICES
=====================================*/

.split-services-section{
    padding:120px 0;
    background:
    linear-gradient(
    180deg,
    #fff,
    #fff8f2
    );
}

.split-services-wrapper{
    display:flex;
    gap:20px;
    height:620px;
}

/* Card */
.split-card{
    position:relative;
    flex:1;
    overflow:hidden;
    border-radius:30px;
    cursor:pointer;

    transition:
    flex .7s ease;

    box-shadow:
    0 20px 50px rgba(0,0,0,.12);
}

/* Active */
.split-card:hover,
.split-card.active-card{
    flex:3;
}

/* Image */
.split-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:
    transform 1s ease;
}

.split-card:hover img{
    transform:scale(1.08);
}

/* Overlay */
.card-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
    to top,
    rgba(17,17,17,.95),
    rgba(17,17,17,.35),
    transparent
    );
}

/* Content */
.card-content{
    position:absolute;
    left:35px;
    right:35px;
    bottom:40px;

    color:#fff;
    z-index:2;

    transform:
    translateY(40px);

    opacity:0;

    transition:
    all .5s ease;
}

.split-card:hover .card-content,
.split-card.active-card .card-content{
    opacity:1;
    transform:
    translateY(0);
}

.card-content span{
    color:#D4A017;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:13px;
    font-weight:600;
}

.card-content h3{
    font-size:46px;
    margin:15px 0;

    font-family:
    'Cormorant Garamond', serif;
}

.card-content p{
    color:#ddd;
    line-height:1.9;
    margin-bottom:25px;
}

.card-content a{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:14px 28px;

    border-radius:50px;

    background:#F04A23;
    color:#fff;
    font-weight:600;

    transition:.4s;
}

.card-content a:hover{
    background:#D4A017;
    color:#111;
}

/* Mobile */
@media(max-width:991px){

    .split-services-wrapper{
        flex-direction:column;
        height:auto;
    }

    .split-card{
        height:420px;
    }

    .split-card:hover{
        flex:1;
    }
}
/*=====================================
EDITORIAL SERVICES SECTION
=====================================*/

.editorial-services-section{
    padding:110px 0;
    background:
    linear-gradient(
    180deg,
    #fff,
    #fff8f2
    );
}
/*=====================================
MAGICAL EXPERIENCE FLOWERS
=====================================*/
.magical-experience-section{
    position:relative;
    overflow:hidden;
}

.magical-flower{
    position:absolute;
    pointer-events:none;
    z-index:0;
}

/* Top Left */
.magical-flower-top{
    top:40px;
    left:-30px;

    width:220px;
    opacity:.95;
}

/* Bottom Right */
.magical-flower-bottom{
    right:-15px;
    bottom:40px;

    width:160px;
    opacity:.95;
}

.magical-experience-section .container{
    position:relative;
    z-index:2;
}

/* Responsive */
@media(max-width:991px){

    .magical-flower-top{
        width:170px;
        opacity:.20;
    }

    .magical-flower-bottom{
        width:120px;
        opacity:.20;
    }
}
/*=====================================
EDITORIAL SERVICES SECTION
=====================================*/

.editorial-services-section{
    padding:110px 0;
    background:
    linear-gradient(
    180deg,
    #fff,
    #fff8f2
    );
}

/*=====================================
SECTION TITLE
=====================================*/

.section-title-center{
    text-align:center;
    margin-bottom:60px;
}

.section-subtitle{
    display:inline-block;
    color:#D4A017;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:12px;
    font-weight:600;
    margin-bottom:12px;
    position:relative;
}

.section-subtitle::after{
    content:"";
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:-8px;

    width:55px;
    height:2px;

    background:#F04A23;
}

.section-title-center h2{
    font-size:55px;
    color:#111;
    margin:18px 0;

    font-family:
    'Cormorant Garamond',
    serif;
}

.section-title-center p{
    max-width:650px;
    margin:auto;
    color:#777;
    line-height:1.8;
    font-size:15px;
}

/*=====================================
EDITORIAL GRID
=====================================*/

.editorial-services-grid{
    display:grid;
    grid-template-columns:
    repeat(3,1fr);

    gap:0;
}

/* Columns */
.service-column{
    display:flex;
    flex-direction:column;
}

/*=====================================
COMMON CARD
=====================================*/

.editorial-card{
    height:340px;
    overflow:hidden;
    position:relative;
}

/*=====================================
IMAGE CARD
=====================================*/

.image-card{
    overflow:hidden;
}

.image-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;

    transition:
    transform 1.2s ease;
}

.image-card:hover img{
    transform:
    scale(1.08);
}

/*=====================================
TEXT CARD
=====================================*/

.text-card{
    background:#fff;
    padding:42px 38px;

    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;

    height:340px;

    border:
    1px solid rgba(0,0,0,.04);

    transition:.4s ease;
}

.text-card:hover{
    

    transform:
    translateY(-6px);

    box-shadow:
    0 10px 30px rgba(212,160,23,.12);

    border-color:
    rgba(212,160,23,.15);
}

/* Label */
.text-card span{
    display:block;

    color:#F04A23;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:11px;
    font-weight:600;

    margin-bottom:14px;
}

/* Heading */
.text-card h3{
    font-size:42px;
    line-height:1.15;
    margin-bottom:18px;

    font-family:
    'Cormorant Garamond',
    serif;

    height:100px;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;
}

/* Paragraph */
.text-card p{
    color:#777;
    line-height:1.9;
    font-size:15px;

    height:110px;

    margin-bottom:20px;

    display:flex;
    align-items:flex-start;
    justify-content:center;

    text-align:center;
}

/*=====================================
BUTTON PERFECT ALIGNMENT
=====================================*/

.text-card a{
    margin-top:auto;

    width:180px;
    height:50px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50px;

    background:#F04A23;
    color:#fff;

    font-size:14px;
    font-weight:600;

    flex-shrink:0;

    transition:.4s ease;
}

.text-card a:hover{
    background:#111;
    transform:
    translateY(-2px);
}

/*=====================================
DARK CARD
=====================================*/

.dark-card{
    background:
    linear-gradient(
    135deg,
    #111,
    #1c1c1c
    );

    color:#fff;
}

.dark-card span,
.dark-card h3{
    color:#fff;
}

.dark-card p{
    color:#ddd;
}

/*=====================================
GOLD CARD
=====================================*/

.gold-card{
    background:
    linear-gradient(
    135deg,
    #D4A017,
    #BF8A0F
    );

    color:#fff;
}

.gold-card span,
.gold-card h3{
    color:#fff;
}

.gold-card p{
    color:#f4f4f4;
}

/*=====================================
RESPONSIVE
=====================================*/

@media(max-width:1100px){

    .section-title-center h2{
        font-size:46px;
    }

    .text-card h3{
        font-size:34px;
        height:85px;
    }

    .text-card p{
        height:100px;
    }

    .editorial-card{
        height:320px;
    }
}

@media(max-width:991px){

    .editorial-services-grid{
        grid-template-columns:1fr;
    }

    .editorial-card{
        height:340px;
    }
}

@media(max-width:768px){

    .editorial-services-section{
        padding:80px 0;
    }

    .section-title-center h2{
        font-size:36px;
    }

    .text-card{
        padding:35px 25px;
        height:auto;
        min-height:320px;
    }

    .text-card h3{
        font-size:30px;
        height:auto;
    }

    .text-card p{
        height:auto;
    }

    .editorial-card{
        height:300px;
    }
}
/*=====================================
PREMIUM VIDEO SECTION
=====================================*/

.premium-video-section{
    position: relative;
    height: 75vh; /* reduced size */
    min-height: 550px;
    overflow: hidden;

    display: flex;
    align-items: center;

    background: #111;
}

/* Videos */
.video-container{
    position: absolute;
    inset: 0;
}

.hero-video{
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
    object-fit: cover;

    opacity: 0;
    transition: opacity 1.2s ease;

    z-index: 1;
}

.hero-video.active-video{
    opacity: 1;
}

/* Overlay */
.video-overlay{
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to right,
        rgba(0,0,0,.78),
        rgba(0,0,0,.35),
        rgba(0,0,0,.15)
    );

    z-index: 2;
}

/* Content */
.video-content{
    position: relative;
    z-index: 3;
    max-width: 620px;
    padding-top: 20px;
}

.mini-video-tag{
    display: inline-block;
    color: #D4A017;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.video-content h2{
    font-size: 55px; /* reduced */
    color: #fff;
    line-height: 1.1;
    margin-bottom: 18px;
    font-family: 'Cormorant Garamond', serif;
}

.video-content p{
    color: rgba(255,255,255,.85);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 28px;
}

/* Button */
.video-btn{
    height: 52px;
    padding: 0 30px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: #F04A23;
    color: #fff;

    font-weight: 600;
    transition: .4s ease;
    text-decoration: none;
}

.video-btn:hover{
    background: #D4A017;
    transform: translateY(-3px);
}

/* Progress */
.video-progress-wrapper{
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    gap: 10px;
    z-index: 4;
}

/*.progress-line{
    width: 60px;
    height: 4px;

    background: rgba(255,255,255,.3);
    border-radius: 30px;
    overflow: hidden;
}

.progress-line.active{
    background: #F04A23;
}*/

/*=====================================
RESPONSIVE
=====================================*/

@media(max-width:768px){

    .premium-video-section{
        height: 55vh;
        min-height: 420px;
        text-align: center;
    }

    .video-content{
        max-width: 100%;
        padding: 0 15px;
    }

    .video-content h2{
        font-size: 34px;
    }

    .video-content p{
        font-size: 14px;
        line-height: 1.7;
    }

    .video-btn{
        width: auto;
        padding: 0 25px;
        height: 48px;
    }

    .video-progress-wrapper{
        bottom: 18px;
    }

    .progress-line{
        width: 40px;
    }
}

/*=====================================
CONTACT HERO SECTION
=====================================*/
.contact-hero-section{
    position: relative;
    height: 70vh;
    min-height: 550px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    overflow: hidden;

    background:
    url('../img/ChatGPT Image Jun 2, 2026, 10_27_46 AM.png')
    center center/cover no-repeat;
}

/* Previous Premium Overlay (Better) */
.contact-overlay{
    position: absolute;
    inset: 0;

    background:
    linear-gradient(
        to right,
        rgba(17,17,17,.78),
        rgba(17,17,17,.45)
    );

    z-index: 1;
}

/* Hero Content Center */
.contact-hero-content{
    position: relative;
    z-index: 2;

    max-width: 850px;
    margin: auto;

    text-align: center;
}

.contact-hero-content h1{
    font-size: 72px;
    line-height: 1.05;
    color: #fff;

    font-family:
    'Cormorant Garamond',
    serif;

    margin-bottom: 20px;
}

/* Paragraph */
.contact-hero-content p{
    color: rgba(255,255,255,.90);
    line-height: 2;
    font-size: 16px;

    max-width: 700px;
    margin: auto;
}

/* Mobile */
@media(max-width:768px){

    .contact-hero-section{
        height: 55vh;
        min-height: 450px;
    }

    .contact-hero-content h1{
        font-size: 42px;
    }
}

/*=====================================
CONTACT INFO
=====================================*/
.contact-info-section{
    padding:110px 0;
    background:
    linear-gradient(
    180deg,
    #fff,
    #FFF8F2
    );
}

.contact-info-grid{
    display:grid;
    grid-template-columns:
    repeat(4,1fr);

    gap:30px;
}

.contact-card{
    background:#fff;

    border-radius:35px;
    padding:45px 35px;

    text-align:center;

    border:
    1px solid rgba(212,160,23,.12);

    box-shadow:
    0 15px 40px rgba(0,0,0,.06);

    transition:.45s ease;
}

.contact-card:hover{
    transform:
    translateY(-10px);

    box-shadow:
    0 25px 60px rgba(0,0,0,.12);
}

.contact-icon{
    width:90px;
    height:90px;

    border-radius:28px;

    background:
    linear-gradient(
    135deg,
    #F04A23,
    #cf3f1d
    );

    display:flex;
    align-items:center;
    justify-content:center;

    margin:auto auto 25px;

    color:#fff;
    font-size:34px;
}

.contact-card h3{
    font-size:34px;
    color:#111;
    margin-bottom:15px;

    font-family:
    'Cormorant Garamond',
    serif;
}

.contact-card p{
    color:#6B6B6B;
    line-height:1.9;
    margin-bottom:18px;
}

.contact-card a{
    color:#F04A23;
    font-weight:600;
}

.contact-card a:hover{
    color:#D4A017;
}

/*=====================================
CONTACT FORM
=====================================*/
.contact-form-section{
    background:#FFF8F2;
    padding:110px 0;
}

.contact-form-wrapper{
    display:grid;
    grid-template-columns:
    1fr 1fr;

    gap:70px;
    align-items:center;
}

.contact-left-content h2{
    font-size:58px;
    color:#111;
    line-height:1.1;

    font-family:
    'Cormorant Garamond',
    serif;

    margin:20px 0;
}

.contact-left-content p{
    line-height:2;
    color:#6B6B6B;
    margin-bottom:35px;
}

.contact-features li{
    display:flex;
    align-items:center;
    gap:14px;

    margin-bottom:18px;
    color:#111;
    font-weight:500;
}

.contact-features li i{
    width:42px;
    height:42px;
    border-radius:50%;

    background:
    linear-gradient(
    135deg,
    #D4A017,
    #b8850d
    );

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:14px;
}

/* Form Box */
.contact-form-box{
    background:#fff;
    padding:55px;

    border-radius:40px;

    box-shadow:
    0 20px 60px rgba(0,0,0,.08);
}

.contact-form-box h3{
    font-size:42px;
    color:#111;
    margin-bottom:30px;

    font-family:
    'Cormorant Garamond',
    serif;
}

.form-grid{
    display:grid;
    grid-template-columns:
    repeat(2,1fr);

    gap:20px;
}

.full-width{
    grid-column:span 2;
}

.form-control{
    width:100%;
    height:60px;

    border:none;
    outline:none;

    background:#F8F1E7;

    border-radius:16px;
    padding:0 20px;

    color:#111;
    font-size:15px;
}

.textarea{
    height:150px !important;
    resize:none;
    padding-top:18px;
}

.form-control:focus{
    border:1px solid #F04A23;
}

/* Button */
.submit-btn{
    width:100%;
    margin-top:20px;
}

/*=====================================
MAP SECTION
=====================================*/
.map-section{
    height:500px;
}

.map-section iframe{
    width:100%;
    height:100%;
    border:none;
}

/*=====================================
CTA SECTION
=====================================*/
.contact-cta-section{
    padding:100px 0;
    background:
    linear-gradient(
    135deg,
    #111111,
    #1E1E1E
    );
}

.cta-box{
    text-align:center;
    max-width:850px;
    margin:auto;
}

.cta-box h2{
    font-size:60px;
    color:#fff;

    font-family:
    'Cormorant Garamond',
    serif;

    margin-bottom:20px;
}

.cta-box p{
    color:#d5d5d5;
    line-height:2;
    margin-bottom:35px;
}

/*=====================================
RESPONSIVE
=====================================*/
@media(max-width:1100px){

    .contact-info-grid,
    .contact-form-wrapper{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .contact-hero-section{
        height:55vh;
        min-height:450px;
    }

    .contact-hero-content{
        text-align:center;
    }

    .contact-hero-content h1{
        font-size:42px;
    }

    .contact-left-content h2,
    .cta-box h2{
        font-size:38px;
    }

    .contact-form-box{
        padding:35px 25px;
    }

    .form-grid{
        grid-template-columns:1fr;
    }

    .full-width{
        grid-column:span 1;
    }

    .contact-card{
        padding:35px 25px;
    }

    .map-section{
        height:350px;
    }
}

@media(max-width:480px){

    .contact-hero-content h1{
        font-size:34px;
    }

    .contact-left-content h2,
    .cta-box h2{
        font-size:32px;
    }

    .contact-form-box h3{
        font-size:34px;
    }
}
