/* =========================================
   GLOBAL RESET + PREMIUM FOUNDATION
========================================= */

:root{

    /* Primary Wood */

    --primary:#8B5E3C;
    --primary-dark:#5C3B24;

    /* Secondary */

    --secondary:#B07A4F;
    --accent:#E6C79C;

    /* Text */

    --dark:#2E1F15;
    --text:#5A4030;

    /* Background */

    --light:#FAF6F1;
    --white:#FFFFFF;

    /* Border */

    --border:rgba(139,94,60,0.12);

    /* Shadow */

    --shadow:0 20px 60px rgba(92,59,36,0.15);

    /* Radius */

    --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,
    #FBF8F3,
    #F4EEE6
);

    overflow-x:hidden;

    text-rendering:optimizeLegibility;

    -webkit-font-smoothing:antialiased;
}

/* =========================
   SELECTION
========================= */

::selection{

    background:
       rgba(139,94,60,.12);

    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:90%;

    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(139,94,60,.12);

    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(139,94,60,.12);

    box-shadow:
        0 12px 30px rgba(92,59,36,.15);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.logo:hover img{

    transform:
        rotate(-3deg)
        scale(1.04);

    box-shadow:
        0 18px 35px rgba(92,59,36,.15);
}

/* =========================
   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:24px;
}

.nav-links li a{

    position:relative;

    color:var(--text);

    font-size:15px;

    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(139,94,60,.12);

    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(139,94,60,.12);
}

/* =========================
   MENU TOGGLE
========================= */

.menu-toggle{

    display:none;

    width:54px;
    height:54px;

    border-radius:16px;

    align-items:center;
    justify-content:center;

    cursor:pointer;

    background:
        rgba(139,94,60,.12);

    border:
        1px solid rgba(139,94,60,.12);

    transition:
        transform .3s ease,
        background .3s ease;
}

.menu-toggle:hover{

    transform:scale(1.05);

    background:
       rgba(139,94,60,.12);
}

.menu-toggle i{

    color:var(--primary);

    font-size:24px;
}

/* =========================
   HERO
========================= */

.hero {
    position: relative;
    min-height: 100vh;
    background: url('/images/hero.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(32, 20, 12, 0.233);}

/* =========================
   HERO CONTENT
========================= */

.hero-content{

    position:relative;

    z-index:5;

    width:60%;

    max-width:1250px;

    color:#fff;
}

/* =========================
   HEADING
========================= */

.hero-content h1{

    font-size:
        48px;

    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{


    margin:auto;

    font-size:
        20px;

    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:40px;
}

/* =========================
   BUTTON STYLE
========================= */

.btn{

    position:relative;

    min-width:250px;

    height:60px;

    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(139,94,60,.12);
}

/* =========================
   STATS
========================= */

.stats{

    display:flex;

    justify-content:center;

    gap:26px;

    flex-wrap:wrap;

    margin-top:40px;
}

/* =========================
   STAT BOX
========================= */

.stat-box{

    width:200px;

    padding:20px 16px;

    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:40px;

    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,
           #FBF8F3
#F3EBE2

        );
}

/* Decorative Glow */

.services-section::before{

    content:"";

    position:absolute;

    width:700px;
    height:700px;

    top:-280px;
    right:-180px;

    border-radius:50%;

    background:
        radial-gradient(
rgba(139,94,60,.12)
            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(230,199,156,.18),
            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(139,94,60,.12),
           rgba(230,199,156,.18)
        );

    border:
        1px solid rgba(139,94,60,.12);

    color:var(--primary);

    font-size:15px;

    font-weight:900;

    letter-spacing:.5px;

    margin-bottom:28px;

    box-shadow:
        0 10px 30px rgba(139,94,60,.12);
}

/* =========================
   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(139,94,60,.12);
}

/* =========================
   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(3, 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(139,94,60,.12);

    box-shadow:
        0 20px 55px rgba(92,59,36,.15);

    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(139,94,60,.12),
            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(139,94,60,.12);

    box-shadow:
        0 28px 65px rgba(92,59,36,.15);
}

/* =========================
   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(139,94,60,.12);

    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(139,94,60,.12);
}

.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(139,94,60,.12);

    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;
}

/*====================================
WHATSAPP BUTTON WITH PROGRESS RING
====================================*/

.floating-buttons{

    position:fixed;

    right:25px;

    bottom:25px;

    z-index:9999;

}

.whatsapp-float{

    position:relative;

    width:72px;

    height:72px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(135deg,#25D366,#128C7E);

    color:#fff;

    box-shadow:0 20px 45px rgba(37,211,102,.35);

}

.whatsapp-float i{

    font-size:34px;

    z-index:2;

}

.progress-ring{

    position:absolute;

    inset:-7px;

    width:86px;

    height:86px;

    transform:rotate(-90deg);

    pointer-events:none;

}

.ring-bg{

    fill:none;

    stroke:rgba(255,255,255,.18);

    stroke-width:4;

}

.ring-progress{

    fill:none;

    stroke:brown;

    stroke-width:4;

    stroke-linecap:round;

    stroke-dasharray:289;

    stroke-dashoffset:289;

    transition:stroke-dashoffset .15s linear;

}


/* =========================================
   PREMIUM WHY US SECTION
========================================= */

.why-us-section{

    position:relative;

    padding:150px 0;

    overflow:hidden;

background: linear-gradient(
135deg,
#3B2417,
#5C3B24,
#7A5234
);
}

/* =========================
   BACKGROUND GLOW
========================= */

.why-us-section::before{

    content:"";

    position:absolute;

    width:750px;
    height:750px;

    top:-320px;
    right:-180px;

    border-radius:50%;

    background:
        radial-gradient(
rgba(230,199,156,.18)
            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(139,94,60,.12),
            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,
        #E6C79C,
        #8B5E3C
    );
    box-shadow:
        0 8px 20px rgba(230,199,156,.18);
}

/* =========================
   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(230,199,156,.18),
            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:var(--accent);}

/* =========================
   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,
#FBF8F3
#F4EEE6
        );
}

/* Decorative Glow */

.portfolio-section::before{

    content:"";

    position:absolute;

    width:700px;
    height:700px;

    top:-280px;
    left:-180px;

    border-radius:50%;

    background:
        radial-gradient(
rgba(139,94,60,.12)
            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(230,199,156,.18),
            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;

    height:600px;

    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(92,59,36,.15);
}

/* =========================
   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(139,94,60,.12);
}

/* =========================
   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,
#3B2417,
#5C3B24,
#7A5234
);

}

/* =========================
   BACKGROUND GLOW
========================= */

.cta-section::before{

    content:"";

    position:absolute;

    width:850px;
    height:850px;

    top:-380px;
    right:-220px;

    border-radius:50%;

    background:
        radial-gradient(
rgba(230,199,156,.18)
            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(139,94,60,.12)
            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:var(--accent);
    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:var(--accent);
    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:var(--accent);
    font-size:18px;
}

/* =========================================
   PREMIUM FOOTER
========================================= */

.footer{

    position:relative;

    overflow:hidden;

    padding-top:110px;

background: linear-gradient(
135deg,
#3B2417,
#5C3B24,
#7A5234
);

    color:#fff;
}

/* =========================
   BACKGROUND GLOW
========================= */

.footer::before{

    content:"";

    position:absolute;

    width:700px;
    height:700px;

    top:-320px;
    right:-180px;

    border-radius:50%;

    background:
        radial-gradient(
rgba(230,199,156,.18)
            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(139,94,60,.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:var(--accent);
    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:var(--accent);
    font-size:16px;
}

/* Link */

.footer-contact li a{

    color:#fff;

    transition:.3s ease;
}

.footer-contact li a:hover{

    color:var(--accent);}

/* =========================
   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%;

    color:var(--accent);
    box-shadow:
        0 0 10px rgba(230,199,156,.18);
}

/* 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,
#FBF8F3
#F4EEE6
        );
}

/* Background Glow */

.map-section::before{

    content:"";

    position:absolute;

    width:700px;
    height:700px;

    top:-280px;
    right:-180px;

    border-radius:50%;

    background:
        radial-gradient(
rgba(139,94,60,.12)
            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(230,199,156,.18)
            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(92,59,36,.15);
}

/* 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(139,94,60,.12);

    backdrop-filter:blur(14px);

    display:flex;

    align-items:flex-start;

    gap:22px;

    box-shadow:
        0 18px 45px rgba(92,59,36,.15);

    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(139,94,60,.12)
            transparent 45%
        );

    opacity:0;

    transition:.45s ease;
}

.map-card:hover::before{

    opacity:1;
}

/* Hover */

.map-card:hover{

    transform:
        translateY(-10px);

    border:
        1px solid rgba(139,94,60,.12);

    box-shadow:
        0 28px 60px rgba(92,59,36,.15);
}

/* =========================
   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(139,94,60,.12);
}

/* =========================
   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:var(--accent);
    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);
    }
}

/* ==============================
SHOWCASE SLIDER
============================== */

.showcase-slider{

    position:relative;

    width:100%;

    height:90vh;

    overflow:hidden;

    background:#000;

}

.showcase-track{

    width:100%;

    height:100%;

    position:relative;

}

.showcase-slide{

    position:absolute;

    inset:0;

    opacity:0;

    visibility:hidden;

    transition:opacity 1s ease;

}

.showcase-slide.active{

    opacity:1;

    visibility:visible;

    z-index:2;

}

.showcase-slide img{

    width:100%;

    height:100%;

    object-fit:cover;

    animation:kenburns 6s linear forwards;

}

.showcase-prev,
.showcase-next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:58px;

    height:58px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(12px);

    color:#fff;

    cursor:pointer;

    z-index:20;

    transition:.3s;

}

.showcase-prev{

    left:30px;

}

.showcase-next{

    right:30px;

}

.showcase-prev:hover,
.showcase-next:hover{

    background:#8B5E3C;

}

.showcase-dots{

    position:absolute;

    left:50%;

    bottom:35px;

    transform:translateX(-50%);

    display:flex;

    gap:12px;

    z-index:20;

}

.showcase-dot{

    width:12px;

    height:12px;

    border-radius:50%;

    background:rgba(255,255,255,.35);

    cursor:pointer;

    transition:.3s;

}

.showcase-dot.active{

    background:#fff;

    transform:scale(1.5);

}

@keyframes kenburns{

    from{

        transform:scale(1);

    }

    to{

        transform:scale(1.12);

    }

}

@media(max-width:768px){

    .showcase-slider{

        height:60vh;

    }

    .showcase-prev,
    .showcase-next{

        width:46px;

        height:46px;

    }

}


/*==========================
VIDEO SECTION
==========================*/

.video-section{

    padding:150px 0;

    background:linear-gradient(
        to bottom,
        #FBF8F3,
        #F4EEE6
    );

}

.video-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));

    gap:35px;

    margin-top:70px;

}

.video-card{

    overflow:hidden;

    border-radius:30px;

    background:#fff;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    transition:.4s;

}

.video-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 70px rgba(0,0,0,.15);

}

.video-card video{

    width:100%;

    display:block;

    border-radius:30px;

    background:#000;

    aspect-ratio:16/9;

}