/* ===================================
   ACCESSIBILITY
=================================== */

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    z-index: 10001;
    transition: top 0.3s;
    text-decoration: none;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===================================
   COLOR SYSTEM
=================================== */

:root{
    --primary:#970747;
    --primary-dark:#720535;
    --primary-light:#c21868;

    --white:#fcf7fa;

    --soft-bg:#fff4f8;
    --section-bg:#fdebf3;

    --text:#2d0b1f;
    --text-light:#6e4b5b;

    --border:#f3d7e4;

    --shadow:
    0 20px 50px rgba(151,7,71,0.08);
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat', sans-serif;
    background:var(--white);
    color:var(--text);
    line-height:1.6;
    overflow-x:hidden;
    position:relative;
}

/* ===================================
   FLOATING BACKGROUND GLOWS
=================================== */

body::before,
body::after{
    content:"";
    position:fixed;
    width:500px;
    height:500px;
    border-radius:50%;
    filter:blur(120px);
    z-index:-1;
    opacity:0.16;
}

body::before{
    background:#ffb0cf;
    top:-180px;
    left:-180px;
}

body::after{
    background:#970747;
    bottom:-220px;
    right:-180px;
}

/* ===================================
   TYPOGRAPHY
=================================== */

h1,h2,h3,h4{
    font-family:'Cormorant Garamond', serif;
    font-weight:600;
}

img{
    max-width:100%;
    display:block;
}

section{
    padding:100px 8%;
    position:relative;
}

section::after{
    content:"";
    position:absolute;
    bottom:0;
    left:50%;
    transform:translateX(-50%);
    width:120px;
    height:1px;

    background:linear-gradient(
        to right,
        transparent,
        rgba(151,7,71,0.22),
        transparent
    );
}

/* ===================================
   ANIMATIONS
=================================== */

.hero-text,
.hero-image,
.feature,
.service-box,
.gallery-grid div,
.testimonial,
.contact-item{
    animation:fadeUp 0.9s ease forwards;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

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

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

.navbar{

    width:100%;

    height:110px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 3%;

    position:sticky;

    top:0;

    z-index:1000;

    background:rgba(255,255,255,1.0);

    backdrop-filter:blur(16px);

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

    border-bottom:1px solid rgba(255,255,255,1.0);

    box-shadow:

    0 8px 30px rgba(0,0,0,0.04);

}

/* ===================================
   LOGO
=================================== */

.logo{
    position:relative;
    width:170px;
    height:95px;

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

.logo-bg{
    width:100px;
    height:80px;

    opacity:0.95;

    transition:0.4s ease;
}

.logo:hover .logo-bg{
    transform:scale(1.03) rotate(-1deg);
}

.logo-content{
    position:absolute;

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

    text-align:center;
}

@font-face{
    font-family:'BrittanySignature';
    src:url('./fonts/BrittanySignature.otf') format('opentype');
}

.logo-title{
    font-family:'BrittanySignature', cursive;

    font-size:0.7rem;
    font-weight:normal;

    color:#1f0a14;

    line-height:1;

    letter-spacing:0.3px;

    white-space:nowrap;

    margin:0;

    transform:translateY(2px);
}

.logo-subtitle{
    font-family:'Montserrat', sans-serif;

    font-size:0.40rem;

    letter-spacing:2.1px;

    text-transform:uppercase;

    color:var(--primary-dark);

    margin-top:12px;

    font-weight:700;
}

.logo:hover .logo-title{
    color:var(--primary);
    transition:0.3s ease;
}

/* ===================================
   NAV LINKS
=================================== */

.nav-links{
    display:flex;
    gap:42px;

    transition:0.3s ease;
}

.nav-links a{
    text-decoration:none;
    color:var(--text);

    font-size:15px;
    font-weight:600;

    position:relative;

    transition:0.3s;
}

.nav-links a::after{
    content:"";
    position:absolute;

    left:0;
    bottom:-7px;

    width:0%;
    height:2px;

    background:var(--primary);

    transition:0.35s;
}

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

.nav-links a:hover::after{
    width:100%;
}

.menu-toggle{

    display:none;

    font-size:30px;

    cursor:pointer;

    color:var(--primary-dark);
}

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

.hero{
    min-height:92vh;

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

    gap:70px;

    background:
    linear-gradient(to right, #fff8fb 50%, #fdebf3 50%);
}

.hero-text{
    flex:1;
    padding-top:20px;
}

.section-sub{
    color:var(--primary);

    letter-spacing:4px;

    font-size:13px;

    margin-bottom:14px;

    text-transform:uppercase;
}

.hero-text h1{
    font-size:78px;
    line-height:1;

    margin-bottom:24px;

    color:var(--primary-dark);
}

.hero-subline{
    font-size:0.54em;
    line-height:1.2;

    display:block;

    margin-top:14px;
}

.hero-text p{
    font-size:18px;

    max-width:540px;

    color:var(--text-light);

    margin-bottom:40px;
}

/* ===================================
   HERO IMAGE
=================================== */

.hero-image{
    flex:1;

    display:flex;
    justify-content:center;

    position:relative;
}

.hero-image::before{
    content:"";
    position:absolute;

    width:85%;
    height:85%;

    background:
    radial-gradient(circle,
    rgba(151,7,71,0.28),
    transparent 70%);

    filter:blur(40px);

    z-index:0;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);
}

.hero-image img{
    position:relative;
    z-index:1;

    width:400px;

    border-radius:34px;

    transform:rotate(-2deg);

    transition:0.5s ease;

    box-shadow:
    0 30px 60px rgba(0,0,0,0.18);
}

.hero-image img:hover{
    transform:rotate(0deg) scale(1.02);
}

/* ===================================
   BUTTONS
=================================== */

.btn{
    display:inline-block;

    padding:17px 36px;

    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );

    color:white;

    text-decoration:none;

    border-radius:40px;

    font-size:14px;
    font-weight:600;

    letter-spacing:1px;

    transition:0.35s;

    box-shadow:
    0 12px 25px rgba(151,7,71,0.18);

    position:relative;
    overflow:hidden;
}

.btn::before{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:100%;
    height:100%;

    background:
    linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.28),
        transparent
    );

    transition:0.6s;
}

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

.btn:hover{
    transform:translateY(-4px) scale(1.02);

    box-shadow:
    0 15px 30px rgba(151,7,71,0.28);
}

/* ===================================
   FEATURES
=================================== */

.features{
    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    color:white;

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

    gap:40px;
}

.feature{
    text-align:center;
}

.feature h4{
    font-size:30px;
    margin-bottom:12px;
}

.feature h4 i{

    margin-right:10px;

    font-size:24px;

    opacity:0.95;
}

.feature{

    padding:10px;
}

.feature p{
    opacity:0.88;
}

/* ===================================
   ABOUT
=================================== */

.about{
    display:grid;
    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:80px;
}

.about img{
    border-radius:28px;
    box-shadow:var(--shadow);
}

.about h2{
    font-size:60px;
    margin-bottom:24px;
}

.about p{
    color:var(--text-light);
    margin-bottom:20px;
}

/* ===================================
   SERVICES
=================================== */

.services{
    background:var(--soft-bg);
    text-align:center;
}

.services h2{
    font-size:60px;
    margin-bottom:18px;
}

.services .section-sub{
    text-align:center;
}

.services h2{
    text-align:center;
}

.services .section-desc{
    text-align:center;
}

.section-desc{
    max-width:700px;
    margin:auto;

    color:var(--text-light);
}

.service-grid{
    margin-top:60px;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;
}

.service-box{

    position:relative;

    height:300px;

    border-radius:30px;

    overflow:hidden;

    display:flex;

    align-items:flex-end;

    padding:35px;

    transition:0.45s ease;

    box-shadow:
    0 20px 50px rgba(0,0,0,0.10);

    isolation:isolate;
}

/* Background Image */

.service-image{

    position:absolute;

    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

    z-index:-3;

    transition:0.7s ease;
}

/* Dark Overlay */

.service-box::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(20,0,10,0.82),
        rgba(20,0,10,0.25),
        rgba(20,0,10,0.12)
    );

    z-index:-2;
}

/* Pink Glow Overlay */

.service-box::after{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        135deg,
        rgba(151,7,71,0.22),
        transparent
    );

    opacity:0;

    transition:0.4s ease;

    z-index:-1;
}

/* Hover Effects */

.service-box:hover{

    transform:
    translateY(-10px)
    scale(1.01);

    box-shadow:
    0 30px 60px rgba(151,7,71,0.22);
}

.service-box:hover::after{
    opacity:1;
}

.service-box:hover .service-image{
    transform:scale(1.08);
}

/* Content */

.service-box-content{
    position:relative;
    z-index:2;
}

.service-box h4{

    font-size:38px;

    color:white;

    margin-bottom:12px;

    line-height:1;
}

.service-box p{

    color:rgba(255,255,255,0.88);

    font-size:15px;

    line-height:1.7;

    max-width:90%;
}

/* ===================================
   GALLERY
=================================== */

.gallery{
    background:var(--section-bg);
    text-align:center;
}

.gallery h2{
    font-size:60px;
    margin-bottom:20px;
}

.gallery-grid{
    margin-top:50px;

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

    gap:20px;
}

.gallery-grid div{
    position:relative;

    overflow:hidden;

    border-radius:22px;

    transition:0.4s ease;
    cursor:pointer;
}

.gallery-grid div:hover{
    transform:translateY(-6px);
}

.gallery-grid div::after{
    content:"";
    position:absolute;

    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,0.35),
        transparent
    );

    opacity:0;

    transition:0.4s;
}

.gallery-grid div:hover::after{
    opacity:1;
}

.gallery-grid img{
    width:100%;
    height:320px;

    object-fit:cover;

    transition:0.6s ease;
}

.gallery-grid div:hover img{
    transform:scale(1.08);
}

/* ===================================
   TESTIMONIALS
=================================== */

.testimonials{
    text-align:center;
}

.testimonials h2{
    font-size:58px;
    margin-bottom:60px;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:30px;
}

.testimonial{
    padding:42px;

    border-radius:28px;

    background:white;

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

.testimonial p{
    color:var(--text-light);
    margin-bottom:20px;
}

.testimonial .services{
    font-size:13px;
    color:var(--primary);
    font-weight:500;
    margin-top:15px;
    margin-bottom:0;
}

/* ===================================
   MENU/PRICING
=================================== */

.menu-section{
    text-align:center;
    padding:100px 20px;
}

.menu-section h2{
    font-size:58px;
    margin-bottom:20px;
}

.menu-section .section-desc{
    max-width:600px;
    margin:0 auto 50px;
    color:var(--text-light);
}

.menu-container{
    max-width:500px;
    margin:0 auto;
}

.menu-card{
    background:white;
    border-radius:28px;
    box-shadow:var(--shadow);
    padding:50px;
    text-align:center;
}

.menu-icon{
    width:80px;
    height:80px;
    background:var(--primary);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 25px;
}

.menu-icon i{
    font-size:36px;
    color:white;
}

.menu-card h3{
    font-size:28px;
    margin-bottom:15px;
    color:var(--text);
}

.menu-card p{
    color:var(--text-light);
    margin-bottom:30px;
    line-height:1.6;
}

.menu-card .btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
}

/* ===================================
   MENU PAGE
=================================== */

.back-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:15px 30px;
    background:linear-gradient(135deg, var(--primary) 0%, #b8246d 100%);
    color:white;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    margin:20px;
    transition:transform 0.3s, gap 0.3s, box-shadow 0.3s;
    box-shadow:0 4px 15px rgba(151, 7, 71, 0.3);
}

.back-link:hover{
    transform:translateX(-5px);
    gap:12px;
    box-shadow:0 6px 20px rgba(151, 7, 71, 0.4);
}

.menu-page{
    max-width:1100px;
    margin:0 auto;
    padding:60px 20px 100px;
    background:linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
    min-height:100vh;
}

.menu-page h1{
    font-size:56px;
    margin-bottom:15px;
    text-align:center;
    font-family:'Cormorant Garamond', serif;
    font-weight:700;
    letter-spacing:-1px;
    background:linear-gradient(135deg, var(--primary) 0%, #b8246d 100%);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}

.menu-intro{
    text-align:center;
    max-width:700px;
    margin:0 auto 60px;
    color:var(--text-light);
    line-height:1.8;
    font-size:18px;
    font-weight:400;
}

.menu-categories{
    display:flex;
    flex-direction:column;
    gap:50px;
}

.menu-category{
    background:white;
    border-radius:28px;
    box-shadow:0 8px 30px rgba(0,0,0,0.12);
    overflow:hidden;
    margin-bottom:40px;
}

.menu-category:last-child{
    margin-bottom:0;
}

.category-header{
    display:flex;
    align-items:center;
    gap:20px;
    padding:35px 50px;
    background:linear-gradient(135deg, var(--primary) 0%, #b8246d 100%);
    color:white;
}

.category-icon{
    width:70px;
    height:70px;
    background:rgba(255,255,255,0.25);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 4px 15px rgba(0,0,0,0.2);
}

.category-icon i{
    font-size:32px;
    color:white;
}

.category-text{
    flex:1;
}

.category-text h2{
    font-size:42px;
    margin:0 0 4px 0;
    font-weight:700;
    letter-spacing:-0.5px;
    font-family:'Cormorant Garamond', serif;
    line-height:1.1;
}

.category-text p{
    font-size:18px;
    margin:0;
    opacity:0.8;
    font-weight:400;
    letter-spacing:0.3px;
    font-family:'Montserrat', sans-serif;
    line-height:1.3;
}

.menu-items{
    padding:30px 40px;
}

.menu-subsection{
    margin-bottom:40px;
    background:linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius:20px;
    padding:35px;
    box-shadow:0 4px 20px rgba(0,0,0,0.06);
    border:1px solid rgba(151, 7, 71, 0.08);
    transition:transform 0.3s, box-shadow 0.3s;
}

.menu-subsection:hover{
    transform:translateY(-2px);
    box-shadow:0 6px 25px rgba(0,0,0,0.1);
}

.menu-subsection:last-child{
    margin-bottom:0;
}

.subsection-header{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:25px;
    padding-bottom:20px;
    border-bottom:2px solid rgba(151, 7, 71, 0.1);
}

.subsection-icon{
    width:50px;
    height:50px;
    background:linear-gradient(135deg, var(--primary) 0%, #b8246d 100%);
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 4px 12px rgba(151, 7, 71, 0.3);
}

.subsection-icon i{
    font-size:22px;
    color:white;
}

.subsection-title{
    font-size:26px;
    color:var(--text);
    margin:0;
    font-weight:700;
}

.menu-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:28px 0;
    border-bottom:1px solid var(--bg-light);
    gap:20px;
    position:relative;
    transition:transform 0.3s, padding 0.3s;
    flex-wrap:wrap;
}

.menu-item:hover{
    transform:translateX(5px);
    padding-left:10px;
}

.menu-item:last-child{
    border-bottom:none;
}

.menu-item::before{
    content:'';
    position:absolute;
    left:0;
    right:0;
    top:50%;
    height:1px;
    background:linear-gradient(90deg, var(--bg-light) 0%, var(--primary) 50%, var(--bg-light) 100%);
    opacity:0.3;
    z-index:0;
    transition:opacity 0.3s;
}

.menu-item:hover::before{
    opacity:0.5;
}

.item-name{
    flex:1;
    min-width:0;
    background:white;
    padding-right:20px;
    z-index:1;
    position:relative;
}

.item-name h3{
    font-size:22px;
    margin-bottom:8px;
    color:var(--text);
    background:white;
    display:inline-block;
    padding-right:10px;
    font-weight:600;
    letter-spacing:-0.3px;
    word-wrap:break-word;
    overflow-wrap:break-word;
}

.item-desc{
    color:var(--text-light);
    font-size:16px;
    line-height:1.5;
    background:white;
    display:inline-block;
    padding-right:10px;
    font-weight:400;
    word-wrap:break-word;
    overflow-wrap:break-word;
}

.item-price{
    font-size:26px;
    font-weight:700;
    color:var(--primary);
    white-space:nowrap;
    background:white;
    padding-left:20px;
    z-index:1;
    position:relative;
    flex-shrink:0;
    background:linear-gradient(135deg, var(--primary) 0%, #b8246d 100%);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}

.menu-footer{
    text-align:center;
    margin-top:60px;
    padding:50px;
    background:linear-gradient(135deg, white 0%, #fafafa 100%);
    border-radius:28px;
    box-shadow:0 8px 30px rgba(0,0,0,0.1);
    border:1px solid rgba(151, 7, 71, 0.1);
}

.menu-footer p{
    color:var(--text-light);
    margin-bottom:12px;
    font-size:15px;
    font-weight:400;
    line-height:1.6;
}

.menu-footer .btn{
    margin-top:25px;
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:18px 35px;
    background:linear-gradient(135deg, var(--primary) 0%, #b8246d 100%);
    box-shadow:0 6px 20px rgba(151, 7, 71, 0.3);
    transition:transform 0.3s, box-shadow 0.3s;
}

.menu-footer .btn:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 25px rgba(151, 7, 71, 0.4);
}

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

@media(max-width:768px){
    .menu-page{
        padding:40px 15px 80px;
    }
    
    .menu-page h1{
        font-size:42px;
    }
    
    .menu-intro{
        font-size:16px;
    }
    
    .category-header{
        padding:30px 25px;
        flex-direction:column;
        text-align:center;
        gap:15px;
    }
    
    .category-icon{
        width:60px;
        height:60px;
    }
    
    .category-icon i{
        font-size:28px;
    }
    
    .category-text h2{
        font-size:32px;
    }
    
    .category-text p{
        font-size:16px;
    }
    
    .menu-items{
        padding:25px 20px;
    }
    
    .menu-subsection{
        padding:25px 20px;
    }
    
    .subsection-header{
        flex-direction:column;
        text-align:center;
        gap:10px;
    }
    
    .subsection-icon{
        width:45px;
        height:45px;
    }
    
    .subsection-icon i{
        font-size:20px;
    }
    
    .subsection-title{
        font-size:22px;
    }
    
    .menu-item{
        flex-direction:column;
        align-items:flex-start;
        padding:20px 0;
        gap:10px;
    }
    
    .menu-item:hover{
        transform:none;
        padding-left:0;
    }
    
    .item-name{
        padding-right:0;
        width:100%;
    }
    
    .item-name h3{
        font-size:18px;
    }
    
    .item-desc{
        font-size:14px;
    }
    
    .item-price{
        font-size:22px;
        padding-left:0;
        align-self:flex-start;
    }
    
    .menu-footer{
        padding:30px 20px;
    }
    
    .menu-footer .btn{
        padding:15px 25px;
        font-size:14px;
    }
    
    .back-link{
        margin:15px;
        padding:12px 20px;
        font-size:14px;
    }
}

@media(max-width:480px){
    .menu-page h1{
        font-size:36px;
    }
    
    .category-text h2{
        font-size:28px;
    }
    
    .subsection-title{
        font-size:20px;
    }
    
    .item-name h3{
        font-size:16px;
    }
    
    .item-price{
        font-size:20px;
    }
}

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

.cta{

    position:relative;

    overflow:hidden;

    background:
    linear-gradient(
        135deg,
        rgba(151,7,71,0.94),
        rgba(114,5,53,0.94)
    );

    text-align:center;

    color:white;
}

.cta::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(255,255,255,0.14),
        transparent 70%
    );

    top:-220px;
    left:-120px;

    filter:blur(20px);

    z-index:0;
}

.cta::after{

    content:"";

    position:absolute;

    width:420px;
    height:420px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(255,255,255,0.08),
        transparent 70%
    );

    bottom:-180px;
    right:-100px;

    filter:blur(10px);

    z-index:0;
}

.cta > *{
    position:relative;
    z-index:1;
}

.cta h2{

    font-size:64px;

    margin-bottom:20px;

    line-height:1.05;

    text-shadow:
    0 4px 18px rgba(0,0,0,0.18);
}

.cta p{

    max-width:700px;

    margin:auto;

    margin-bottom:35px;

    opacity:0.92;

    font-size:18px;

    line-height:1.8;
}

/* ===================================
   CONTACT
=================================== */

.contact-section{
    background:#fff7fa;
}

.contact-header{
    text-align:center;
    margin-bottom:60px;
}

.contact-header p{
    color:var(--text-light);
    font-size:18px;
}

.contact-layout{
    display:grid;
    grid-template-columns:380px minmax(0,1fr);

    gap:40px;

    align-items:stretch;
}

.contact-left{
    display:flex;
    flex-direction:column;

    gap:25px;
}

.contact-item{
    background:rgba(255,255,255,0.85);

    backdrop-filter:blur(12px);

    border-radius:26px;

    padding:30px;

    display:flex;
    align-items:center;

    gap:20px;

    box-shadow:var(--shadow);

    min-height:120px;

    transition:0.35s;
}

.contact-item:hover{
    transform:translateY(-5px);
}

.contact-icon{

    width:68px;
    height:68px;

    min-width:68px;

    border-radius:22px;

    background:
    linear-gradient(
        135deg,
        rgba(151,7,71,0.12),
        rgba(151,7,71,0.22)
    );

    border:
    1px solid rgba(151,7,71,0.12);

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

    color:var(--primary);

    font-size:24px;

    box-shadow:
    0 10px 25px rgba(151,7,71,0.08);

    transition:0.35s ease;

    flex-shrink:0;
}

.contact-item:hover .contact-icon{

    transform:
    translateY(-2px)
    scale(1.05);

    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );

    color:white;

    box-shadow:
    0 15px 35px rgba(151,7,71,0.22);
}

.contact-item h4{
    font-size:30px;
    margin-bottom:5px;
}

.contact-item p{
    color:var(--text-light);
}

.contact-right{
    width:100%;

    min-height:440px;

    border-radius:30px;

    overflow:hidden;

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

.contact-right iframe{
    width:100%;
    height:100%;

    min-height:440px;

    border:0;

    display:block;
}

/* ===================================
   BLOG SECTION
=================================== */

.blog {
    background: var(--soft-bg);
    text-align: center;
}

.blog h2 {
    font-size: 60px;
    margin-bottom: 20px;
}

.blog .section-sub {
    text-align: center;
}

.blog-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.4s ease;
    text-align: left;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(151, 7, 71, 0.15);
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-card-content {
    padding: 30px;
}

.blog-card h4 {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.service-box-content p{
    color:rgba(255,255,255,0.9);

    font-size:15px;

    line-height:1.6;
}

.service-link{
    display:inline-block;

    margin-top:12px;

    color:var(--primary);

    font-weight:600;

    text-decoration:none;

    transition:0.3s;
}

.service-link:hover{
    color:var(--primary-dark);
}

.blog-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-card a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.blog-card a:hover {
    color: var(--primary-dark);
}

/* ===================================
   LIGHTBOX
=================================== */

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 20px;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 50px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    background: none;
    border: none;
}

.lightbox-close:hover {
    color: var(--primary);
    transform: scale(1.1);
}

/* ===================================
   FLOATING WHATSAPP
=================================== */

.floating-whatsapp{

    position:fixed;

    right:24px;
    bottom:24px;

    width:64px;
    height:64px;

    border-radius:50%;

    background:#25D366;

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

    color:white;

    text-decoration:none;

    font-size:28px;

    z-index:9999;

    box-shadow:
    0 15px 35px rgba(0,0,0,0.18);

    transition:0.3s ease;
}

.floating-whatsapp:hover{

    transform:translateY(-4px) scale(1.05);

}

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

.footer{
    background:#1d0110;

    color:white;

    padding:90px 8%;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:40px;
}

.footer h3{
    margin-bottom:18px;
    font-size:28px;
}

.footer p,
.footer a{
    color:#d6c2cb;

    text-decoration:none;

    margin-bottom:10px;

    display:block;
}

.footer a:hover{
    color:white;
}

.bottom{
    margin-top:60px;
    padding-top:20px;

    border-top:1px solid rgba(255,255,255,0.1);

    text-align:center;

    color:#caa8b6;
}

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

@media(max-width:992px){

.hero,
.about{
    grid-template-columns:1fr;
    display:grid;
}

.hero{
    padding-top:140px;
    gap:40px;
    text-align:center;
}

.hero-text h1{
    font-size:56px;
}

.hero-text p{
    margin:auto auto 40px auto;
}

.hero-image img{
    width:100%;
    max-width:420px;
}

.features,
.gallery-grid,
.testimonial-grid,
.footer-grid{
    grid-template-columns:1fr;
}

.contact-layout{
    grid-template-columns:1fr;
}

.contact-right{
    min-height:380px;
}

.contact-right iframe{
    min-height:380px;
}

.menu-toggle{
    display:block;
}

.nav-links{

    position:absolute;

    top:110px;

    left:0;

    width:100%;

    background:white;

    flex-direction:column;

    align-items:center;

    gap:28px;

    padding:35px 0;

    display:none;

    box-shadow:
    0 15px 30px rgba(0,0,0,0.06);
}

.nav-links.active{
    display:flex;
}

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

@media(max-width:768px){

.logo{
    width:135px;
    height:55px;
}

.logo-bg{
    width:135px;
    height:100px;
}

.logo-title{
    font-size:0.92rem;
}

.logo-subtitle{
    font-size:0.42rem;
    letter-spacing:2px;
}
}
