@charset "utf-8";
/* CSS Document */


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#ffffff;
    color:#111111;
    overflow-x:hidden;
}

/* =========================================================
   CONTAINER
========================================================= */

.container{
    width:100%;
    max-width:1280px;
    margin:auto;
    padding:0 40px;
}

/* =========================================================
   HEADER
========================================================= */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#ffffff;
    z-index:999;
    border-bottom:1px solid rgba(0,0,0,0.06);
}

.navbar{
    height:90px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* =========================================================
   LOGO
========================================================= */

.logo{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.logo img{
    height:65px;
    width:auto;
}

.logo-text{
    font-family:'Cormorant Garamond',serif;
    font-size:34px;
    color:#0d2b1f;
    font-weight:600;
    letter-spacing:1px;
}

/* =========================================================
   MENU
========================================================= */

.nav-menu{
    display:flex;
    align-items:center;
    gap:40px;
}

.nav-menu a{
    position:relative;
    text-decoration:none;
    color:#111111;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1.5px;
    transition:0.3s ease;
    padding-bottom:6px;
}

/* underline effect */

.nav-menu a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:0%;
    height:1px;
    background:#0d2b1f;
    transition:0.4s ease;
}

.nav-menu a:hover::after{
    width:100%;
}

.nav-menu a:hover{
    color:#0d2b1f;
}

/* =========================================================
   BOOK CONSULTATION BUTTON
========================================================= */

/* =========================================================
   BOOK CONSULTATION BUTTON
========================================================= */

.book-btn{
    position:relative;
    overflow:hidden;
    padding:14px 30px;
    background:#0599e5;
    color:#ffffff !important;
    border-radius:4px;
    font-weight:600;
    letter-spacing:1px;
    transition:all 0.35s ease;
    box-shadow:
    0 8px 20px rgba(5,153,229,0.25),
    0 0 0 rgba(5,153,229,0.4);

    animation:pulseGlow 2.8s infinite;
}

/* remove underline */

.book-btn::after{
    display:none !important;
}

/* shine animation */

.book-btn::before{
    content:'';
    position:absolute;
    top:0;
    left:-120%;
    width:60%;
    height:100%;
    background:
    linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.45),
        transparent
    );

    transform:skewX(-25deg);
    animation:shineMove 3s infinite;
}

/* hover */

.book-btn:hover{
    background:#0488cc;
    transform:translateY(-2px);
    box-shadow:
    0 12px 26px rgba(5,153,229,0.35);
}

/* glow animation */

@keyframes pulseGlow{

    0%{
        box-shadow:
        0 8px 20px rgba(5,153,229,0.18),
        0 0 0 0 rgba(5,153,229,0.35);
    }

    70%{
        box-shadow:
        0 8px 24px rgba(5,153,229,0.28),
        0 0 0 14px rgba(5,153,229,0);
    }

    100%{
        box-shadow:
        0 8px 20px rgba(5,153,229,0.18),
        0 0 0 0 rgba(5,153,229,0);
    }

}

/* shine effect */

@keyframes shineMove{

    0%{
        left:-120%;
    }

    100%{
        left:140%;
    }

}
/* =========================================================
   HERO SECTION
========================================================= */

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    background:
    linear-gradient(
        135deg,
        #071a10 0%,
        #0d2b1f 45%,
        #173728 100%
    );
    overflow:hidden;
    padding-top:120px;
}

/* background effects */

.hero::before{
    content:'';
    position:absolute;
    width:700px;
    height:700px;
    background:radial-gradient(circle,
    rgba(125,212,160,0.12),
    transparent 70%);
    top:-250px;
    right:-150px;
}

.hero::after{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:radial-gradient(circle,
    rgba(125,212,160,0.08),
    transparent 70%);
    bottom:-250px;
    left:-150px;
}

/* =========================================================
   HERO CONTENT
========================================================= */

.hero-wrapper{
    position:relative;
    z-index:2;
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:60px;
    width:100%;
}

.hero-content{
    max-width:720px;
}

/* eyebrow */

.hero-eyebrow{
    color:rgba(255,255,255,0.65);
    font-size:12px;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:24px;
    display:flex;
    align-items:center;
    gap:14px;
}

.hero-eyebrow::before{
    content:'';
    width:40px;
    height:1px;
    background:rgba(255,255,255,0.4);
}

/* title */

.hero-title{
    font-family:'Cormorant Garamond',serif;
    font-size:88px;
    line-height:0.95;
    font-weight:300;
    color:#ffffff;
    margin-bottom:28px;
}

.hero-title em{
    color:#7dd4a0;
    font-style:italic;
}

/* subtitle */

.hero-subtitle{
    max-width:560px;
    color:rgba(255,255,255,0.72);
    font-size:16px;
    line-height:1.9;
    margin-bottom:42px;
}

/* =========================================================
   BUTTONS
========================================================= */

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.primary-btn{
    text-decoration:none;
    background:#7dd4a0;
    color:#071a10;
    padding:16px 34px;
    font-size:14px;
    font-weight:600;
    transition:0.3s ease;
}

.primary-btn:hover{
    transform:translateY(-3px);
}

.secondary-btn{
    text-decoration:none;
    border:1px solid rgba(255,255,255,0.25);
    color:#ffffff;
    padding:16px 34px;
    font-size:14px;
    transition:0.3s ease;
}

.secondary-btn:hover{
    border-color:#ffffff;
}

/* =========================================================
   HERO STATS
========================================================= */

.hero-stats{
    display:flex;
    flex-direction:column;
    gap:40px;
    min-width:220px;
    padding-bottom:20px;
}

.hero-stat{
    border-left:1px solid rgba(255,255,255,0.15);
    padding-left:24px;
}

.hero-stat-num{
    font-family:'Cormorant Garamond',serif;
    font-size:60px;
    color:#ffffff;
    line-height:1;
    margin-bottom:8px;
}

.hero-stat-label{
    color:rgba(255,255,255,0.55);
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:11px;
}

/* =========================================================
   SCROLL TEXT
========================================================= */

.scroll-down{
    position:absolute;
    bottom:40px;
    left:50%;
    transform:translateX(-50%);
    color:rgba(255,255,255,0.4);
    font-size:11px;
    letter-spacing:3px;
    text-transform:uppercase;
}

/* =========================================================
   MOBILE
========================================================= */

.mobile-toggle{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
}

.mobile-toggle span{
    width:24px;
    height:2px;
    background:#111111;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1100px){

    .hero-wrapper{
        flex-direction:column;
        align-items:flex-start;
    }

    .hero-stats{
        flex-direction:row;
        width:100%;
    }

}

@media(max-width:768px){

    .container{
        padding:0 24px;
    }

    .nav-menu{
        display:none;
    }

    .mobile-toggle{
        display:flex;
    }

    .hero{
        padding-top:140px;
        padding-bottom:80px;
    }

    .hero-title{
        font-size:58px;
    }

    .hero-subtitle{
        font-size:15px;
    }

    .hero-stats{
        flex-direction:column;
        gap:24px;
    }

    .hero-stat-num{
        font-size:42px;
    }

}


mobile-toggle{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
    z-index:1001;
}

.mobile-toggle span{
    width:25px;
    height:2px;
    background:#111111;
    transition:0.3s ease;
}

/* =========================================================
   TABLET
========================================================= */

@media(max-width:1100px){

    .hero-wrapper{
        flex-direction:column;
        align-items:flex-start;
    }

    .hero-stats{
        flex-direction:row;
        width:100%;
        margin-top:40px;
    }

}

/* =========================================================
   MOBILE VIEW
========================================================= */

@media(max-width:768px){

    .container{
        padding:0 22px;
    }

    /* =========================
       HEADER
    ========================= */

    header{
        background:#ffffff;
    }

    .navbar{
        height:80px;
    }

    .logo img{
        height:52px;
    }

    /* =========================
       MOBILE MENU BUTTON
    ========================= */

    .mobile-toggle{
        display:flex;
    }

    /* =========================
       MOBILE NAV MENU
    ========================= */

    .nav-menu{
        position:fixed;
        top:80px;
        left:-100%;
        width:100%;
        height:calc(100vh - 80px);
        background:#ffffff;

        display:flex;
        flex-direction:column;
        align-items:flex-start;
        justify-content:flex-start;

        padding:50px 30px;
        gap:28px;

        transition:0.4s ease;
        z-index:1000;

        border-top:1px solid rgba(0,0,0,0.06);
    }

    /* ACTIVE MENU */

    .nav-menu.active{
        left:0;
    }

    /* MENU LINKS */

    .nav-menu a{
        font-size:15px;
        letter-spacing:1px;
        width:100%;
        padding-bottom:12px;
        border-bottom:1px solid rgba(0,0,0,0.06);
    }

    /* BOOK BUTTON */

    .book-btn{
        margin-top:10px;
        width:100%;
        text-align:center;
        justify-content:center;
        padding:16px 20px;
    }

    /* =========================
       HERO SECTION
    ========================= */

    .hero{
        padding-top:140px;
        padding-bottom:90px;
        min-height:auto;
    }

    .hero-wrapper{
        flex-direction:column;
        gap:50px;
    }

    .hero-content{
        width:100%;
    }

    .hero-title{
        font-size:54px;
        line-height:0.95;
    }

    .hero-subtitle{
        font-size:15px;
        line-height:1.8;
    }

    .hero-buttons{
        width:100%;
        flex-direction:column;
    }

    .primary-btn,
    .secondary-btn{
        width:100%;
        text-align:center;
    }

    /* =========================
       HERO STATS
    ========================= */

    .hero-stats{
        width:100%;
        flex-direction:column;
        gap:24px;
    }

    .hero-stat{
        width:100%;
    }

    .hero-stat-num{
        font-size:44px;
    }

    /* =========================
       SCROLL TEXT
    ========================= */

    .scroll-down{
        display:none;
    }

}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media(max-width:480px){

    .hero-title{
        font-size:42px;
    }

    .hero-subtitle{
        font-size:14px;
    }

    .hero-eyebrow{
        letter-spacing:2px;
        font-size:11px;
    }

    .hero-stat-num{
        font-size:36px;
    }

    .nav-menu{
        padding:40px 24px;
    }

}
/* =========================================================
   MODERN TICKER STRIP
========================================================= */

.ticker-section{
    position:relative;
    background:#ffffff;
    padding:22px 0;
    overflow:hidden;
    border-top:1px solid rgba(0,0,0,0.05);
    border-bottom:1px solid rgba(0,0,0,0.05);
}

/* fade edges */

.ticker-section::before,
.ticker-section::after{
    content:'';
    position:absolute;
    top:0;
    width:140px;
    height:100%;
    z-index:5;
    pointer-events:none;
}

.ticker-section::before{
    left:0;
    background:
    linear-gradient(
        to right,
        #ffffff,
        rgba(255,255,255,0)
    );
}

.ticker-section::after{
    right:0;
    background:
    linear-gradient(
        to left,
        #ffffff,
        rgba(255,255,255,0)
    );
}

/* wrapper */

.ticker-wrapper{
    width:100%;
    overflow:hidden;
}

/* moving track */

.ticker-track{
    display:flex;
    align-items:center;
    width:max-content;
    animation:smoothTicker 35s linear infinite;
}

/* pause on hover */

.ticker-section:hover .ticker-track{
    animation-play-state:paused;
}

/* items */

.ticker-item{
    display:flex;
    align-items:center;
    gap:12px;
    margin-right:22px;
    padding:14px 24px;
    border-radius:100px;

    background:
    linear-gradient(
        135deg,
        rgba(5,153,229,0.08),
        rgba(5,153,229,0.03)
    );

    border:1px solid rgba(5,153,229,0.08);

    font-size:13px;
    font-weight:500;
    letter-spacing:0.5px;
    color:#0d2b1f;

    white-space:nowrap;

    transition:0.3s ease;
}

/* hover effect */

.ticker-item:hover{
    transform:translateY(-3px);
    background:#0599e5;
    color:#ffffff;
    border-color:#0599e5;
}

/* icon */

.ticker-icon{
    width:26px;
    height:26px;
    border-radius:50%;
    background:#0599e5;
    color:#ffffff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:10px;
    flex-shrink:0;
}

/* hover icon */

.ticker-item:hover .ticker-icon{
    background:#ffffff;
    color:#0599e5;
}

/* animation */

@keyframes smoothTicker{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:768px){

    .ticker-item{
        padding:12px 18px;
        font-size:12px;
        margin-right:14px;
    }

}

/* =========================================================
   SERVICES SECTION
========================================================= */

.services-section{
    position:relative;
    padding:120px 0;
    background:#f7fbfe;
}

/* =========================================================
   HEADER
========================================================= */

.services-top{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:30px;
    margin-bottom:70px;
}

.section-eyebrow{
    color:#0599e5;
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:3px;
    margin-bottom:18px;
    font-weight:600;
}

.services-title{
    font-size:58px;
    line-height:1.05;
    color:#0d1b2a;
    font-family:'Cormorant Garamond',serif;
    font-weight:500;
}

.services-title em{
    color:#0599e5;
    font-style:italic;
}

/* =========================================================
   BUTTON
========================================================= */

.services-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;

    padding:16px 28px;

    background:#ffffff;
    color:#0d1b2a;
    text-decoration:none;

    border-radius:100px;

    border:1px solid rgba(0,0,0,0.08);

    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;

    transition:0.35s ease;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.04);
}

.services-btn:hover{
    background:#0599e5;
    color:#ffffff;
    transform:translateY(-3px);
}

/* =========================================================
   GRID
========================================================= */

.services-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:32px;
}

/* =========================================================
   CARD
========================================================= */

.service-card{
    background:#ffffff;
    border-radius:28px;
    overflow:hidden;

    border:1px solid rgba(0,0,0,0.05);

    transition:0.45s ease;

    box-shadow:
    0 10px 40px rgba(0,0,0,0.04);
}

.service-card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 20px 60px rgba(0,0,0,0.08);
}

/* =========================================================
   IMAGE
========================================================= */

.service-image{
    position:relative;
    height:260px;
    overflow:hidden;
}

.service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.6s ease;
}

.service-card:hover .service-image img{
    transform:scale(1.08);
}

.service-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.05)
    );
}

/* number */

.service-number{
    position:absolute;
    top:26px;
    right:26px;

    width:58px;
    height:58px;

    border-radius:50%;

    background:rgba(255,255,255,0.18);
    backdrop-filter:blur(10px);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#ffffff;
    font-size:15px;
    font-weight:600;
    letter-spacing:1px;
}

/* =========================================================
   CONTENT
========================================================= */

.service-content{
    padding:38px;
}

/* icon */

.service-icon{
    width:52px;
    height:52px;

    border-radius:16px;

    background:
    linear-gradient(
        135deg,
        rgba(5,153,229,0.12),
        rgba(5,153,229,0.03)
    );

    display:flex;
    align-items:center;
    justify-content:center;

    color:#0599e5;

    margin-bottom:24px;
}

/* title */

.service-name{
    font-size:30px;
    line-height:1.15;
    margin-bottom:18px;

    color:#0d1b2a;

    font-family:'Cormorant Garamond',serif;
    font-weight:600;
}

/* desc */

.service-desc{
    color:#5d6775;
    font-size:15px;
    line-height:1.9;
    margin-bottom:26px;
}

/* =========================================================
   TAGS
========================================================= */

.service-tags{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:28px;
}

.service-tags span{
    padding:10px 16px;

    border-radius:100px;

    background:#f1f7fb;

    color:#0d1b2a;

    font-size:12px;
    font-weight:500;

    border:1px solid rgba(5,153,229,0.08);
}

/* =========================================================
   LINK
========================================================= */

.service-link{
    display:inline-flex;
    align-items:center;
    gap:10px;

    color:#0599e5;
    text-decoration:none;

    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;

    transition:0.3s ease;
}

.service-link:hover{
    gap:16px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1100px){

    .services-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .services-section{
        padding:90px 0;
    }

    .services-top{
        flex-direction:column;
        align-items:flex-start;
    }

    .services-title{
        font-size:42px;
    }

    .service-image{
        height:220px;
    }

    .service-content{
        padding:28px;
    }

    .service-name{
        font-size:26px;
    }

}

@media(max-width:480px){

    .services-title{
        font-size:36px;
    }

    .service-tags{
        gap:8px;
    }

    .service-tags span{
        font-size:11px;
        padding:8px 12px;
    }

}


/* =========================================================
   WHY MALDIVES SECTION
========================================================= */

.why-maldives-section{
    position:relative;
    padding:130px 0;
    background:#0d2b1f;
    overflow:hidden;
}

/* subtle background glow */

.why-maldives-section::before{
    content:'';
    position:absolute;
    top:-250px;
    right:-250px;

    width:700px;
    height:700px;

    background:
    radial-gradient(
        circle,
        rgba(5,153,229,0.08),
        transparent 70%
    );
}

/* =========================================================
   HEADER
========================================================= */

.why-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:60px;

    margin-bottom:80px;

    position:relative;
    z-index:2;
}

/* eyebrow */

.why-eyebrow{
    color:#7ec8f0;
    font-size:12px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:3px;
    margin-bottom:18px;
}

/* title */

.why-title{
    font-size:64px;
    line-height:1.02;
    color:#ffffff;
    font-family:'Cormorant Garamond',serif;
    font-weight:500;
}

.why-title em{
    color:#7ec8f0;
    font-style:italic;
}

/* side text */

.why-side-text{
    max-width:430px;

    color:rgba(255,255,255,0.70);

    font-size:15px;
    line-height:1.9;
}

/* =========================================================
   GRID
========================================================= */

.why-grid{
    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;

    margin-bottom:80px;
}

/* =========================================================
   CARD
========================================================= */

.why-card{
    position:relative;

    padding:42px;

    border-radius:26px;

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,0.06),
        rgba(255,255,255,0.03)
    );

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(10px);

    transition:0.4s ease;

    overflow:hidden;
}

.why-card:hover{
    transform:translateY(-8px);

    border-color:rgba(5,153,229,0.35);

    background:
    linear-gradient(
        135deg,
        rgba(5,153,229,0.12),
        rgba(255,255,255,0.03)
    );
}

/* top glow */

.why-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:1px;

    background:
    linear-gradient(
        to right,
        transparent,
        rgba(126,200,240,0.7),
        transparent
    );
}

/* =========================================================
   ICON
========================================================= */

.why-icon-box{
    width:68px;
    height:68px;

    border-radius:20px;

    background:
    linear-gradient(
        135deg,
        rgba(5,153,229,0.18),
        rgba(5,153,229,0.05)
    );

    display:flex;
    align-items:center;
    justify-content:center;

    color:#7ec8f0;

    margin-bottom:30px;
}

/* =========================================================
   CARD CONTENT
========================================================= */

.why-card-title{
    font-size:32px;
    line-height:1.15;

    color:#ffffff;

    font-family:'Cormorant Garamond',serif;
    font-weight:600;

    margin-bottom:18px;
}

.why-card-text{
    color:rgba(255,255,255,0.72);

    font-size:15px;
    line-height:1.9;
}

/* =========================================================
   STATS STRIP
========================================================= */

.why-stats{
    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:24px;
}

/* stat box */

.why-stat-item{
    text-align:center;

    padding:36px 20px;

    border-radius:24px;

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,0.06),
        rgba(255,255,255,0.02)
    );

    border:1px solid rgba(255,255,255,0.08);

    transition:0.35s ease;
}

.why-stat-item:hover{
    transform:translateY(-5px);

    border-color:rgba(5,153,229,0.35);
}

/* number */

.why-stat-number{
    font-size:54px;
    line-height:1;

    color:#ffffff;

    font-family:'Cormorant Garamond',serif;
    font-weight:600;

    margin-bottom:12px;
}

/* label */

.why-stat-label{
    color:rgba(255,255,255,0.65);

    font-size:12px;
    text-transform:uppercase;
    letter-spacing:2px;
    line-height:1.7;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1100px){

    .why-grid{
        grid-template-columns:1fr;
    }

    .why-stats{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .why-maldives-section{
        padding:90px 0;
    }

    .why-top{
        flex-direction:column;
        align-items:flex-start;
        margin-bottom:60px;
    }

    .why-title{
        font-size:46px;
    }

    .why-card{
        padding:32px;
    }

    .why-card-title{
        font-size:28px;
    }

    .why-stat-number{
        font-size:42px;
    }

}

@media(max-width:480px){

    .why-stats{
        grid-template-columns:1fr;
    }

    .why-title{
        font-size:38px;
    }

    .why-card{
        padding:28px;
    }

}


/* =========================================================
   INVESTMENT SECTION
========================================================= */

.investment-section{
    padding:130px 0;
    background:#f7fbfe;
}

/* =========================================================
   HEADER
========================================================= */

.invest-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:60px;

    margin-bottom:60px;
}

.invest-eyebrow{
    color:#0599e5;
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:3px;
    font-weight:600;
    margin-bottom:18px;
}

.invest-title{
    font-size:64px;
    line-height:1.02;
    color:#0d1b2a;
    font-family:'Cormorant Garamond',serif;
    font-weight:500;
}

.invest-title em{
    color:#0599e5;
    font-style:italic;
}

.invest-top-text{
    max-width:420px;
    color:#5d6775;
    line-height:1.9;
    font-size:15px;
}

/* =========================================================
   FILTER TABS
========================================================= */

.invest-tabs{
    display:flex;
    flex-wrap:wrap;
    gap:16px;
    margin-bottom:50px;
}

.invest-tab{
    border:none;
    background:#ffffff;

    padding:14px 24px;

    border-radius:100px;

    font-size:13px;
    font-weight:600;

    color:#0d1b2a;

    cursor:pointer;

    border:1px solid rgba(0,0,0,0.06);

    transition:0.3s ease;
}

.invest-tab:hover,
.invest-tab.active{
    background:#0d2b1f;
    color:#ffffff;
}

/* =========================================================
   GRID
========================================================= */

.investment-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:32px;
}

/* =========================================================
   CARD
========================================================= */

.investment-card{
    background:#ffffff;
    border-radius:28px;
    overflow:hidden;

    border:1px solid rgba(0,0,0,0.05);

    transition:0.4s ease;

    box-shadow:
    0 10px 35px rgba(0,0,0,0.04);
}

.investment-card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 20px 60px rgba(0,0,0,0.08);
}

/* =========================================================
   IMAGE
========================================================= */

.investment-image{
    position:relative;
    height:280px;
    overflow:hidden;
}

.investment-image img{
    width:100%;
    height:100%;
    object-fit:cover;

    transition:0.6s ease;
}

.investment-card:hover .investment-image img{
    transform:scale(1.08);
}

.investment-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.05)
    );
}

/* =========================================================
   BADGES
========================================================= */

.investment-badge{
    position:absolute;
    top:24px;
    left:24px;

    padding:10px 18px;

    border-radius:100px;

    font-size:11px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;

    backdrop-filter:blur(10px);
}

.badge-resort{
    background:rgba(5,153,229,0.18);
    color:#ffffff;
}

.badge-commercial{
    background:rgba(255,255,255,0.16);
    color:#ffffff;
}

.badge-land{
    background:rgba(13,43,31,0.35);
    color:#ffffff;
}

.badge-business{
    background:rgba(0,0,0,0.35);
    color:#ffffff;
}

/* =========================================================
   CONTENT
========================================================= */

.investment-content{
    padding:36px;
}

.investment-location{
    color:#0599e5;
    font-size:13px;
    font-weight:600;
    margin-bottom:14px;
}

.investment-name{
    font-size:34px;
    line-height:1.1;

    color:#0d1b2a;

    font-family:'Cormorant Garamond',serif;
    font-weight:600;

    margin-bottom:28px;
}

/* =========================================================
   DETAILS
========================================================= */

.investment-details{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;

    margin-bottom:30px;
}

.investment-detail{
    padding:18px;
    border-radius:18px;

    background:#f5f9fc;

    border:1px solid rgba(0,0,0,0.04);
}

.detail-label{
    display:block;

    color:#7a8794;

    font-size:11px;
    text-transform:uppercase;
    letter-spacing:1px;

    margin-bottom:8px;
}

.detail-value{
    color:#0d1b2a;

    font-size:16px;
    font-weight:700;
}

/* =========================================================
   LINK
========================================================= */

.investment-link{
    display:inline-flex;
    align-items:center;
    gap:10px;

    color:#0599e5;
    text-decoration:none;

    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;

    transition:0.3s ease;
}

.investment-link:hover{
    gap:16px;
}

/* =========================================================
   CTA
========================================================= */

.investment-cta{
    margin-top:80px;

    padding:50px;

    border-radius:32px;

    background:#0d2b1f;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
}

.investment-cta-text h3{
    color:#ffffff;
    font-size:38px;
    margin-bottom:14px;
    font-family:'Cormorant Garamond',serif;
}

.investment-cta-text p{
    color:rgba(255,255,255,0.72);
    line-height:1.9;
    max-width:700px;
}

.investment-cta-btn{
    flex-shrink:0;

    padding:18px 30px;

    background:#0599e5;
    color:#ffffff;
    text-decoration:none;

    border-radius:100px;

    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;

    transition:0.3s ease;
}

.investment-cta-btn:hover{
    transform:translateY(-3px);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1100px){

    .investment-grid{
        grid-template-columns:1fr;
    }

    .invest-top{
        flex-direction:column;
        align-items:flex-start;
    }

    .investment-cta{
        flex-direction:column;
        align-items:flex-start;
    }

}

@media(max-width:768px){

    .investment-section{
        padding:90px 0;
    }

    .invest-title{
        font-size:46px;
    }

    .investment-image{
        height:240px;
    }

    .investment-content{
        padding:28px;
    }

    .investment-name{
        font-size:28px;
    }

    .investment-details{
        grid-template-columns:1fr;
    }

    .investment-cta{
        padding:36px 28px;
    }

    .investment-cta-text h3{
        font-size:32px;
    }

}

@media(max-width:480px){

    .invest-title{
        font-size:38px;
    }

    .invest-tabs{
        gap:10px;
    }

    .invest-tab{
        width:100%;
        text-align:center;
    }

}



/* =========================================================
   BUSINESS SECTION
========================================================= */

.biz-section{
    padding:140px 0;
    background:#f8fbfd;
    overflow:hidden;
}

.biz-wrapper{
    display:grid;
    grid-template-columns:1.05fr 0.95fr;
    gap:90px;
    align-items:center;
}

/* =========================================================
   LEFT CONTENT
========================================================= */

.biz-tag{
    display:inline-block;
    margin-bottom:22px;
    font-size:12px;
    font-weight:700;
    letter-spacing:3px;
    color:#0599e5;
}

.biz-title{
    font-size:68px;
    line-height:1.05;
    color:#0d1b2a;
    margin-bottom:30px;
    font-family:'Cormorant Garamond',serif;
    font-weight:600;
}

.biz-title span{
    color:#0599e5;
    font-style:italic;
}

.biz-text{
    font-size:15px;
    line-height:1.95;
    color:#667085;
    margin-bottom:45px;
    max-width:640px;
}

/* =========================================================
   FEATURE LIST
========================================================= */

.biz-feature-list{
    display:grid;
    gap:22px;
}

.biz-feature-item{
    display:flex;
    gap:20px;
    background:#ffffff;
    padding:28px;
    border-radius:26px;
    border:1px solid rgba(0,0,0,0.05);
    transition:0.35s ease;
}

.biz-feature-item:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 50px rgba(0,0,0,0.06);
}

.biz-icon{
    min-width:60px;
    width:60px;
    height:60px;
    border-radius:18px;
    background:#0d2b1f;
    color:#ffffff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.biz-feature-content h4{
    font-size:19px;
    margin-bottom:12px;
    color:#0d1b2a;
}

.biz-feature-content p{
    font-size:14px;
    line-height:1.8;
    color:#667085;
}

/* =========================================================
   BUTTONS
========================================================= */

.biz-buttons{
    display:flex;
    gap:18px;
    margin-top:45px;
}

.biz-btn-primary{
    padding:16px 34px;
    background:#0599e5;
    color:#ffffff;
    border-radius:100px;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    transition:0.35s ease;
    box-shadow:0 12px 30px rgba(5,153,229,0.28);
}

.biz-btn-primary:hover{
    transform:translateY(-4px);
}

.biz-btn-secondary{
    padding:16px 34px;
    border-radius:100px;
    border:1px solid rgba(0,0,0,0.08);
    background:#ffffff;
    color:#0d1b2a;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    transition:0.35s ease;
}

.biz-btn-secondary:hover{
    background:#f3f8fb;
}

/* =========================================================
   RIGHT VISUAL
========================================================= */

.biz-visual{
    position:relative;
    height:760px;
    border-radius:36px;
    overflow:hidden;
    box-shadow:0 35px 90px rgba(0,0,0,0.12);
}

.biz-visual img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.biz-visual-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(13,43,31,0.88),
    rgba(13,43,31,0.08));
}

/* =========================================================
   FLOATING CARDS
========================================================= */

.biz-main-card{
    position:absolute;
    left:35px;
    right:35px;
    bottom:35px;
    padding:34px;
    border-radius:28px;
    background:rgba(255,255,255,0.12);
    backdrop-filter:blur(14px);
    border:1px solid rgba(255,255,255,0.18);
    color:#ffffff;
}

.biz-small{
    display:inline-block;
    margin-bottom:16px;
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    color:#8fd8ff;
    text-transform:uppercase;
}

.biz-main-card h3{
    font-size:38px;
    line-height:1.12;
    margin-bottom:18px;
    font-family:'Cormorant Garamond',serif;
    font-weight:600;
}

.biz-main-card p{
    font-size:15px;
    line-height:1.8;
    color:rgba(255,255,255,0.82);
}

.biz-stat-card{
    position:absolute;
    background:#ffffff;
    padding:24px;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
    z-index:3;
}

.biz-stat-card h3{
    font-size:30px;
    color:#0d1b2a;
    margin-bottom:10px;
}

.biz-stat-card span{
    font-size:13px;
    line-height:1.6;
    color:#667085;
}

.stat-one{
    top:35px;
    left:35px;
}

.stat-two{
    top:170px;
    right:35px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1150px){

    .biz-wrapper{
        grid-template-columns:1fr;
    }

    .biz-visual{
        height:650px;
    }

}

@media(max-width:768px){

    .biz-section{
        padding:90px 0;
    }

    .biz-title{
        font-size:44px;
    }

    .biz-buttons{
        flex-direction:column;
    }

    .biz-visual{
        height:520px;
    }

    .biz-main-card{
        left:20px;
        right:20px;
        bottom:20px;
        padding:24px;
    }

    .biz-main-card h3{
        font-size:28px;
    }

    .biz-stat-card{
        padding:18px;
    }

    .stat-one{
        top:20px;
        left:20px;
    }

    .stat-two{
        top:120px;
        right:20px;
    }

}


/* =========================================================
   PREMIUM RELOCATION SECTION
========================================================= */

.relocate-section{
    padding:140px 0;
    position:relative;
    overflow:hidden;

    background:
    radial-gradient(circle at top left,
    rgba(8,170,130,0.18),
    transparent 30%),

    radial-gradient(circle at bottom right,
    rgba(5,153,229,0.16),
    transparent 30%),

    linear-gradient(
    135deg,
    #071912 0%,
    #0d2c1f 45%,
    #123828 100%);
}

/* =========================================================
   BACKGROUND EFFECT
========================================================= */

.relocate-section::before{
    content:"";
    position:absolute;
    inset:0;

    background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);

    background-size:70px 70px;

    opacity:0.4;
    pointer-events:none;
}

/* =========================================================
   TOP AREA
========================================================= */

.relocate-top{
    display:flex;
    justify-content:space-between;
    gap:80px;
    margin-bottom:80px;
    align-items:flex-end;
    position:relative;
    z-index:2;
}

.relocate-heading{
    max-width:720px;
}

.relocate-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:10px 18px;

    background:rgba(255,255,255,0.08);

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(10px);

    border-radius:100px;

    margin-bottom:28px;

    font-size:12px;
    font-weight:700;
    letter-spacing:2px;

    color:#8fd8ff;
}

.relocate-heading h2{
    font-size:72px;
    line-height:1.02;
    color:#ffffff;
    font-family:'Cormorant Garamond',serif;
    font-weight:600;
}

.relocate-heading h2 span{
    color:#8fd8ff;
    font-style:italic;
}

.relocate-intro{
    max-width:430px;
}

.relocate-intro p{
    font-size:15px;
    line-height:2;
    color:rgba(255,255,255,0.75);
    margin-bottom:30px;
}

/* =========================================================
   BUTTON
========================================================= */

.relocate-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:17px 36px;

    background:#0599e5;

    color:#ffffff;

    border-radius:100px;

    text-decoration:none;

    font-size:14px;
    font-weight:700;

    transition:0.4s ease;

    box-shadow:
    0 15px 40px rgba(5,153,229,0.35),
    inset 0 1px 0 rgba(255,255,255,0.25);
}

.relocate-btn:hover{
    transform:translateY(-5px);
    box-shadow:
    0 22px 55px rgba(5,153,229,0.45),
    inset 0 1px 0 rgba(255,255,255,0.25);
}

/* =========================================================
   MAIN GRID
========================================================= */

.relocate-wrapper{
    display:grid;
    grid-template-columns:0.92fr 1.08fr;
    gap:55px;
    align-items:start;
    position:relative;
    z-index:2;
}

/* =========================================================
   LEFT IMAGE
========================================================= */

.relocate-visual{
    position:sticky;
    top:120px;

    height:760px;

    border-radius:38px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,0.08);

    box-shadow:
    0 30px 90px rgba(0,0,0,0.35);
}

.relocate-visual img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.relocate-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(to top,
    rgba(7,25,18,0.92),
    rgba(7,25,18,0.15));
}

/* =========================================================
   FLOATING CARD
========================================================= */

.relocate-floating-card{
    position:absolute;

    left:30px;
    right:30px;
    bottom:30px;

    padding:34px;

    border-radius:30px;

    background:rgba(255,255,255,0.08);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,0.12);

    color:#ffffff;
}

.floating-label{
    display:inline-block;

    margin-bottom:18px;

    font-size:11px;
    font-weight:700;
    letter-spacing:2px;

    color:#8fd8ff;

    text-transform:uppercase;
}

.relocate-floating-card h3{
    font-size:38px;
    line-height:1.12;

    margin-bottom:28px;

    font-family:'Cormorant Garamond',serif;
    font-weight:600;
}

/* =========================================================
   STATS
========================================================= */

.relocate-stats{
    display:flex;
    gap:18px;
}

.relocate-stat{
    flex:1;

    padding:20px;

    border-radius:20px;

    background:rgba(255,255,255,0.08);

    border:1px solid rgba(255,255,255,0.08);
}

.relocate-stat h4{
    font-size:28px;
    margin-bottom:8px;
    color:#ffffff;
}

.relocate-stat span{
    font-size:12px;
    line-height:1.6;
    color:rgba(255,255,255,0.72);
}

/* =========================================================
   RIGHT SERVICES GRID
========================================================= */

.relocate-services{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
}

/* =========================================================
   SERVICE CARD
========================================================= */

.relocate-card{
    position:relative;

    background:rgba(255,255,255,0.06);

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(12px);

    border-radius:30px;

    padding:36px;

    transition:0.4s ease;

    overflow:hidden;
}

.relocate-card::before{
    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:1px;

    background:
    linear-gradient(to right,
    transparent,
    rgba(255,255,255,0.35),
    transparent);
}

.relocate-card:hover{
    transform:translateY(-8px);

    background:rgba(255,255,255,0.09);

    box-shadow:
    0 25px 60px rgba(0,0,0,0.22);
}

/* =========================================================
   ICON
========================================================= */

.relocate-icon{
    width:64px;
    height:64px;

    border-radius:20px;

    background:
    linear-gradient(
    135deg,
    #0599e5,
    #35b8ff);

    color:#ffffff;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:24px;

    box-shadow:
    0 10px 30px rgba(5,153,229,0.35);
}

/* =========================================================
   CONTENT
========================================================= */

.relocate-content h4{
    font-size:21px;
    color:#ffffff;
    margin-bottom:14px;
}

.relocate-content p{
    font-size:14px;
    line-height:1.9;
    color:rgba(255,255,255,0.72);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1150px){

    .relocate-top{
        flex-direction:column;
        align-items:flex-start;
    }

    .relocate-wrapper{
        grid-template-columns:1fr;
    }

    .relocate-visual{
        position:relative;
        top:0;
        height:620px;
    }

}

@media(max-width:768px){

    .relocate-section{
        padding:90px 0;
    }

    .relocate-heading h2{
        font-size:46px;
    }

    .relocate-services{
        grid-template-columns:1fr;
    }

    .relocate-visual{
        height:520px;
    }

    .relocate-floating-card{
        left:20px;
        right:20px;
        bottom:20px;
        padding:24px;
    }

    .relocate-floating-card h3{
        font-size:30px;
    }

    .relocate-stats{
        flex-direction:column;
    }

}



/* =========================================================
   GLOBAL SOURCING SECTION
========================================================= */

.global-sourcing-section{
    padding:140px 0;
    background:#ffffff;
    overflow:hidden;
}

/* =========================================================
   HEADER
========================================================= */

.gs-header{
    display:flex;
    justify-content:space-between;
    gap:80px;
    margin-bottom:80px;
}

.gs-left{
    max-width:760px;
}

.gs-tag{
    display:inline-block;
    margin-bottom:22px;

    color:#0599e5;

    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
}

.gs-left h2{
    font-size:72px;
    line-height:1.02;
    color:#111827;

    font-family:'Cormorant Garamond',serif;
    font-weight:600;
}

.gs-left h2 span{
    color:#0599e5;
    font-style:italic;
}

.gs-right{
    max-width:420px;
}

.gs-right p{
    font-size:15px;
    line-height:2;
    color:#667085;
    margin-bottom:28px;
}

/* =========================================================
   BUTTON
========================================================= */

.gs-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:16px 34px;

    background:#111827;
    color:#ffffff;

    border-radius:100px;

    text-decoration:none;

    font-size:14px;
    font-weight:700;

    transition:0.35s ease;
}

.gs-btn:hover{
    background:#0599e5;
    transform:translateY(-4px);
}

/* =========================================================
   MAIN GRID
========================================================= */

.gs-layout{
    display:grid;
    grid-template-columns:0.95fr 1.05fr;
    gap:50px;
    align-items:start;
}

/* =========================================================
   LEFT PANEL
========================================================= */

.gs-info-panel{
    position:sticky;
    top:120px;

    border-radius:34px;

    overflow:hidden;

    background:#f8fafc;

    border:1px solid #e5e7eb;
}

.gs-image-wrap{
    height:420px;
    overflow:hidden;
}

.gs-image-wrap img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.gs-info-content{
    padding:40px;
}

.gs-info-top{
    display:flex;
    gap:20px;
    margin-bottom:35px;
}

.gs-mini-icon{
    min-width:64px;
    height:64px;

    border-radius:20px;

    background:#0599e5;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#ffffff;
}

.gs-small-text{
    display:block;

    margin-bottom:10px;

    color:#0599e5;

    font-size:11px;
    letter-spacing:2px;
    font-weight:700;
}

.gs-info-top h3{
    font-size:34px;
    line-height:1.15;
    color:#111827;

    font-family:'Cormorant Garamond',serif;
}

/* =========================================================
   FEATURES
========================================================= */

.gs-feature-list{
    display:grid;
    gap:18px;
}

.gs-feature{
    display:flex;
    align-items:center;
    gap:14px;

    padding:18px 22px;

    border-radius:18px;

    background:#ffffff;

    border:1px solid #edf2f7;
}

.gs-feature-dot{
    width:10px;
    height:10px;

    border-radius:50%;

    background:#0599e5;
}

.gs-feature span{
    font-size:14px;
    color:#374151;
    font-weight:500;
}

/* =========================================================
   RIGHT GRID
========================================================= */

.gs-network-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
}

/* =========================================================
   COUNTRY CARD
========================================================= */

.gs-country-card{
    position:relative;

    padding:38px;

    border-radius:30px;

    background:#ffffff;

    border:1px solid #e5e7eb;

    transition:0.35s ease;
}

.gs-country-card:hover{
    transform:translateY(-6px);

    border-color:#0599e5;

    box-shadow:
    0 25px 60px rgba(0,0,0,0.08);
}

.gs-country-top{
    display:flex;
    justify-content:space-between;
    align-items:center;

    margin-bottom:28px;
}

.gs-flag{
    width:68px;
    height:68px;

    border-radius:22px;

    background:#f3f4f6;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:32px;
}

.gs-country-number{
    font-size:42px;
    color:#e5e7eb;

    font-weight:700;
}

.gs-country-card h4{
    font-size:28px;
    color:#111827;

    margin-bottom:14px;

    font-family:'Cormorant Garamond',serif;
}

.gs-country-card p{
    font-size:14px;
    line-height:1.9;
    color:#667085;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1150px){

    .gs-header{
        flex-direction:column;
    }

    .gs-layout{
        grid-template-columns:1fr;
    }

    .gs-info-panel{
        position:relative;
        top:0;
    }

}

@media(max-width:768px){

    .global-sourcing-section{
        padding:90px 0;
    }

    .gs-left h2{
        font-size:48px;
    }

    .gs-network-grid{
        grid-template-columns:1fr;
    }

    .gs-info-top{
        flex-direction:column;
    }

    .gs-info-top h3{
        font-size:28px;
    }

}


/* =========================================================
   PROCESS SECTION
========================================================= */

.process-section{
    position:relative;
    overflow:hidden;

    padding:140px 0;

    background:#ffffff;
}

/* =========================================================
   BACKGROUND EFFECTS
========================================================= */

.process-bg-circle{
    position:absolute;
    border-radius:50%;
    filter:blur(80px);
    opacity:0.08;
    pointer-events:none;
}

.process-bg-one{
    width:420px;
    height:420px;
    background:#0599e5;

    top:-120px;
    left:-120px;
}

.process-bg-two{
    width:380px;
    height:380px;
    background:#0d2c1f;

    bottom:-100px;
    right:-100px;
}

/* =========================================================
   HEADER
========================================================= */

.process-header{
    position:relative;
    z-index:2;

    text-align:center;

    max-width:850px;

    margin:0 auto 90px;
}

.process-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:12px 22px;

    border-radius:100px;

    background:#eef7fd;

    color:#0599e5;

    font-size:12px;
    font-weight:700;
    letter-spacing:2px;

    margin-bottom:28px;
}

.process-header h2{
    font-size:72px;
    line-height:1.02;

    color:#111827;

    margin-bottom:24px;

    font-family:'Cormorant Garamond',serif;
    font-weight:600;
}

.process-header h2 span{
    color:#0599e5;
    font-style:italic;
}

.process-header p{
    font-size:16px;
    line-height:2;

    color:#667085;
}

/* =========================================================
   WRAPPER
========================================================= */

.process-wrapper{
    position:relative;
    z-index:2;

    max-width:1100px;
    margin:auto;

    display:grid;
    gap:35px;
}

/* =========================================================
   CENTER LINE
========================================================= */

.process-line{
    position:absolute;

    left:55px;
    top:0;
    bottom:0;

    width:2px;

    background:
    linear-gradient(
    to bottom,
    rgba(5,153,229,0),
    rgba(5,153,229,0.5),
    rgba(5,153,229,0));
}

/* =========================================================
   CARD
========================================================= */

.process-card{
    position:relative;

    display:grid;
    grid-template-columns:120px 1fr;

    gap:35px;

    align-items:flex-start;
}

/* =========================================================
   NUMBER
========================================================= */

.process-number-wrap{
    position:relative;
    z-index:2;

    display:flex;
    justify-content:center;
}

.process-number{
    width:110px;
    height:110px;

    border-radius:30px;

    background:
    linear-gradient(
    135deg,
    #0599e5,
    #37bbff);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#ffffff;

    font-size:32px;
    font-weight:700;

    box-shadow:
    0 25px 60px rgba(5,153,229,0.28);

    transition:0.4s ease;
}

.process-card:hover .process-number{
    transform:translateY(-8px) scale(1.04);
}

/* =========================================================
   CONTENT BOX
========================================================= */

.process-content{
    position:relative;

    padding:42px;

    border-radius:34px;

    background:#ffffff;

    border:1px solid #edf2f7;

    box-shadow:
    0 15px 45px rgba(15,23,42,0.05);

    transition:0.4s ease;

    overflow:hidden;
}

.process-content::before{
    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:
    linear-gradient(
    to right,
    #0599e5,
    #38bdf8);
}

.process-card:hover .process-content{

    transform:translateY(-8px);

    box-shadow:
    0 30px 80px rgba(15,23,42,0.12);
}

/* =========================================================
   MINI TITLE
========================================================= */

.process-mini{
    display:inline-block;

    margin-bottom:16px;

    color:#0599e5;

    font-size:11px;
    font-weight:700;
    letter-spacing:2px;
}

/* =========================================================
   HEADING
========================================================= */

.process-content h3{
    font-size:34px;
    line-height:1.15;

    color:#111827;

    margin-bottom:20px;

    font-family:'Cormorant Garamond',serif;
    font-weight:600;
}

/* =========================================================
   TEXT
========================================================= */

.process-content p{
    font-size:15px;
    line-height:2;

    color:#667085;
}

/* =========================================================
   ANIMATION
========================================================= */

.process-card{
    animation:processFloat 5s ease-in-out infinite;
}

.process-card:nth-child(2){
    animation-delay:0.5s;
}

.process-card:nth-child(3){
    animation-delay:1s;
}

.process-card:nth-child(4){
    animation-delay:1.5s;
}

@keyframes processFloat{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-6px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:992px){

    .process-header h2{
        font-size:52px;
    }

    .process-card{
        grid-template-columns:1fr;
    }

    .process-line{
        display:none;
    }

    .process-number-wrap{
        justify-content:flex-start;
    }

}

@media(max-width:768px){

    .process-section{
        padding:90px 0;
    }

    .process-header h2{
        font-size:42px;
    }

    .process-content{
        padding:32px;
    }

    .process-content h3{
        font-size:28px;
    }

    .process-number{
        width:90px;
        height:90px;
        font-size:26px;
    }

}


/* =========================================================
   CONTACT SECTION
========================================================= */

.corporate-contact-section{
    position:relative;

    padding:120px 0;

    background:
    linear-gradient(
    135deg,
    #0d2c1f 0%,
    #12392a 100%
    );

    overflow:hidden;
}


/* =========================================================
   BACKGROUND CIRCLES
========================================================= */

.contact-bg-circle{
    position:absolute;

    border-radius:50%;

    background:rgba(255,255,255,0.04);

    filter:blur(20px);
}

.contact-circle-1{
    width:320px;
    height:320px;

    top:-80px;
    right:-100px;
}

.contact-circle-2{
    width:220px;
    height:220px;

    bottom:-80px;
    left:-80px;
}


/* =========================================================
   LAYOUT
========================================================= */

.contact-wrapper{
    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;
}


/* =========================================================
   LEFT SIDE
========================================================= */

.contact-tag{
    display:inline-block;

    padding:10px 18px;

    border-radius:50px;

    background:rgba(255,255,255,0.08);

    color:#9dd6bc;

    font-size:12px;
    font-weight:600;
    letter-spacing:1px;

    margin-bottom:24px;
}

.contact-title{
    font-size:56px;
    line-height:1.1;
    font-weight:700;

    color:#fff;

    margin-bottom:25px;
}

.contact-title span{
    color:#8ff5c7;
}

.contact-description{
    font-size:16px;
    line-height:1.9;

    color:rgba(255,255,255,0.75);

    margin-bottom:40px;
}


/* =========================================================
   FEATURES
========================================================= */

.contact-feature-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.contact-feature-item{
    display:flex;
    align-items:center;
    gap:15px;

    color:#fff;

    font-size:15px;
}

.feature-icon{
    width:38px;
    height:38px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#17c37b;

    color:#fff;

    font-size:15px;
    font-weight:bold;

    box-shadow:
    0 10px 25px rgba(23,195,123,0.35);
}


/* =========================================================
   FORM BOX
========================================================= */

.contact-form-box{
    background:#fff;

    padding:50px;

    border-radius:30px;

    box-shadow:
    0 20px 60px rgba(0,0,0,0.18);

    animation:floatBox 5s ease-in-out infinite;
}

@keyframes floatBox{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-8px);
    }
    100%{
        transform:translateY(0px);
    }
}


/* =========================================================
   FORM HEADER
========================================================= */

.form-header h3{
    font-size:32px;
    color:#0d2c1f;

    margin-bottom:12px;
}

.form-header p{
    color:#666;
    line-height:1.7;

    margin-bottom:35px;
}


/* =========================================================
   FORM GRID
========================================================= */

.form-grid{
    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;
}


/* =========================================================
   FORM ELEMENTS
========================================================= */

.form-group{
    margin-bottom:22px;
}

.form-group label{
    display:block;

    margin-bottom:10px;

    font-size:14px;
    font-weight:600;

    color:#0d2c1f;
}

.form-group input,
.form-group textarea,
.form-group select{
    width:100%;

    padding:16px 18px;

    border:1px solid #dce5df;

    border-radius:16px;

    font-size:15px;

    transition:0.3s ease;

    outline:none;

    background:#f8faf9;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{
    border-color:#0d2c1f;

    background:#fff;

    box-shadow:
    0 0 0 4px rgba(13,44,31,0.08);
}

.form-group textarea{
    height:130px;

    resize:none;
}


/* =========================================================
   BUTTON
========================================================= */

.contact-submit-btn{
    width:100%;

    padding:18px;

    border:none;

    border-radius:18px;

    background:
    linear-gradient(
    135deg,
    #0d2c1f,
    #14573b
    );

    color:#fff;

    font-size:16px;
    font-weight:600;

    cursor:pointer;

    transition:0.4s ease;

    box-shadow:
    0 15px 35px rgba(13,44,31,0.25);
}

.contact-submit-btn:hover{
    transform:translateY(-3px);

    box-shadow:
    0 20px 40px rgba(13,44,31,0.35);
}


/* =========================================================
   ERROR
========================================================= */

.error{
    border-color:#ff4d4f !important;

    background:#fff5f5 !important;
}

.error-message{
    display:block;

    margin-top:8px;

    color:#ff4d4f;

    font-size:12px;
}


/* =========================================================
   SUCCESS
========================================================= */

.form-success{
    display:none;

    margin-top:22px;

    padding:16px;

    border-radius:14px;

    background:#e9fff3;

    color:#0f9d58;

    font-size:14px;
    font-weight:600;

    text-align:center;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:991px){

    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .contact-title{
        font-size:42px;
    }

}


@media(max-width:768px){

    .corporate-contact-section{
        padding:80px 0;
    }

    .contact-form-box{
        padding:30px;
    }

    .form-grid{
        grid-template-columns:1fr;
    }

    .contact-title{
        font-size:34px;
    }

}






*{
   
}

body{

    background:
    linear-gradient(
    135deg,
    #0d2c1f,
    #12392a
    );

    min-height:100vh;

}

.corporate-contact-section{

    padding:100px 20px;

}

.container{

    width:100%;
    max-width:1200px;
    margin:auto;

}

.contact-wrapper{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;

}

.contact-tag{

    display:inline-block;

    padding:10px 18px;

    border-radius:50px;

    background:rgba(255,255,255,0.08);

    color:#9dd6bc;

    font-size:12px;

    font-weight:600;

    margin-bottom:24px;

}

.contact-title{

    font-size:56px;

    line-height:1.1;

    color:#fff;

    margin-bottom:25px;

}

.contact-title span{

    color:#8ff5c7;

}

.contact-description{

    font-size:16px;

    line-height:1.9;

    color:rgba(255,255,255,0.75);

}

.contact-form-box{

    background:#fff;

    padding:50px;

    border-radius:30px;

    box-shadow:0 20px 60px rgba(0,0,0,0.18);

}

.form-header h3{

    font-size:32px;

    color:#0d2c1f;

    margin-bottom:12px;

}

.form-header p{

    color:#666;

    margin-bottom:35px;

}

.form-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

}

.form-group{

    margin-bottom:22px;

}

.form-group label{

    display:block;

    margin-bottom:10px;

    font-size:14px;

    font-weight:600;

}

.form-group input,
.form-group textarea,
.form-group select{

    width:100%;

    padding:16px;

    border:1px solid #ddd;

    border-radius:14px;

    font-size:15px;

}

.form-group textarea{

    height:130px;

    resize:none;

}

.contact-submit-btn{

    width:100%;

    padding:18px;

    border:none;

    border-radius:18px;

    background:
    linear-gradient(
    135deg,
    #0d2c1f,
    #14573b
    );

    color:#fff;

    font-size:16px;

    cursor:pointer;

}

.contact-submit-btn:hover{

    opacity:0.95;

}

@media(max-width:768px){

    .contact-wrapper{

        grid-template-columns:1fr;

    }

    .form-grid{

        grid-template-columns:1fr;

    }

}


/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
  
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.container{
    width:90%;
    max-width:1280px;
    margin:auto;
}

/* HERO */

.hero{
    min-height:100vh;
    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=1600&auto=format&fit=crop') center/cover;
    display:flex;
    align-items:center;
    padding:140px 0 100px;
}

.hero-content{
    max-width:760px;
    animation:fadeUp 1.2s ease;
}

.tag{
    display:inline-block;
    padding:12px 22px;
    border-radius:40px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.12);
    margin-bottom:25px;
    font-size:14px;
}

.hero h1{
    font-size:74px;
    line-height:1.1;
    margin-bottom:22px;
}

.hero p{
    color:#e5e5e5;
    font-size:18px;
    margin-bottom:35px;
}

.info-wrap{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:40px;
}

.info-box{
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(10px);
    padding:20px 24px;
    border-radius:16px;
}

.info-box span{
    display:block;
    color:#d8d8d8;
    font-size:13px;
}

.info-box strong{
    font-size:22px;
}

.btn{
    display:inline-block;
    background:#c89b53;
    color:#fff;
    padding:16px 34px;
    border-radius:40px;
    font-weight:600;
    transition:.35s;
}

.btn:hover{
    transform:translateY(-4px);
    background:#b8873d;
}

/* LISTINGS */

.listings-menu{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
    list-style:none;
    margin-top:45px;
}

.listings-menu li{
    padding:14px 22px;
    border-radius:40px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.1);
    transition:.3s;
    cursor:pointer;
}

.listings-menu li:hover{
    background:#c89b53;
}

/* SECTION */

.section{
    padding:110px 0;
}

/* WHITE SECTION */

.white-section{
    background:#fff;
    color:#111;
    position:relative;
    overflow:hidden;
}

.white-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(200,155,83,.08);
    border-radius:50%;
    top:-180px;
    right:-180px;
}

/* TITLE */

.title{
    text-align:center;
    margin-bottom:70px;
}

.title span{
    color:#c89b53;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:14px;
    font-weight:600;
}

.title h2{
    font-size:52px;
    margin-top:12px;
}

/* GRID */

.grid{
    display:grid;
    grid-template-columns:1.6fr .8fr;
    gap:45px;
}

/* GALLERY */

.gallery{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:20px;
    margin-bottom:35px;
}

.gallery img{
    border-radius:24px;
    height:100%;
    object-fit:cover;
    transition:1s;
}

.gallery img:hover{
    transform:scale(1.03);
}

.side-gallery{
    display:grid;
    gap:20px;
}

/* CARDS */

.card{
    background:#fff;
    border-radius:26px;
    padding:40px;
    box-shadow:0 10px 40px rgba(0,0,0,.07);
    margin-bottom:35px;
    animation:floatCard 6s ease-in-out infinite;
}

.card h3{
    font-size:38px;
    margin-bottom:18px;
    color:#102e22;
}

.card p{
    color:#555;
    margin-bottom:15px;
}

/* FEATURES */

.feature-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:35px;
}

.feature-box{
    background:#f4f7f5;
    padding:22px;
    border-radius:16px;
    transition:.35s;
}

.feature-box:hover{
    transform:translateY(-5px);
    background:#e8f0eb;
}

.feature-box strong{
    display:block;
    margin-bottom:5px;
    color:#102e22;
}

/* AMENITIES */

.amenities{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:25px;
}

.amenity{
    background:#f4f7f5;
    padding:18px;
    border-radius:14px;
    display:flex;
    align-items:center;
    gap:12px;
    transition:.35s;
}

.amenity:hover{
    transform:translateY(-4px);
}

.amenity i{
    color:#c89b53;
    font-size:18px;
}

/* CONSULT */

.consult{
    position:sticky;
    top:120px;
    background:#102e22;
    border-radius:26px;
    padding:40px;
    color:#fff;
    box-shadow:0 20px 45px rgba(0,0,0,.18);
}

.consult h3{
    font-size:34px;
    margin-bottom:14px;
}

.consult p{
    color:#d9e2dc;
    margin-bottom:28px;
}

.form-group{
    margin-bottom:18px;
}

.input{
    width:100%;
    border:none;
    border-radius:14px;
    padding:17px 18px;
    font-family:'Cormorant Garamond',serif;
    font-size:15px;
}

textarea.input{
    min-height:130px;
    resize:none;
}

.submit{
    width:100%;
    border:none;
    cursor:pointer;
}

/* HIGHLIGHTS */

.highlight-section{
    background:#102e22;
}

.highlight-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.highlight-box{
    background:#163d2d;
    border-radius:24px;
    padding:35px;
    text-align:center;
    transition:.4s;
}

.highlight-box:hover{
    transform:translateY(-10px);
}

.highlight-box i{
    width:75px;
    height:75px;
    border-radius:50%;
    background:#c89b53;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto auto 20px;
    font-size:30px;
}

.highlight-box h4{
    font-size:24px;
    margin-bottom:10px;
}

.highlight-box p{
    color:#d9e2dc;
}

/* ANIMATION */

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(50px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes floatCard{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-6px);
    }
    100%{
        transform:translateY(0px);
    }
}

/* MOBILE */

@media(max-width:992px){

    .grid{
        grid-template-columns:1fr;
    }

    .consult{
        position:relative;
        top:0;
    }

}

@media(max-width:768px){

    .hero{
        text-align:center;
    }

    .hero h1{
        font-size:48px;
    }

    .gallery{
        grid-template-columns:1fr;
    }

    .feature-grid,
    .amenities{
        grid-template-columns:1fr;
    }

    .title h2{
        font-size:38px;
    }

}


/* =========================
   MORE DETAILS BUTTON
========================= */

.more-details-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#0599e5;
    color:#fff;
    padding:18px 34px;
    border-radius:60px;
    font-size:15px;
    font-weight:600;
    text-decoration:none;
    position:relative;
    overflow:hidden;
    transition:.4s ease;
    box-shadow:0 18px 40px rgba(5,153,229,.28);
    animation:moreDetailsFloat 3s ease-in-out infinite;
}

/* ICON */

.more-details-btn i{
    transition:.35s;
}

/* HOVER */

.more-details-btn:hover{
    transform:translateY(-6px) scale(1.02);
    box-shadow:0 25px 55px rgba(5,153,229,.38);
    background:#0488cc;
}

.more-details-btn:hover i{
    transform:translateX(6px);
}

/* SHINE EFFECT */

.more-details-btn::before{
    content:'';
    position:absolute;
    top:0;
    left:-120%;
    width:120%;
    height:100%;
    background:
    linear-gradient(
    120deg,
    rgba(255,255,255,0),
    rgba(255,255,255,.28),
    rgba(255,255,255,0)
    );
    transition:.7s;
}

.more-details-btn:hover::before{
    left:120%;
}

/* FLOAT ANIMATION */

@keyframes moreDetailsFloat{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-4px);
    }

    100%{
        transform:translateY(0px);
    }

}


/* =========================
   PREMIUM HERO SECTION
========================= */

.spxhero-section{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    padding:140px 0 100px;
    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.6)),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=1800&auto=format&fit=crop')
    center/cover no-repeat;
}

/* OVERLAY */

.spxhero-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(135deg,
    rgba(16,46,34,.75),
    rgba(0,0,0,.45));
}

.spxhero-glow{
    position:absolute;
    width:700px;
    height:700px;
    border-radius:50%;
    background:rgba(200,155,83,.12);
    filter:blur(100px);
    top:-250px;
    right:-180px;
    animation:spxheroGlow 8s ease-in-out infinite;
}

/* CONTAINER */

.spxhero-container{
    position:relative;
    z-index:2;
    width:90%;
    max-width:1280px;
    margin:auto;
}

.spxhero-content{
    max-width:820px;
    animation:spxheroFadeUp 1.2s ease;
}

/* TAG */

.spxhero-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.12);
    backdrop-filter:blur(14px);
    padding:14px 24px;
    border-radius:50px;
    margin-bottom:28px;
    color:#fff;
    font-size:14px;
    font-weight:500;
}

.spxhero-tag i{
    color:#c89b53;
}

/* TITLE */

.spxhero-content h1{
    font-size:84px;
    line-height:1;
    font-weight:700;
    color:#fff;
    margin-bottom:28px;
    letter-spacing:-2px;
}

/* DESCRIPTION */

.spxhero-content p{
    font-size:18px;
    line-height:1.9;
    color:#e2e2e2;
    max-width:760px;
    margin-bottom:45px;
}

/* STATS */

.spxhero-stats{
    display:flex;
    gap:22px;
    flex-wrap:wrap;
    margin-bottom:45px;
}

.spxhero-stat-box{
    display:flex;
    align-items:center;
    gap:18px;
    padding:22px 24px;
    border-radius:24px;
    background:rgba(255,255,255,.10);
    backdrop-filter:blur(14px);
    border:1px solid rgba(255,255,255,.08);
    transition:.4s;
}

.spxhero-stat-box:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,.16);
}

.spxhero-stat-icon{
    width:62px;
    height:62px;
    border-radius:18px;
    background:linear-gradient(135deg,#c89b53,#e2c178);
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 12px 28px rgba(200,155,83,.28);
}

.spxhero-stat-icon i{
    color:#fff;
    font-size:24px;
}

.spxhero-stat-box span{
    display:block;
    color:#d8d8d8;
    font-size:13px;
}

.spxhero-stat-box h3{
    color:#fff;
    font-size:24px;
    margin-top:3px;
}

/* BUTTONS */

.spxhero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-bottom:50px;
}

.spxhero-btn-primary{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#c89b53;
    color:#fff;
    padding:18px 34px;
    border-radius:50px;
    font-weight:600;
    transition:.35s;
    text-decoration:none;
}

.spxhero-btn-primary:hover{
    transform:translateY(-5px);
    background:#b88943;
}

.spxhero-btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:18px 34px;
    border-radius:50px;
    border:1px solid rgba(255,255,255,.16);
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(12px);
    color:#fff;
    font-weight:500;
    transition:.35s;
    text-decoration:none;
}

.spxhero-btn-secondary:hover{
    background:rgba(255,255,255,.16);
}

/* MENU */

.spxhero-menu-wrap{
    margin-top:10px;
}

.spxhero-menu-title{
    color:#c89b53;
    margin-bottom:18px;
    font-size:14px;
    letter-spacing:1px;
    text-transform:uppercase;
    font-weight:600;
}

.spxhero-menu{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    list-style:none;
}

.spxhero-menu li{

    display:flex;
    align-items:center;
    gap:10px;
    padding:16px 24px;
    border-radius:50px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(14px);
    color:#fff;
    transition:.35s;
    cursor:pointer;
}

.spxhero-menu li i{
    color:#c89b53;
}

.spxhero-menu li:hover,
.spxhero-menu li.active{
    background:#c89b53;
    transform:translateY(-4px);
}

.spxhero-menu li:hover i,
.spxhero-menu li.active i{
    color:#fff;
}

/* ANIMATIONS */

@keyframes spxheroFadeUp{

    from{
        opacity:0;
        transform:translateY(60px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

@keyframes spxheroGlow{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.1);
    }

    100%{
        transform:scale(1);
    }

}

/* MOBILE */

@media(max-width:992px){

    .spxhero-content h1{
        font-size:62px;
    }

}

@media(max-width:768px){

    .spxhero-section{
        text-align:center;
    }

    .spxhero-content h1{
        font-size:46px;
    }

    .spxhero-stats{
        justify-content:center;
    }

    .spxhero-buttons{
        justify-content:center;
    }

    .spxhero-menu{
        justify-content:center;
    }

}

html{
    scroll-behavior:smooth;
}


/* SECTION */

.contact-section{
    width:100%;
    min-height:100vh;

    background:#0f2d21;

    display:flex;
	color:#FFFFFF;
    align-items:center;
    justify-content:center;

    padding:80px 20px;

    box-sizing:border-box;
}

/* FORM BOX */

.contact-form-box{

    width:100%;
    max-width:700px;

    background:#ffffff;

    border-radius:30px;

    padding:45px;

    box-sizing:border-box;

    box-shadow:0 20px 60px rgba(0,0,0,0.25);
}

/* FORM */

.contact-form{
    width:100%;
}

/* ROW */

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

/* GROUP */

.form-group{
    width:100%;
    margin-bottom:22px;
}

/* LABEL */

.form-group label{
    display:block;

    font-size:15px;
    font-weight:600;

    color:#fff;

    margin-bottom:10px;
}

/* INPUTS */

.form-group input,
.form-group textarea,
.form-group select{

    width:100%;

    height:58px;

    background:#ffffff;

    border:1px solid #d8d8d8;

    border-radius:14px;

    padding:0 18px;

    font-size:15px;

    color:#111111;

    box-sizing:border-box;

    outline:none;

    transition:0.3s ease;
}

/* PLACEHOLDER */

.form-group input::placeholder,
.form-group textarea::placeholder{
    color:#999999;
}

/* TEXTAREA */

.form-group textarea{

    height:160px;

    padding-top:18px;

    resize:none;
}

/* SELECT */

.form-group select{

    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;

    cursor:pointer;

    padding-right:55px;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%230599e5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 8 9 11 12 8'/%3E%3C/svg%3E");

    background-repeat:no-repeat;

    background-position:right 18px center;
}

/* OPTIONS */

.form-group select option{
    color:#111111;
    background:#ffffff;
}

/* FOCUS */

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{

    border-color:#0599e5;

    box-shadow:0 0 0 4px rgba(5,153,229,0.12);
}

/* BUTTON */

.submit-btn{

    width:100%;

    height:60px;

    border:none;

    border-radius:14px;

    background:#0599e5;

    color:#ffffff;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    transition:0.3s ease;
}

.submit-btn:hover{

    background:#0287cb;

    transform:translateY(-2px);
}

/* MOBILE */

@media(max-width:768px){

    .form-row{
        grid-template-columns:1fr;
    }

    .contact-form-box{
        padding:30px 20px;
    }
}


/* =========================
   PROPERTY DETAILS SECTION
========================= */

.spxdetails-section{
    padding:120px 0;
    background:#f7f9f8;
    position:relative;
    overflow:hidden;
}

.spxdetails-container{
    width:90%;
    max-width:1280px;
    margin:auto;
}

/* HEADING */

.spxdetails-heading{
    text-align:center;
    max-width:760px;
    margin:auto;
    margin-bottom:80px;
}

.spxdetails-heading span{
    color:#c89b53;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:13px;
    font-weight:600;
}

.spxdetails-heading h2{
    font-size:58px;
    color:#102e22;
    margin:18px 0;
    line-height:1.1;
}

.spxdetails-heading p{
    color:#555;
    font-size:17px;
    line-height:1.8;
}

/* GRID */

.spxdetails-grid{
    display:grid;
    grid-template-columns:1.6fr .8fr;
    gap:45px;
}

/* GALLERY */

.spxdetails-gallery{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:20px;
    margin-bottom:35px;
}

.spxdetails-main-image,
.spxdetails-small-image{
    overflow:hidden;
    border-radius:28px;
}

.spxdetails-main-image img,
.spxdetails-small-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:1.2s;
}

.spxdetails-main-image:hover img,
.spxdetails-small-image:hover img{
    transform:scale(1.08);
}

.spxdetails-side-images{
    display:grid;
    gap:20px;
}

/* CARD */

.spxdetails-card{
    background:#fff;
    border-radius:30px;
    padding:42px;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    margin-bottom:35px;
    animation:spxdetailsFloat 5s ease-in-out infinite;
}

.spxdetails-card-top{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:28px;
}

.spxdetails-icon{
    width:80px;
    height:80px;
    border-radius:24px;
    background:linear-gradient(135deg,#c89b53,#e2bf72);
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 15px 35px rgba(200,155,83,.3);
}

.spxdetails-icon i{
    color:#fff;
    font-size:32px;
}

.spxdetails-card-top h3{
    font-size:34px;
    color:#102e22;
    margin-bottom:5px;
}

.spxdetails-card-top span{
    color:#888;
    font-size:14px;
}

.spxdetails-card p{
    color:#555;
    line-height:1.9;
}

/* INFO GRID */

.spxdetails-info-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:35px;
}

.spxdetails-info-box{
    background:#f4f7f5;
    border-radius:20px;
    padding:26px;
    transition:.4s;
}

.spxdetails-info-box:hover{
    transform:translateY(-8px);
    background:#edf4ef;
}

.spxdetails-info-box i{
    color:#c89b53;
    font-size:24px;
    margin-bottom:16px;
}

.spxdetails-info-box h4{
    color:#102e22;
    margin-bottom:6px;
    font-size:18px;
}

.spxdetails-info-box p{
    color:#666;
    font-size:15px;
}

/* AMENITIES */

.spxdetails-amenities{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:30px;
}

.spxdetails-amenity{
    background:#f4f7f5;
    border-radius:18px;
    padding:20px;
    display:flex;
    align-items:center;
    gap:14px;
    transition:.35s;
}

.spxdetails-amenity:hover{
    transform:translateX(8px);
}

.spxdetails-amenity i{
    color:#c89b53;
    font-size:20px;
}

.spxdetails-amenity span{
    color:#102e22;
    font-weight:500;
}

/* CONSULT */

.spxdetails-consult{
    position:sticky;
    top:120px;
    background:linear-gradient(135deg,#102e22,#163d2d);
    border-radius:30px;
    padding:45px;
    color:#fff;
    overflow:hidden;
    box-shadow:0 20px 45px rgba(0,0,0,.2);
}

.spxdetails-consult::before{
    content:'';
    position:absolute;
    width:280px;
    height:280px;
    border-radius:50%;
    background:rgba(255,255,255,.04);
    top:-120px;
    right:-120px;
}

.spxdetails-consult-icon{
    width:90px;
    height:90px;
    border-radius:24px;
    background:linear-gradient(135deg,#c89b53,#e7c982);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:30px;
}

.spxdetails-consult-icon i{
    font-size:36px;
    color:#fff;
}

.spxdetails-consult h3{
    font-size:38px;
    margin-bottom:18px;
}

.spxdetails-consult p{
    color:#d7e5dc;
    margin-bottom:30px;
    line-height:1.9;
}

/* FORM */

.spxdetails-form-group{
    margin-bottom:18px;
}

.spxdetails-input{
    width:100%;
    border:none;
    border-radius:16px;
    padding:18px;
     font-family:'Cormorant Garamond',serif;
    font-size:15px;
}

textarea.spxdetails-input{
    min-height:140px;
    resize:none;
}

.spxdetails-btn{
    width:100%;
    border:none;
    padding:18px;
    border-radius:50px;
    background:#c89b53;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.35s;
}

.spxdetails-btn:hover{
    background:#b98a42;
    transform:translateY(-4px);
}

/* ANIMATION */

@keyframes spxdetailsFloat{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-6px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* MOBILE */

@media(max-width:992px){

    .spxdetails-grid{
        grid-template-columns:1fr;
    }

    .spxdetails-consult{
        position:relative;
        top:0;
    }

}

@media(max-width:768px){

    .spxdetails-gallery{
        grid-template-columns:1fr;
    }

    .spxdetails-info-grid,
    .spxdetails-amenities{
        grid-template-columns:1fr;
    }

    .spxdetails-heading h2{
        font-size:40px;
    }

    .spxdetails-card{
        padding:30px;
    }

}
/* =========================
   CORPORATE HIGHLIGHTS
========================= */

.spxcorp-section{
    position:relative;
    padding:120px 0;
    background:
    linear-gradient(135deg,#0c241b 0%,#102e22 50%,#163d2d 100%);
    overflow:hidden;
}

.spxcorp-container{
    width:90%;
    max-width:1280px;
    margin:auto;
}

/* HEADING */

.spxcorp-heading{
    max-width:760px;
    margin:auto;
    text-align:center;
    margin-bottom:80px;
}

.spxcorp-subtitle{
    display:inline-block;
    color:#c89b53;
    letter-spacing:2px;
    font-size:13px;
    font-weight:600;
    margin-bottom:18px;
}

.spxcorp-heading h2{
    font-size:58px;
    line-height:1.1;
    color:#fff;
    margin-bottom:22px;
    font-weight:700;
}

.spxcorp-heading p{
    color:#dbe5df;
    font-size:17px;
    line-height:1.8;
}

/* GRID */

.spxcorp-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:32px;
}

/* CARD */

.spxcorp-card{
    position:relative;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:28px;
    padding:38px;
    backdrop-filter:blur(16px);
    overflow:hidden;
    transition:.45s ease;
}

.spxcorp-card:hover{
    transform:translateY(-12px);
    border-color:rgba(200,155,83,.35);
    box-shadow:0 25px 60px rgba(0,0,0,.25);
}

/* TOP */

.spxcorp-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:35px;
}

/* ICON */

.spxcorp-icon{
    width:82px;
    height:82px;
    border-radius:22px;
    background:
    linear-gradient(135deg,#c89b53,#e8c97d);
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 15px 40px rgba(200,155,83,.28);
}

.spxcorp-icon i{
    color:#fff;
    font-size:34px;
}

/* NUMBER */

.spxcorp-number{
    font-size:52px;
    font-weight:700;
    color:rgba(255,255,255,.08);
    line-height:1;
}

/* CONTENT */

.spxcorp-card h3{
    font-size:28px;
    color:#fff;
    line-height:1.3;
    margin-bottom:16px;
    font-weight:600;
}

.spxcorp-card p{
    color:#d7e3dc;
    font-size:15px;
    line-height:1.9;
}

/* LINE */

.spxcorp-line{
    width:70px;
    height:4px;
    background:#c89b53;
    border-radius:20px;
    margin-top:28px;
    transition:.4s;
}

.spxcorp-card:hover .spxcorp-line{
    width:120px;
}

/* BACKGROUND GLOW */

.spxcorp-card::before{
    content:'';
    position:absolute;
    width:240px;
    height:240px;
    border-radius:50%;
    background:rgba(200,155,83,.08);
    top:-120px;
    right:-120px;
    filter:blur(10px);
}

/* MOBILE */

@media(max-width:768px){

    .spxcorp-heading h2{
        font-size:40px;
    }

    .spxcorp-card{
        padding:30px;
    }

}


/* =========================================================
   CORPORATE FOOTER
========================================================= */

.corporate-footer{
    position:relative;

    background:#ffffff;

    padding-top:0;

    overflow:hidden;
}


/* =========================================================
   TOP BORDER
========================================================= */

.footer-top-border{
    width:100%;
    height:5px;

    background:
    linear-gradient(
    90deg,
    #0d2c1f,
    #16a36a,
    #0d2c1f
    );
}


/* =========================================================
   WRAPPER
========================================================= */

.footer-wrapper{
    display:grid;

    grid-template-columns:
    1.4fr
    1fr
    1fr
    1fr;

    gap:60px;

    padding:90px 0 60px;
}


/* =========================================================
   LOGO
========================================================= */

.footer-logo{
    display:inline-block;

    font-size:42px;
    font-weight:800;

    color:#0d2c1f;

    text-decoration:none;

    margin-bottom:22px;
}

.footer-logo span{
    color:#17b26a;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.footer-description{
    max-width:360px;

    font-size:15px;
    line-height:1.9;

    color:#5c6b63;

    margin-bottom:35px;
}


/* =========================================================
   SOCIALS
========================================================= */

.footer-socials{
    display:flex;
    gap:14px;
}

.footer-social{
    width:46px;
    height:46px;

    border-radius:14px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#f4f7f5;

    color:#0d2c1f;

    transition:0.4s ease;

    text-decoration:none;
}

.footer-social:hover{
    background:#0d2c1f;

    color:#fff;

    transform:translateY(-5px);

    box-shadow:
    0 15px 30px rgba(13,44,31,0.15);
}


/* =========================================================
   TITLES
========================================================= */

.footer-title{
    font-size:18px;
    font-weight:700;

    color:#0d2c1f;

    margin-bottom:28px;

    position:relative;
}

.footer-title::after{
    content:"";

    position:absolute;

    left:0;
    bottom:-10px;

    width:40px;
    height:3px;

    border-radius:10px;

    background:#17b26a;
}


/* =========================================================
   LINKS
========================================================= */

.footer-links{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.footer-links a{
    color:#5c6b63;

    text-decoration:none;

    font-size:15px;

    transition:0.3s ease;
}

.footer-links a:hover{
    color:#17b26a;

    transform:translateX(6px);
}


/* =========================================================
   CONTACT ITEMS
========================================================= */

.footer-contact-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.footer-contact-item{
    display:flex;
    align-items:center;
    gap:12px;

    color:#5c6b63;

    font-size:15px;
}

.footer-contact-item span{
    width:38px;
    height:38px;

    border-radius:12px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#f4f7f5;

    font-size:16px;
}


/* =========================================================
   BOTTOM
========================================================= */

.footer-bottom{
    border-top:1px solid #e8eeea;

    padding:28px 0;

    display:flex;
    align-items:center;
    justify-content:space-between;

    flex-wrap:wrap;

    gap:20px;
}

.footer-copy{
    color:#6a7a72;

    font-size:14px;
}

.footer-bottom-links{
    display:flex;
    gap:25px;
}

.footer-bottom-links a{
    text-decoration:none;

    color:#6a7a72;

    font-size:14px;

    transition:0.3s ease;
}

.footer-bottom-links a:hover{
    color:#17b26a;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1100px){

    .footer-wrapper{
        grid-template-columns:
        1fr
        1fr;
    }

}


@media(max-width:768px){

    .footer-wrapper{
        grid-template-columns:1fr;

        gap:50px;

        padding:70px 0 50px;
    }

    .footer-logo{
        font-size:36px;
    }

    .footer-bottom{
        flex-direction:column;

        text-align:center;
    }

    .footer-bottom-links{
        flex-wrap:wrap;
        justify-content:center;
    }

}