/* =========================================
   GLOBAL RESET + PREMIUM FOUNDATION
========================================= */

:root{

    --primary:#0f766e;
    --primary-dark:#0a4f49;

    --secondary:#14b8a6;
    --accent:#99f6e4;

    --dark:#062925;
    --text:#183630;

    --light:#f6fffd;
    --white:#ffffff;

    --border:
        rgba(15,118,110,0.08);

    --shadow:
        0 20px 60px rgba(15,118,110,0.10);

    --radius:24px;

}

/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;

    box-sizing:border-box;
}

/* =========================
   HTML
========================= */

html{
    scroll-behavior:smooth;

    overflow-x:hidden;
}

/* =========================
   BODY
========================= */

body{

    font-family:'Cairo',sans-serif;

    direction:rtl;

    color:var(--text);

    background:
        linear-gradient(
            to bottom,
            #f9fffe,
            #f1fffb
        );

    overflow-x:hidden;

    text-rendering:optimizeLegibility;

    -webkit-font-smoothing:antialiased;
}

/* =========================
   SELECTION
========================= */

::selection{

    background:
        rgba(20,184,166,0.25);

    color:var(--dark);
}

/* =========================
   LINKS
========================= */

a{
    text-decoration:none;

    transition:.3s ease;
}

/* =========================
   LISTS
========================= */

ul{
    list-style:none;
}

/* =========================
   IMAGES
========================= */

img{
    max-width:100%;

    display:block;
}

/* =========================
   CONTAINER
========================= */

.container{

    width:85%;

    margin:auto;

    position:relative;
}

/* =========================
   SECTION SPACING
========================= */

section{
    position:relative;

    overflow:hidden;
}

/* =========================
   PREMIUM SCROLLBAR
========================= */

::-webkit-scrollbar{
    width:12px;
}

::-webkit-scrollbar-track{

    background:#dffcf5;
}

::-webkit-scrollbar-thumb{

    background:
        linear-gradient(
            to bottom,
            var(--primary),
            var(--secondary)
        );

    border-radius:50px;
}
/* =========================================
   PREMIUM HEADER
========================================= */

.header{

    position:fixed;

    top:0;
    right:0;

    width:100%;

    z-index:9999;

    padding:18px 0;

    background:
        rgba(255,255,255,0.82);

    backdrop-filter:blur(18px);

    border-bottom:
        1px solid rgba(15,118,110,0.08);

    transition:
        padding .35s ease,
        background .35s ease,
        box-shadow .35s ease;
}

/* Scroll Effect */

.header.scrolled{

    padding:14px 0;

    background:
        rgba(255,255,255,0.92);

    box-shadow:
        0 12px 40px rgba(0,0,0,0.06);
}

/* =========================
   CONTAINER
========================= */

.header .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;
}

/* =========================
   LOGO
========================= */

.logo{

    display:flex;

    align-items:center;

    gap:15px;
}

.logo img{

    width:68px;
    height:68px;

    object-fit:cover;

    border-radius:22px;

    border:
        3px solid rgba(20,184,166,0.14);

    box-shadow:
        0 12px 30px rgba(15,118,110,0.14);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.logo:hover img{

    transform:
        rotate(-3deg)
        scale(1.04);

    box-shadow:
        0 18px 35px rgba(15,118,110,0.20);
}

/* =========================
   LOGO TEXT
========================= */

.logo-text h2{

    color:var(--dark);

    font-size:18px;

    font-weight:900;

    line-height:1.2;
}

.logo-text p{

    color:#5f756f;

    font-size:14px;

    font-weight:600;

    margin-top:4px;
}

/* =========================
   NAV LINKS
========================= */

.nav-links{

    display:flex;

    align-items:center;

    gap:34px;
}

.nav-links li a{

    position:relative;

    color:var(--text);

    font-size:17px;

    font-weight:800;

    letter-spacing:.2px;

    transition:
        color .3s ease;
}

/* Animated Line */

.nav-links li a::after{

    content:"";

    position:absolute;

    right:0;
    bottom:-10px;

    width:0;
    height:3px;

    border-radius:30px;

    background:
        linear-gradient(
            to left,
            var(--secondary),
            var(--primary)
        );

    transition:
        width .35s ease;
}

.nav-links li a:hover,
.nav-links li a.active{

    color:var(--primary);
}

.nav-links li a:hover::after,
.nav-links li a.active::after{

    width:100%;
}

/* =========================
   HEADER BUTTON
========================= */

.header-btn{

    height:58px;

    padding:0 24px;

    border-radius:18px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    font-size:17px;

    font-weight:800;

    box-shadow:
        0 15px 35px rgba(20,184,166,0.24);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.header-btn i{

    font-size:18px;
}

.header-btn:hover{

    transform:
        translateY(-4px)
        scale(1.02);

    box-shadow:
        0 18px 40px rgba(20,184,166,0.30);
}

/* =========================
   MENU TOGGLE
========================= */

.menu-toggle{

    display:none;

    width:54px;
    height:54px;

    border-radius:16px;

    align-items:center;
    justify-content:center;

    cursor:pointer;

    background:
        rgba(20,184,166,0.08);

    border:
        1px solid rgba(20,184,166,0.10);

    transition:
        transform .3s ease,
        background .3s ease;
}

.menu-toggle:hover{

    transform:scale(1.05);

    background:
        rgba(20,184,166,0.14);
}

.menu-toggle i{

    color:var(--primary);

    font-size:24px;
}

/* =========================
   HERO
========================= */

.hero {
    position: relative;
    min-height: 100vh;
    background: url('/images/غرف\ نوم.png') center center/cover no-repeat;
    padding: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    z-index: 1000;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 34, 74, 0.72);
}

/* =========================
   HERO CONTENT
========================= */

.hero-content{

    position:relative;

    z-index:5;

    width:100%;

    max-width:1250px;

    color:#fff;
}

/* =========================
   HEADING
========================= */

.hero-content h1{

    font-size:
        clamp(48px,7vw,96px);

    line-height:1.05;

    font-weight:900;

    letter-spacing:-2px;

    margin-bottom:30px;

    text-shadow:
        0 10px 30px rgba(0,0,0,0.40);
}

/* Gradient Text */

.hero-content h1 span{

    background:
        linear-gradient(
            to left,
            #ffffff,
            #99f6e4
        );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* =========================
   DESCRIPTION
========================= */

.hero-content p{

    max-width:980px;

    margin:auto;

    font-size:
        clamp(19px,2vw,28px);

    line-height:2;

    color:
        rgba(255,255,255,0.88);

    margin-bottom:20px;

    text-shadow:
        0 4px 15px rgba(0,0,0,0.18);
}

/* =========================
   BUTTONS WRAPPER
========================= */

.hero-buttons{

    display:flex;

    justify-content:center;
    align-items:center;

    gap:24px;

    flex-wrap:wrap;

    margin-top:50px;
}

/* =========================
   BUTTON STYLE
========================= */

.btn{

    position:relative;

    min-width:250px;

    height:74px;

    border-radius:22px;

    display:inline-flex;

    align-items:center;
    justify-content:center;

    gap:12px;

    overflow:hidden;

    color:#fff;

    font-size:21px;

    font-weight:800;

    backdrop-filter:blur(14px);

    box-shadow:
        0 20px 40px rgba(0,0,0,0.18);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.btn i{

    font-size:23px;
}

/* Shine Effect */

.btn::before{

    content:"";

    position:absolute;

    top:0;
    right:-120%;

    width:100%;
    height:100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.25),
            transparent
        );

    transition:.8s ease;
}

.btn:hover::before{

    right:120%;
}

.btn:hover{

    transform:
        translateY(-6px)
        scale(1.03);
}

/* =========================
   WHATSAPP BUTTON
========================= */

.whatsapp-btn{

    background:
        linear-gradient(
            135deg,
            #16c172,
            #0f9f5d
        );

    box-shadow:
        0 18px 40px rgba(15,193,114,0.28);
}

/* =========================
   CALL BUTTON
========================= */

.call-btn{

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );

    box-shadow:
        0 18px 40px rgba(20,184,166,0.28);
}

/* =========================
   STATS
========================= */

.stats{

    display:flex;

    justify-content:center;

    gap:26px;

    flex-wrap:wrap;

    margin-top:75px;
}

/* =========================
   STAT BOX
========================= */

.stat-box{

    width:220px;

    padding:34px 22px;

    border-radius:28px;

    background:
        rgba(255,255,255,0.10);

    border:
        1px solid rgba(255,255,255,0.14);

    backdrop-filter:blur(18px);

    box-shadow:
        0 15px 35px rgba(0,0,0,0.18);

    transition:
        transform .35s ease,
        background .35s ease,
        border .35s ease;
}

.stat-box:hover{

    transform:
        translateY(-10px);

    background:
        rgba(255,255,255,0.15);

    border:
        1px solid rgba(255,255,255,0.22);
}

/* =========================
   STAT NUMBER
========================= */

.stat-box h3{

    font-size:56px;

    font-weight:900;

    margin-bottom:12px;

    color:#fff;

    line-height:1;
}

/* =========================
   STAT TEXT
========================= */

.stat-box span{

    font-size:18px;

    line-height:1.8;

    color:
        rgba(255,255,255,0.84);
}

/* =========================================
   PREMIUM SERVICES SECTION
========================================= */

.services-section{

    position:relative;

    padding:150px 0;

    overflow:hidden;

    background:
        linear-gradient(
            to bottom,
            #f8fffd,
            #eefffa
        );
}

/* Decorative Glow */

.services-section::before{

    content:"";

    position:absolute;

    width:700px;
    height:700px;

    top:-280px;
    right:-180px;

    border-radius:50%;

    background:
        radial-gradient(
            rgba(20,184,166,0.10),
            transparent 70%
        );

    pointer-events:none;
}

.services-section::after{

    content:"";

    position:absolute;

    width:550px;
    height:550px;

    bottom:-200px;
    left:-120px;

    border-radius:50%;

    background:
        radial-gradient(
            rgba(153,246,228,0.14),
            transparent 70%
        );

    pointer-events:none;
}

/* =========================
   SECTION TITLE
========================= */

.section-title{

    position:relative;

    text-align:center;

    margin-bottom:90px;

    z-index:2;
}

/* =========================
   SUB TITLE
========================= */

.sub-title{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    gap:10px;

    padding:14px 30px;

    border-radius:60px;

    background:
        linear-gradient(
            135deg,
            rgba(20,184,166,0.12),
            rgba(153,246,228,0.18)
        );

    border:
        1px solid rgba(20,184,166,0.10);

    color:var(--primary);

    font-size:15px;

    font-weight:900;

    letter-spacing:.5px;

    margin-bottom:28px;

    box-shadow:
        0 10px 30px rgba(20,184,166,0.08);
}

/* =========================
   TITLE
========================= */

.section-title h2{

    font-size:
        clamp(42px,5vw,74px);

    line-height:1.25;

    color:var(--dark);

    font-weight:900;

    position:relative;

    margin-bottom:30px;
}

/* Gradient Line */

.section-title h2::after{

    content:"";

    position:absolute;

    bottom:-20px;
    right:50%;

    transform:translateX(50%);

    width:100px;
    height:6px;

    border-radius:50px;

    background:
        linear-gradient(
            to left,
            var(--secondary),
            var(--primary)
        );

    box-shadow:
        0 8px 20px rgba(20,184,166,0.20);
}

/* =========================
   DESCRIPTION
========================= */

.section-title p{

    max-width:980px;

    margin:
        42px auto 0;

    color:#5c736d;

    font-size:
        clamp(18px,2vw,24px);

    line-height:2;
}

/* =========================
   SERVICES GRID
========================= */

.services-grid{

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(330px,1fr));

    gap:34px;

    position:relative;

    z-index:2;
}

/* =========================
   SERVICE CARD
========================= */

.service-card{

    position:relative;

    padding:42px;

    border-radius:34px;

    overflow:hidden;

    background:
        rgba(255,255,255,0.85);

    backdrop-filter:blur(14px);

    border:
        1px solid rgba(20,184,166,0.10);

    box-shadow:
        0 20px 55px rgba(15,118,110,0.08);

    transition:
        transform .45s ease,
        box-shadow .45s ease,
        border .45s ease;
}

/* Gradient Hover Layer */

.service-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            145deg,
            rgba(20,184,166,0.06),
            transparent 45%
        );

    opacity:0;

    transition:.45s ease;
}

.service-card:hover::before{

    opacity:1;
}

/* Top Gradient Line */

.service-card::after{

    content:"";

    position:absolute;

    top:0;
    right:0;

    width:100%;
    height:6px;

    background:
        linear-gradient(
            to left,
            var(--secondary),
            var(--primary)
        );
}

/* Hover */

.service-card:hover{

    transform:
        translateY(-12px)
        rotate(-0.5deg);

    border:
        1px solid rgba(20,184,166,0.18);

    box-shadow:
        0 28px 65px rgba(15,118,110,0.14);
}

/* =========================
   SERVICE ICON
========================= */

.service-icon{

    width:100px;
    height:100px;

    border-radius:32px;

    display:flex;

    align-items:center;
    justify-content:center;

    margin-bottom:36px;

    position:relative;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );

    box-shadow:
        0 18px 40px rgba(20,184,166,0.24);

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}

.service-card:hover .service-icon{

    transform:
        rotate(-6deg)
        scale(1.08);

    box-shadow:
        0 24px 45px rgba(20,184,166,0.30);
}

.service-icon i{

    font-size:42px;

    color:#fff;
}

/* =========================
   SERVICE TITLE
========================= */

.service-card h3{

    font-size:34px;

    line-height:1.5;

    color:var(--dark);

    font-weight:900;

    margin-bottom:20px;
}

/* =========================
   SERVICE DESCRIPTION
========================= */

.service-card p{

    color:#61756f;

    font-size:19px;

    line-height:2;

    margin-bottom:36px;
}

/* =========================
   SERVICE FOOTER
========================= */

.service-footer{

    padding-top:24px;

    border-top:
        1px solid rgba(20,184,166,0.10);

    display:flex;

    align-items:center;
    justify-content:space-between;
}

/* Footer Text */

.service-footer span{

    color:var(--primary);

    font-size:17px;

    font-weight:800;
}

/* Footer Icon */

.service-footer i{

    color:var(--secondary);

    font-size:12px;
}

/* =========================================
   PREMIUM FLOATING BUTTONS
========================================= */

.floating-buttons{

    position:fixed;

    left:24px;
    bottom:28px;

    display:flex;

    flex-direction:column;

    gap:18px;

    z-index:999;
}

/* =========================
   BUTTON STYLE
========================= */

.float-btn{

    position:relative;

    width:72px;
    height:72px;

    border-radius:24px;

    display:flex;

    align-items:center;
    justify-content:center;

    overflow:hidden;

    color:#fff;

    font-size:30px;

    backdrop-filter:blur(14px);

    border:
        1px solid rgba(255,255,255,0.10);

    box-shadow:
        0 18px 40px rgba(0,0,0,0.18);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

/* Shine Effect */

.float-btn::before{

    content:"";

    position:absolute;

    top:0;
    right:-120%;

    width:100%;
    height:100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.22),
            transparent
        );

    transition:.8s ease;
}

.float-btn:hover::before{

    right:120%;
}

/* Hover */

.float-btn:hover{

    transform:
        translateY(-6px)
        scale(1.06);

    box-shadow:
        0 24px 45px rgba(0,0,0,0.24);
}

/* =========================
   WHATSAPP BUTTON
========================= */

.float-btn.whatsapp{

    background:
        linear-gradient(
            135deg,
            #18c978,
            #0f9e5d
        );

    box-shadow:
        0 18px 40px rgba(24,201,120,0.26);
}

/* Glow */

.float-btn.whatsapp::after{

    content:"";

    position:absolute;

    inset:-8px;

    border-radius:30px;

    border:
        2px solid rgba(24,201,120,0.18);

    animation:
        pulseGlow 2.2s infinite;
}

/* =========================
   CALL BUTTON
========================= */

.float-btn.call{

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );

    box-shadow:
        0 18px 40px rgba(20,184,166,0.24);
}

/* =========================
   ICON
========================= */

.float-btn i{

    position:relative;

    z-index:2;
}

/* =========================
   PULSE ANIMATION
========================= */

@keyframes pulseGlow{

    0%{

        transform:scale(1);

        opacity:1;
    }

    70%{

        transform:scale(1.12);

        opacity:0;
    }

    100%{

        transform:scale(1.12);

        opacity:0;
    }
}

/* =========================================
   PREMIUM WHY US SECTION
========================================= */

.why-us-section{

    position:relative;

    padding:150px 0;

    overflow:hidden;

    background:
        linear-gradient(
            135deg,
            #062925,
            #0f766e,
            #115e59
        );
}

/* =========================
   BACKGROUND GLOW
========================= */

.why-us-section::before{

    content:"";

    position:absolute;

    width:750px;
    height:750px;

    top:-320px;
    right:-180px;

    border-radius:50%;

    background:
        radial-gradient(
            rgba(153,246,228,0.10),
            transparent 70%
        );

    pointer-events:none;
}

.why-us-section::after{

    content:"";

    position:absolute;

    width:550px;
    height:550px;

    bottom:-220px;
    left:-120px;

    border-radius:50%;

    background:
        radial-gradient(
            rgba(20,184,166,0.14),
            transparent 70%
        );

    pointer-events:none;
}

/* =========================
   FLOATING SHAPES
========================= */

.shape{

    position:absolute;

    border-radius:50%;

    background:
        rgba(255,255,255,0.06);

    backdrop-filter:blur(10px);
}

.shape-1{

    width:280px;
    height:280px;

    top:-130px;
    left:-80px;
}

.shape-2{

    width:240px;
    height:240px;

    bottom:-110px;
    right:-70px;
}

/* =========================
   WHITE TITLE
========================= */

.white-title{

    position:relative;

    z-index:2;
}

.white-title h2,
.white-title p{

    color:#fff;
}

/* Gradient Line */

.white-title h2::after{

    background:
        linear-gradient(
            to left,
            #99f6e4,
            #14b8a6
        );

    box-shadow:
        0 8px 20px rgba(153,246,228,0.22);
}

/* =========================
   FEATURES GRID
========================= */

.features-grid{

    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:28px;

    margin-top:80px;

    position:relative;

    z-index:2;
}

/* =========================
   FEATURE CARD
========================= */

.feature-card{

    position:relative;

    padding:34px;

    border-radius:30px;

    overflow:hidden;

    background:
        rgba(255,255,255,0.08);

    border:
        1px solid rgba(255,255,255,0.12);

    backdrop-filter:blur(16px);

    display:flex;

    align-items:flex-start;

    gap:22px;

    transition:
        transform .45s ease,
        background .45s ease,
        border .45s ease,
        box-shadow .45s ease;
}

/* Gradient Hover Layer */

.feature-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            145deg,
            rgba(153,246,228,0.10),
            transparent 45%
        );

    opacity:0;

    transition:.45s ease;
}

.feature-card:hover::before{

    opacity:1;
}

/* Hover */

.feature-card:hover{

    transform:
        translateY(-12px);

    background:
        rgba(255,255,255,0.12);

    border:
        1px solid rgba(255,255,255,0.18);

    box-shadow:
        0 25px 50px rgba(0,0,0,0.16);
}

/* =========================
   FEATURE ICON
========================= */

.feature-icon{

    min-width:78px;
    height:78px;

    border-radius:24px;

    display:flex;

    align-items:center;
    justify-content:center;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.14),
            rgba(255,255,255,0.06)
        );

    border:
        1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 10px 25px rgba(0,0,0,0.10);

    transition:
        transform .35s ease;
}

.feature-card:hover .feature-icon{

    transform:
        rotate(-6deg)
        scale(1.05);
}

.feature-icon i{

    font-size:32px;

    color:#99f6e4;
}

/* =========================
   FEATURE CONTENT
========================= */

.feature-content{

    position:relative;

    z-index:2;
}

/* Title */

.feature-content h3{

    color:#fff;

    font-size:29px;

    line-height:1.5;

    margin-bottom:14px;

    font-weight:900;
}

/* Paragraph */

.feature-content p{

    color:
        rgba(255,255,255,0.80);

    font-size:18px;

    line-height:2;
}

/* =========================
   CTA WRAPPER
========================= */

.why-cta{

    text-align:center;

    margin-top:85px;

    position:relative;

    z-index:2;
}

/* =========================
   CTA BUTTON
========================= */

.cta-btn{

    position:relative;

    overflow:hidden;

    min-width:430px;

    height:78px;

    border-radius:24px;

    display:inline-flex;

    align-items:center;
    justify-content:center;

    gap:14px;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f2fffc
        );

    color:var(--primary);

    font-size:26px;

    font-weight:900;

    box-shadow:
        0 20px 45px rgba(0,0,0,0.18);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

/* Shine Effect */

.cta-btn::before{

    content:"";

    position:absolute;

    top:0;
    right:-120%;

    width:100%;
    height:100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.35),
            transparent
        );

    transition:.8s ease;
}

.cta-btn:hover::before{

    right:120%;
}

/* Hover */

.cta-btn:hover{

    transform:
        translateY(-6px)
        scale(1.02);

    box-shadow:
        0 26px 55px rgba(0,0,0,0.24);
}

/* Icon */

.cta-btn i{

    color:#0f766e;

    font-size:24px;
}

/* =========================================
   PREMIUM PORTFOLIO SECTION
========================================= */

.portfolio-section{

    position:relative;

    padding:150px 0;

    overflow:hidden;

    background:
        linear-gradient(
            to bottom,
            #f7fffd,
            #eefcf8
        );
}

/* Decorative Glow */

.portfolio-section::before{

    content:"";

    position:absolute;

    width:700px;
    height:700px;

    top:-280px;
    left:-180px;

    border-radius:50%;

    background:
        radial-gradient(
            rgba(20,184,166,0.10),
            transparent 70%
        );

    pointer-events:none;
}

.portfolio-section::after{

    content:"";

    position:absolute;

    width:520px;
    height:520px;

    bottom:-180px;
    right:-120px;

    border-radius:50%;

    background:
        radial-gradient(
            rgba(153,246,228,0.14),
            transparent 70%
        );

    pointer-events:none;
}

/* =========================
   GRID
========================= */

.portfolio-grid{

    display:grid;

    grid-template-columns:
        repeat(2,1fr);

    gap:34px;

    margin-top:80px;

    position:relative;

    z-index:2;
}

/* =========================
   CARD
========================= */

.portfolio-card{

    position:relative;

    min-height:460px;

    border-radius:34px;

    overflow:hidden;

    cursor:pointer;

    isolation:isolate;

    box-shadow:
        0 25px 60px rgba(0,0,0,0.08);

    transition:
        transform .45s ease,
        box-shadow .45s ease;
}

/* Hover */

.portfolio-card:hover{

    transform:
        translateY(-12px);

    box-shadow:
        0 35px 75px rgba(15,118,110,0.18);
}

/* =========================
   IMAGE
========================= */

.portfolio-card img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:
        transform 1s ease,
        filter .6s ease;
}

.portfolio-card:hover img{

    transform:scale(1.12);

    filter:
        brightness(1.05)
        saturate(1.1);
}

/* =========================
   OVERLAY
========================= */

.portfolio-overlay{

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            to top,
            rgba(6,41,37,0.94),
            rgba(6,41,37,0.18)
        );

    z-index:1;
}

/* =========================
   TAG
========================= */

.portfolio-tag{

    position:absolute;

    top:22px;
    right:22px;

    z-index:3;

    padding:12px 24px;

    border-radius:50px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );

    color:#fff;

    font-size:15px;

    font-weight:800;

    letter-spacing:.3px;

    box-shadow:
        0 14px 35px rgba(20,184,166,0.24);
}

/* =========================
   CONTENT
========================= */

.portfolio-content{

    position:absolute;

    right:30px;
    left:30px;
    bottom:30px;

    z-index:3;
}

/* Title */

.portfolio-content h3{

    color:#fff;

    font-size:42px;

    line-height:1.3;

    margin-bottom:12px;

    font-weight:900;

    text-shadow:
        0 4px 15px rgba(0,0,0,0.20);
}

/* Subtitle */

.portfolio-content span{

    color:
        rgba(255,255,255,0.82);

    font-size:18px;

    line-height:1.8;

    display:block;
}

/* =========================
   RATING
========================= */

.portfolio-rating{

    margin-top:22px;

    padding-top:18px;

    border-top:
        1px solid rgba(255,255,255,0.10);

    display:flex;

    align-items:center;
    justify-content:space-between;

    gap:15px;
}

/* Small Text */

.portfolio-rating small{

    color:#ffffff;

    font-size:16px;

    font-weight:600;
}

/* =========================
   STARS
========================= */

.stars{

    display:flex;

    align-items:center;

    gap:6px;
}

.stars i{

    color:#ffd84d;

    font-size:16px;

    text-shadow:
        0 2px 8px rgba(255,216,77,0.30);
}

/* =========================
   BOTTOM TEXT
========================= */

.portfolio-bottom-text{

    margin-top:55px;

    text-align:center;

    color:#5f756f;

    font-size:20px;

    line-height:2;
}

.portfolio-bottom-text strong{

    color:var(--primary);

    font-size:24px;

    font-weight:900;
}

/* =========================================
   PREMIUM CTA SECTION
========================================= */

.cta-section{

    position:relative;

    padding:150px 0;

    overflow:hidden;

    text-align:center;

    background:
        linear-gradient(
            135deg,
            #041f1c,
            #0b4d47,
            #0f766e
        );
}

/* =========================
   BACKGROUND GLOW
========================= */

.cta-section::before{

    content:"";

    position:absolute;

    width:850px;
    height:850px;

    top:-380px;
    right:-220px;

    border-radius:50%;

    background:
        radial-gradient(
            rgba(153,246,228,0.12),
            transparent 70%
        );

    pointer-events:none;
}

.cta-section::after{

    content:"";

    position:absolute;

    width:600px;
    height:600px;

    bottom:-240px;
    left:-140px;

    border-radius:50%;

    background:
        radial-gradient(
            rgba(20,184,166,0.18),
            transparent 70%
        );

    pointer-events:none;
}

/* =========================
   FLOATING SHAPES
========================= */

.cta-shape{

    position:absolute;

    border-radius:50%;

    background:
        rgba(255,255,255,0.06);

    backdrop-filter:blur(12px);
}

.cta-shape-1{

    width:240px;
    height:240px;

    top:-50px;
    right:22%;
}

.cta-shape-2{

    width:180px;
    height:180px;

    bottom:-60px;
    left:18%;
}

/* =========================
   CTA ICON
========================= */

.cta-icon{

    position:relative;

    z-index:2;

    width:100px;
    height:100px;

    margin:auto auto 38px;

    border-radius:32px;

    display:flex;

    align-items:center;
    justify-content:center;

    background:
        rgba(255,255,255,0.10);

    border:
        1px solid rgba(255,255,255,0.12);

    backdrop-filter:blur(18px);

    box-shadow:
        0 18px 40px rgba(0,0,0,0.14);
}

/* Icon */

.cta-icon i{

    color:#99f6e4;

    font-size:42px;
}

/* =========================
   HEADING
========================= */

.cta-section h2{

    position:relative;

    z-index:2;

    color:#fff;

    font-size:
        clamp(42px,6vw,78px);

    line-height:1.25;

    font-weight:900;

    margin-bottom:25px;

    text-shadow:
        0 8px 25px rgba(0,0,0,0.22);
}

/* =========================
   DESCRIPTION
========================= */

.cta-section p{

    position:relative;

    z-index:2;

    max-width:1000px;

    margin:
        0 auto 40px;

    color:
        rgba(255,255,255,0.82);

    font-size:
        clamp(19px,2vw,27px);

    line-height:2;
}

/* =========================
   PHONE
========================= */

.cta-phone{

    position:relative;

    z-index:2;

    margin-bottom:45px;
}

/* Phone Button */

.cta-phone a{

    position:relative;

    overflow:hidden;

    display:inline-flex;

    align-items:center;
    justify-content:center;

    gap:14px;

    min-width:310px;

    height:80px;

    border-radius:24px;

    background:
        rgba(255,255,255,0.10);

    border:
        1px solid rgba(255,255,255,0.14);

    backdrop-filter:blur(18px);

    color:#fff;

    font-size:38px;

    font-weight:900;

    box-shadow:
        0 20px 45px rgba(0,0,0,0.16);

    transition:
        transform .35s ease,
        background .35s ease;
}

/* Shine */

.cta-phone a::before{

    content:"";

    position:absolute;

    top:0;
    right:-120%;

    width:100%;
    height:100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.22),
            transparent
        );

    transition:.8s ease;
}

.cta-phone a:hover::before{

    right:120%;
}

.cta-phone a:hover{

    transform:
        translateY(-6px);

    background:
        rgba(255,255,255,0.14);
}

/* Icon */

.cta-phone i{

    color:#99f6e4;

    font-size:30px;
}

/* =========================
   BUTTONS WRAPPER
========================= */

.cta-buttons{

    position:relative;

    z-index:2;

    display:flex;

    align-items:center;
    justify-content:center;

    gap:22px;

    flex-wrap:wrap;

    margin-bottom:50px;
}

/* =========================
   CTA BUTTON
========================= */

.cta-main-btn{

    position:relative;

    overflow:hidden;

    min-width:290px;

    height:78px;

    border-radius:22px;

    display:flex;

    align-items:center;
    justify-content:center;

    gap:12px;

    font-size:27px;

    font-weight:900;

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

/* Shine Effect */

.cta-main-btn::before{

    content:"";

    position:absolute;

    top:0;
    right:-120%;

    width:100%;
    height:100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.20),
            transparent
        );

    transition:.8s ease;
}

.cta-main-btn:hover::before{

    right:120%;
}

/* Hover */

.cta-main-btn:hover{

    transform:
        translateY(-6px);

    box-shadow:
        0 20px 40px rgba(0,0,0,0.18);
}

/* =========================
   WHITE BUTTON
========================= */

.call-btn-white{

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f4fffd
        );

    color:var(--primary);
}

.call-btn-white i{

    color:var(--primary);
}

/* =========================
   FEATURES
========================= */

.cta-features{

    position:relative;

    z-index:2;

    display:flex;

    justify-content:center;
    align-items:center;

    gap:38px;

    flex-wrap:wrap;
}

/* Feature Item */

.cta-feature{

    display:flex;

    align-items:center;

    gap:12px;

    color:#fff;

    font-size:18px;

    font-weight:800;
}

/* Icon */

.cta-feature i{

    color:#99f6e4;

    font-size:18px;
}

/* =========================================
   PREMIUM FOOTER
========================================= */

.footer{

    position:relative;

    overflow:hidden;

    padding-top:110px;

    background:
        linear-gradient(
            135deg,
            #041f1c,
            #062925,
            #0b3d38
        );

    color:#fff;
}

/* =========================
   BACKGROUND GLOW
========================= */

.footer::before{

    content:"";

    position:absolute;

    width:700px;
    height:700px;

    top:-320px;
    right:-180px;

    border-radius:50%;

    background:
        radial-gradient(
            rgba(153,246,228,0.10),
            transparent 70%
        );

    pointer-events:none;
}

.footer::after{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    bottom:-180px;
    left:-120px;

    border-radius:50%;

    background:
        radial-gradient(
            rgba(20,184,166,0.12),
            transparent 70%
        );

    pointer-events:none;
}

/* =========================
   GRID
========================= */

.footer-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:
        1.2fr 1fr 1fr;

    gap:70px;

    padding-bottom:60px;
}

/* =========================
   FOOTER LOGO
========================= */

.footer-logo{

    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:30px;
}

/* Logo Image */

.footer-logo img{

    width:72px;
    height:72px;

    object-fit:cover;

    border-radius:24px;

    border:
        2px solid rgba(255,255,255,0.10);

    box-shadow:
        0 12px 30px rgba(0,0,0,0.18);
}

/* Logo Title */

.footer-logo h3{

    font-size:38px;

    font-weight:900;

    line-height:1.3;

    margin-bottom:4px;
}

/* Logo Subtitle */

.footer-logo span{

    color:#99f6e4;

    font-size:17px;

    font-weight:700;
}

/* =========================
   DESCRIPTION
========================= */

.footer-desc{

    color:
        rgba(255,255,255,0.74);

    font-size:21px;

    line-height:2;

    margin-bottom:38px;
}

/* =========================
   CONTACT LIST
========================= */

.footer-contact{

    display:flex;

    flex-direction:column;

    gap:18px;
}

/* Item */

.footer-contact li{

    display:flex;

    align-items:center;

    gap:14px;

    font-size:20px;

    color:#fff;
}

/* Icon */

.footer-contact li i{

    width:42px;
    height:42px;

    border-radius:14px;

    display:flex;

    align-items:center;
    justify-content:center;

    background:
        rgba(255,255,255,0.08);

    color:#99f6e4;

    font-size:16px;
}

/* Link */

.footer-contact li a{

    color:#fff;

    transition:.3s ease;
}

.footer-contact li a:hover{

    color:#99f6e4;
}

/* =========================
   FOOTER TITLE
========================= */

.footer-title{

    position:relative;

    font-size:34px;

    font-weight:900;

    padding-bottom:20px;

    margin-bottom:35px;
}

/* Gradient Line */

.footer-title::after{

    content:"";

    position:absolute;

    right:0;
    bottom:0;

    width:100px;
    height:4px;

    border-radius:30px;

    background:
        linear-gradient(
            to left,
            var(--secondary),
            var(--primary)
        );
}

/* =========================
   FOOTER LINKS
========================= */

.footer-links{

    display:flex;

    flex-direction:column;

    gap:20px;
}

/* Link */

.footer-links li a{

    position:relative;

    color:
        rgba(255,255,255,0.72);

    font-size:20px;

    padding-right:22px;

    transition:
        color .3s ease,
        transform .3s ease;
}

/* Dot */

.footer-links li a::before{

    content:"";

    position:absolute;

    right:0;
    top:50%;

    transform:translateY(-50%);

    width:8px;
    height:8px;

    border-radius:50%;

    background:#99f6e4;

    box-shadow:
        0 0 10px rgba(153,246,228,0.30);
}

/* Hover */

.footer-links li a:hover{

    color:#fff;

    transform:translateX(-6px);
}

/* =========================
   AREAS TEXT
========================= */

.areas-text{

    color:
        rgba(255,255,255,0.72);

    font-size:19px;

    line-height:2;

    margin-bottom:28px;
}

/* =========================
   AREAS GRID
========================= */

.areas-grid{

    display:grid;

    grid-template-columns:
        repeat(2,1fr);

    gap:20px;
}

/* =========================
   WHATSAPP BUTTON
========================= */

.footer-whatsapp-btn{

    position:relative;

    overflow:hidden;

    margin-top:38px;

    width:100%;

    height:74px;

    border-radius:22px;

    display:flex;

    align-items:center;
    justify-content:center;

    gap:12px;

    background:
        linear-gradient(
            135deg,
            #16c172,
            #0f9e5d
        );

    color:#fff;

    font-size:24px;

    font-weight:900;

    box-shadow:
        0 18px 40px rgba(15,193,114,0.22);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

/* Shine */

.footer-whatsapp-btn::before{

    content:"";

    position:absolute;

    top:0;
    right:-120%;

    width:100%;
    height:100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.20),
            transparent
        );

    transition:.8s ease;
}

.footer-whatsapp-btn:hover::before{

    right:120%;
}

/* Hover */

.footer-whatsapp-btn:hover{

    transform:
        translateY(-6px);

    box-shadow:
        0 24px 50px rgba(15,193,114,0.28);
}

/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom{

    position:relative;

    z-index:2;

    border-top:
        1px solid rgba(255,255,255,0.08);

    padding:32px 0;

    display:flex;

    align-items:center;
    justify-content:space-between;

    flex-wrap:wrap;

    gap:20px;
}

/* Text */

.footer-bottom p,
.footer-bottom span{

    color:
        rgba(255,255,255,0.55);

    font-size:17px;

    line-height:1.8;
}

/* =========================================
   PREMIUM MAP SECTION
========================================= */

.map-section{

    position:relative;

    padding:150px 0;

    overflow:hidden;

    background:
        linear-gradient(
            to bottom,
            #f7fffd,
            #eefcf8
        );
}

/* Background Glow */

.map-section::before{

    content:"";

    position:absolute;

    width:700px;
    height:700px;

    top:-280px;
    right:-180px;

    border-radius:50%;

    background:
        radial-gradient(
            rgba(20,184,166,0.10),
            transparent 70%
        );

    pointer-events:none;
}

.map-section::after{

    content:"";

    position:absolute;

    width:520px;
    height:520px;

    bottom:-180px;
    left:-120px;

    border-radius:50%;

    background:
        radial-gradient(
            rgba(153,246,228,0.14),
            transparent 70%
        );

    pointer-events:none;
}

/* =========================
   MAP WRAPPER
========================= */

.map-wrapper{

    position:relative;

    z-index:2;

    margin-top:70px;

    border-radius:36px;

    overflow:hidden;

    border:
        10px solid rgba(255,255,255,0.90);

    box-shadow:
        0 30px 70px rgba(15,118,110,0.12);
}

/* Iframe */

.map-wrapper iframe{

    width:100%;

    height:580px;

    border:none;

    display:block;

    filter:
        saturate(1.02)
        contrast(1.02);
}

/* =========================
   MAP INFO GRID
========================= */

.map-info{

    position:relative;

    z-index:2;

    margin-top:55px;

    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:28px;
}

/* =========================
   MAP CARD
========================= */

.map-card{

    position:relative;

    overflow:hidden;

    padding:34px;

    border-radius:30px;

    background:
        rgba(255,255,255,0.88);

    border:
        1px solid rgba(20,184,166,0.10);

    backdrop-filter:blur(14px);

    display:flex;

    align-items:flex-start;

    gap:22px;

    box-shadow:
        0 18px 45px rgba(15,118,110,0.08);

    transition:
        transform .45s ease,
        box-shadow .45s ease,
        border .45s ease;
}

/* Hover Glow */

.map-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            145deg,
            rgba(20,184,166,0.06),
            transparent 45%
        );

    opacity:0;

    transition:.45s ease;
}

.map-card:hover::before{

    opacity:1;
}

/* Hover */

.map-card:hover{

    transform:
        translateY(-10px);

    border:
        1px solid rgba(20,184,166,0.18);

    box-shadow:
        0 28px 60px rgba(15,118,110,0.14);
}

/* =========================
   ICON
========================= */

.map-card i{

    width:78px;
    height:78px;

    min-width:78px;

    border-radius:24px;

    display:flex;

    align-items:center;
    justify-content:center;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );

    color:#fff;

    font-size:30px;

    box-shadow:
        0 15px 35px rgba(20,184,166,0.24);
}

/* =========================
   TEXT CONTENT
========================= */

.map-card h3{

    color:var(--dark);

    font-size:30px;

    line-height:1.4;

    margin-bottom:10px;

    font-weight:900;
}

.map-card p{

    color:#61756f;

    font-size:18px;

    line-height:2;
}

/* Link */

.map-card p a{

    color:var(--primary);

    font-weight:700;

    transition:.3s ease;
}

.map-card p a:hover{

    color:var(--secondary);
}

/* =========================================
   DEVELOPER BOX
========================================= */

.developer-box{

    position:relative;

    z-index:2;

    padding:30px 0 40px;

    text-align:center;

    border-top:
        1px solid rgba(255,255,255,0.08);
}

/* Text */

.developer-box p{

    color:
        rgba(255,255,255,0.55);

    font-size:16px;

    line-height:2;
}

/* Link */

.developer-box a{

    color:#99f6e4;

    font-weight:800;

    transition:.35s ease;
}

.developer-box a:hover{

    color:#ffffff;
}

/* =========================================
   PREMIUM ANIMATIONS
========================================= */

/* Reveal Animation */

.reveal{

    opacity:0;

    transform:
        translateY(90px);

    transition:
        opacity 1s ease,
        transform 1s ease;
}

.reveal.active{

    opacity:1;

    transform:
        translateY(0);
}

/* Left Animation */

.reveal-left{

    opacity:0;

    transform:
        translateX(-100px);

    transition:1s ease;
}

.reveal-left.active{

    opacity:1;

    transform:
        translateX(0);
}

/* Right Animation */

.reveal-right{

    opacity:0;

    transform:
        translateX(100px);

    transition:1s ease;
}

.reveal-right.active{

    opacity:1;

    transform:
        translateX(0);
}

/* Zoom Animation */

.reveal-zoom{

    opacity:0;

    transform:
        scale(0.84);

    transition:1s ease;
}

.reveal-zoom.active{

    opacity:1;

    transform:
        scale(1);
}

/* =========================================
   HERO ENTRANCE ANIMATION
========================================= */

.hero-content h1,
.hero-content p,
.hero-buttons,
.stats{

    opacity:0;

    animation:
        heroFadeUp 1.2s ease forwards;
}

/* Delays */

.hero-content p{
    animation-delay:.25s;
}

.hero-buttons{
    animation-delay:.55s;
}

.stats{
    animation-delay:.85s;
}

/* Animation */

@keyframes heroFadeUp{

    from{

        opacity:0;

        transform:
            translateY(80px);
    }

    to{

        opacity:1;

        transform:
            translateY(0);
    }
}

/* =========================================
   FLOATING BUTTON ANIMATION
========================================= */

.float-btn{

    animation:
        floating 3s ease-in-out infinite;
}

.float-btn.call{

    animation-delay:1s;
}

/* Floating */

@keyframes floating{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0);
    }
}

/* =========================================
   WHATSAPP GLOW
========================================= */

.whatsapp-btn,
.footer-whatsapp-btn{

    animation:
        whatsappGlow 2.5s infinite;
}

@keyframes whatsappGlow{

    0%{

        box-shadow:
            0 0 0 0 rgba(22,193,114,0.45);
    }

    70%{

        box-shadow:
            0 0 0 18px rgba(22,193,114,0);
    }

    100%{

        box-shadow:
            0 0 0 0 rgba(22,193,114,0);
    }
}

/* =========================================
   GALLERY SLIDER
========================================= */

.gallery-section{

    position:relative;

    padding:150px 0;

    overflow:hidden;

    background:
        linear-gradient(
            to bottom,
            #f8fffd,
            #eefcf8
        );
}

/* =========================================
   GALLERY SECTION
========================================= */

.gallery-section{

    position:relative;

    padding:140px 0;

    overflow:hidden;

    background:
        linear-gradient(
            to bottom,
            #f7fffb,
            #eefcf6
        );
}

/* =========================
   SLIDER
========================= */

.gallery-slider{

    position:relative;

    width:100%;

    overflow:hidden;

    margin-top:80px;

    border-radius:34px;
}

/* =========================
   TRACK
========================= */

.gallery-track{

    display:flex;

    direction:ltr;

    width:100%;

    transition:
        transform .85s cubic-bezier(.77,0,.18,1);

    will-change:transform;
}

/* =========================
   ITEM
========================= */

.gallery-item{

    flex:0 0 100%;

    position:relative;

    overflow:hidden;

    height:400px;

    border-radius:34px;

    isolation:isolate;

    box-shadow:
        0 30px 70px rgba(0,0,0,0.10);
}

/* =========================
   IMAGE
========================= */

.gallery-item img{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;

    transition:
        transform 1.4s ease;
}

.gallery-item:hover img{

    transform:scale(1.06);
}

/* =========================
   OVERLAY
========================= */

.gallery-overlay{

    position:absolute;

    inset:0;

    z-index:2;

    background:
        linear-gradient(
            to top,
            rgba(3,27,22,0.92),
            rgba(3,27,22,0.18),
            transparent
        );

    display:flex;

    align-items:flex-end;

    padding:50px;
}

/* =========================
   CONTENT
========================= */

.gallery-content{

    max-width:700px;
}

.gallery-content h3{

    color:#fff;

    font-size:48px;

    line-height:1.3;

    margin-bottom:14px;

    font-weight:900;
}

.gallery-content span{

    color:
        rgba(255,255,255,0.84);

    font-size:20px;

    line-height:2;
}

/* =========================
   NAV BUTTONS
========================= */

.gallery-btn{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    z-index:20;

    width:68px;
    height:68px;

    border:none;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
        rgba(255,255,255,0.14);

    backdrop-filter:blur(12px);

    color:#fff;

    font-size:24px;

    cursor:pointer;

    transition:
        transform .3s ease,
        background .3s ease;
}

/* Hover */

.gallery-btn:hover{

    background:
        rgba(255,255,255,0.24);

    transform:
        translateY(-50%)
        scale(1.08);
}

/* Prev */

.gallery-prev{

    right:24px;
}

/* Next */

.gallery-next{

    left:24px;
}

/* =========================
   DOTS
========================= */

.gallery-dots{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    margin-top:35px;
}

/* Dot */

.gallery-dot{

    width:14px;
    height:14px;

    border-radius:50%;

    background:
        rgba(18,94,74,0.18);

    cursor:pointer;

    transition:.35s ease;
}

/* Active */

.gallery-dot.active{

    width:42px;

    border-radius:30px;

    background:
        linear-gradient(
            to left,
            #1ca57a,
            #2bd49b
        );
}
