:root{
    --primary:#b38474;
    --accent:#f5e6df;
    --text:#333;
    --light:#ffffff;
}

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

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:var(--text);
}

/* NAVBAR */
.navbar{
    position:fixed;
    top:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 30px;
    background:rgba(0,0,0,0.3);
    backdrop-filter:blur(10px);
    z-index:1000;
	min-height: 60px;
}

.logo{
    width: 70px;
    height: auto;
    transform: scale(1.3);
    transform-origin: left center;
}

/* SLIDER */
.slider{
    position:relative;
    height:100vh;
    overflow:hidden;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:opacity 1s ease-in-out;
}

.slide.active{
    opacity:1;
}

.slide-bg{
    width:100%;
    height:100%;
    object-fit:cover;
}

.slide.active .slide-bg{
    transform: scale(1.02);
}

/* PREMIUM HERO / HOME SECTION */
.slider{
    position: relative;
    height: 100vh;
    min-height: 720px;
    overflow: hidden;
}

.slide{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active{
    opacity: 1;
    z-index: 1;
}

.slide-bg{
    width: 100%;
    height: 115%;
    object-fit: cover;
    transform: scale(1.08);
    transition: transform 6s ease;
}

/* soft dark layer for readability */
.hero-shade{
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.25)),
        linear-gradient(to right, rgba(40,25,20,0.55), rgba(40,25,20,0.18));
    z-index: 1;
}

/* premium overlay */
.premium-overlay{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: min(750px, 90%);
    text-align: center;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 40px 35px;
    border-radius: 28px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.16);
}

.hero-badge{
    display: inline-block;
    background: rgba(255,255,255,0.16);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.24);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.4px;
    margin-bottom: 18px;
}

.premium-overlay h1{
    font-size: clamp(2.4rem, 5vw, 4.3rem);
    line-height: 1.08;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    max-width: 12ch;
}

.premium-overlay p{
    color: rgba(255,255,255,0.92);
    font-size: 1rem;
    line-height: 1.9;
    max-width: 560px;
    margin-bottom: 26px;
}

/* dual button layout */
.hero-buttons{
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-secondary-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    transition: 0.3s ease;
}

.hero-secondary-btn:hover{
    background: rgba(255,255,255,0.18);
    transform: translateY(-2px);
}

/* enhance primary button just in hero */
.premium-overlay .btn{
    background: linear-gradient(135deg, #b38474, #c89f91);
    color: #fff;
    box-shadow: 0 12px 28px rgba(179,132,116,0.35);
}

.premium-overlay .btn:hover{
    background: linear-gradient(135deg, #a87566, #bb907f);
    transform: translateY(-2px);
}

.premium-overlay h1{
    margin: 0 auto 20px;
    max-width: 100%;
}

.premium-overlay p{
    margin: 0 auto 30px;
    max-width: 600px;
}

.hero-buttons{
    justify-content: center;
}

/* bottom fade into next section */
.hero-bottom-fade{
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), #ffffff);
    z-index: 3;
    pointer-events: none;
}

/* slider dots premium style */
.controls{
    position: absolute;
    left: 10%;
    bottom: 42px;
    transform: none;
    z-index: 3;
    display: flex;
    gap: 10px;
}

.dot{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    border: 1px solid rgba(255,255,255,0.35);
    cursor: pointer;
    transition: 0.3s ease;
}

.dot.active{
    background: #fff;
    transform: scale(1.15);
}

/* mobile refinement */
@media(max-width: 900px){
    .premium-overlay{
    left: 50%;
    top: 52%;
    transform: translate(-50%, -50%);
    width: 90%;
    padding: 24px 18px;
    text-align: center;
    border-radius: 22px;
}

    .premium-overlay h1{
    max-width: 100%;
    font-size: 2.2rem;
    line-height: 1.15;
}

    .premium-overlay p{
    max-width: 100%;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 22px;
}

.logo{
    width: 75px;
}

.hero-buttons{
    margin-top: 8px;
}

    .hero-buttons{
        justify-content: center;
    }

    .controls{
        left: 50%;
        transform: translateX(-50%);
        bottom: 28px;
    }

    .slider{
        min-height: 680px;
    }
}

/* OVERLAY */
.overlay{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    background:rgba(0,0,0,0.4);
    padding:40px;
    border-radius:20px;
    backdrop-filter:blur(10px);
}

.overlay h1{
    font-size:2.8rem;
}

.overlay p{
    margin:15px 0;
}

/* BUTTON */
.btn{
    background:var(--primary);
    color:#fff;
    padding:12px 25px;
    border-radius:30px;
    text-decoration:none;
    transition:0.3s;
}

.btn:hover{
    background:#000;
}

/* SECTIONS */
section{
    padding:90px 20px;
    text-align:center;
}

/* alternating sections */
.about{
    background: linear-gradient(to right, #ffffff, #fdf7f5);
}


.about-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    max-width:1100px;
    margin:auto;
}

.about-text h2{
    font-size:2.7rem;
    color:var(--primary);
	font-weight:600;
    letter-spacing:0.5px;
}

.about-text p{
    font-size:1rem;
    line-height:1.8;
    color:#555;
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}


/* mobile */
@media(max-width:768px){
    .about-container{
        grid-template-columns:1fr;
    }

    .about-text{
        text-align:center;
    }
}

.services{
    background:#fafafa;
}


/* WHY SECTION */
.why{
    background: linear-gradient(to right, #fdf7f5, #ffffff);
}

/* CONTAINER */
.why-container{
    max-width:900px;
    margin:50px auto 0;
    display:flex;
    flex-direction:column;
    gap:25px;
}

/* ITEM */
.why-item{
    display:flex;
    align-items:center;
    gap:20px;
    background:#fff;
    padding:20px 25px;
    border-radius:15px;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
    transition:0.3s;
    position:relative;
    overflow:hidden;
}

/* LEFT ACCENT LINE */
.why-item::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    height:100%;
    width:5px;
    background:var(--primary);
    border-radius:5px 0 0 5px;
}

/* HOVER EFFECT */
.why-item:hover{
    transform:translateX(10px);
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

/* ICON */
.why-icon{
    font-size:22px;
    color:#fff;
    background:var(--primary);
    width:50px;
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
}

/* TEXT */
.why-text h3{
    margin-bottom:5px;
    color:var(--primary);
}

.why-text p{
    color:#666;
    font-size:0.95rem;
}

/* MOBILE */
@media(max-width:768px){
    .why-item{
        flex-direction:column;
        text-align:center;
    }
}

.why-item{
    opacity:0;
    transform:translateY(20px);
    animation:fadeUp 0.6s forwards;
}

.why-item:nth-child(1){animation-delay:0.2s;}
.why-item:nth-child(2){animation-delay:0.4s;}
.why-item:nth-child(3){animation-delay:0.6s;}
.why-item:nth-child(4){animation-delay:0.8s;}

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


/* TESTIMONIALS */
.testimonials{
    background: linear-gradient(to right, #ffffff, #fdf7f5);
    padding: 100px 20px;
}

.testimonial-slider{
    max-width: 850px;
    margin: 50px auto 20px;
    position: relative;
    min-height: 260px;
}

.testimonial-slide{
    display: none;
    background: rgba(255,255,255,0.9);
    border-radius: 24px;
    padding: 45px 35px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    text-align: center;
    border: 1px solid rgba(179,132,116,0.12);
}

.testimonial-slide.active{
    display: block;
    animation: fadeTestimonial 0.8s ease;
}

.testimonial-text{
    font-size: 1.08rem;
    line-height: 1.9;
    color: #555;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto 20px;
}

.testimonial-name{
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.testimonial-controls{
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.testimonial-dot{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d9c1b8;
    cursor: pointer;
    transition: 0.3s;
}

.testimonial-dot.active{
    background: var(--primary);
    transform: scale(1.15);
}

@keyframes fadeTestimonial{
    from{
        opacity: 0;
        transform: translateY(20px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

@media(max-width:768px){
    .testimonial-slide{
        padding: 35px 20px;
    }

    .testimonial-text{
        font-size: 0.98rem;
        line-height: 1.7;
    }
}

.appointment{
    background: linear-gradient(to right, #f5e6df, #ffffff);
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:20px;
    margin-top:20px;
}

.card{
    background:#fff;
    padding:25px;
    border-radius:15px;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

/* MAP */
iframe{
    width:100%;
    height:300px;
    border:none;
    border-radius:15px;
}

/* WHATSAPP */
.whatsapp-float{
    position: fixed;
    right: 22px;
    bottom: 22px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 14px 18px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 12px 30px rgba(37,211,102,0.35);
    z-index: 9999;
    transition: 0.3s ease;
}

.whatsapp-float i{
    font-size: 1.35rem;
}

.whatsapp-float:hover{
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(37,211,102,0.45);
}

@media(max-width:768px){
    .whatsapp-float{
        padding: 14px;
        border-radius: 50%;
        right: 18px;
        bottom: 18px;
    }

    .whatsapp-float span{
        display: none;
    }
}

/* SLIDER CONTROLS */
.controls{
    position:absolute;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:10px;
}

.dot{
    width:12px;
    height:12px;
    background:#fff;
    border-radius:50%;
    opacity:0.5;
    cursor:pointer;
}

.dot.active{
    opacity:1;
}

/* MOBILE */
@media(max-width:768px){
    .overlay h1{
        font-size:2rem;
    }
}

.book-btn{
    background: linear-gradient(135deg, #f5e6df, #d6a99d);
    color: #4a2c2a;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.book-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.navbar a{
    margin-left: 15px;
}

/* NAVBAR LAYOUT */
.navbar{
    position:fixed;
    top:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 30px;
    background:rgba(0,0,0,0.3);
    backdrop-filter:blur(10px);
    z-index:1000;
}

/* NAV SECTIONS */
.nav-left{ flex:1; }

.nav-center{
    flex:2;
    display:flex;
    justify-content:center;
    gap:30px;
}

.nav-center a{
    text-decoration:none;
    color:#fff;
    font-weight:500;
    position:relative;
}

/* UNDERLINE HOVER EFFECT */
.nav-center a::after{
    content:"";
    position:absolute;
    width:0%;
    height:2px;
    bottom:-5px;
    left:0;
    background:#fff;
    transition:0.3s;
}

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

/* RIGHT SIDE */
.nav-right{
    flex:1;
    display:flex;
    justify-content:flex-end;
}

/* PREMIUM BUTTON */
.book-btn{
    background: linear-gradient(135deg, #f5e6df, #d6a99d);
    color: #4a2c2a;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.book-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* MOBILE MENU */
.menu-toggle{
    display:none;
    font-size:24px;
    cursor:pointer;
    color:#fff;
}

/* RESPONSIVE */
@media(max-width:768px){

    .nav-center{
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        flex-direction:column;
        background:#b38474;
        display:none;
        text-align:center;
        padding:20px 0;
    }

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

    .menu-toggle{
        display:block;
    }

    .nav-right{
        display:none;
    }
}

html{
    scroll-behavior:smooth;
}

/* NAVBAR BASE */
.navbar{
    position:fixed;
    top:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 50px;
    transition:0.4s ease;
    z-index:1000;
}

/* SCROLL EFFECT */
.navbar.scrolled{
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(12px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* NAV LINKS */
.nav-center{
    display:flex;
    gap:30px;
}

.nav-link{
    text-decoration:none;
    color:#fff;
	font-size: 0.95rem;
    font-weight:500;
    position:relative;
    transition:0.3s;
}

/* HOVER UNDERLINE */
.nav-link::after{
    content:"";
    position:absolute;
    width:0%;
    height:2px;
    left:0;
    bottom:-6px;
    background:#fff;
    transition:0.3s;
}

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

/* ACTIVE LINK */
.nav-link.active{
    color:#f5e6df;
}

.nav-link.active::after{
    width:100%;
    background:#f5e6df;
}

/* PREMIUM BUTTON */
.book-btn{
    background: linear-gradient(135deg, #f5e6df, #d6a99d);
    color:#4a2c2a;
    padding:8px 18px;
    border-radius:30px;
    text-decoration:none;
	font-size:0.9rem;
    font-weight:500;
    transition:0.3s;
    box-shadow:0 4px 15px rgba(0,0,0,0.1);
}

.book-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 6px 20px rgba(0,0,0,0.2);
}

/* MOBILE */
.menu-toggle{
    display:none;
    font-size:26px;
    cursor:pointer;
    color:#fff;
}

@media(max-width:768px){

    .nav-center{
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        flex-direction:column;
        background:#b38474;
        display:none;
        padding:20px 0;
        text-align:center;
    }

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

    .menu-toggle{
        display:block;
    }

    .nav-right{
        display:none;
    }
}

html{
    scroll-behavior:smooth;
}

/* SECTION TITLE */
.section-title{
    font-size:2.5rem;
    color:var(--primary);
    margin-bottom:10px;
}

.section-subtitle{
    color:#777;
    margin-bottom:40px;
}

/* SERVICES GRID */
.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(250px,1fr));
    gap:30px;
    max-width:1100px;
    margin:auto;
}

/* SERVICE CARD */
.service-card{
    background:#fff;
    padding:30px 20px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    transition:0.4s;
    position:relative;
    overflow:hidden;
}

/* ICON */
.service-card .icon{
    font-size:35px;
    margin-bottom:15px;
}

/* TITLE */
.service-card h3{
    margin-bottom:10px;
    color:var(--primary);
}

/* TEXT */
.service-card p{
    color:#666;
    font-size:0.95rem;
}

/* HOVER EFFECT */
.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,0.1);
}

/* SOFT ACCENT GLOW */
.service-card::before{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    background:linear-gradient(135deg, transparent, rgba(181,132,116,0.1));
    opacity:0;
    transition:0.4s;
}

.service-card:hover::before{
    opacity:1;
}

.service-card .icon{
    font-size:32px;
    margin-bottom:15px;
    color:var(--primary);
    background:var(--accent);
    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    margin-left:auto;
    margin-right:auto;
    transition:0.3s;
}

/* hover effect */
.service-card:hover .icon{
    background:var(--primary);
    color:#fff;
    transform:scale(1.1);
}

/* APPOINTMENT SECTION */
.appointment{
    background: linear-gradient(135deg, #fff8f6, #f5e6df, #ffffff);
    padding: 110px 20px;
}

.appointment-wrapper{
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.appointment-content{
    text-align: left;
}

.appointment-tag{
    display: inline-block;
    background: rgba(179,132,116,0.12);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.appointment-content h2{
    font-size: 2.7rem;
    line-height: 1.2;
    color: #2f2f2f;
    margin-bottom: 18px;
    max-width: 650px;
}

.appointment-content p{
    color: #666;
    line-height: 1.9;
    max-width: 620px;
    margin-bottom: 28px;
}

.appointment-highlights{
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.highlight-item{
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555;
    font-weight: 500;
}

.highlight-item i{
    color: var(--primary);
    font-size: 1rem;
}

/* FORM BOX */
.appointment-form-box{
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(10px);
    padding: 35px 28px;
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.08);
    border: 1px solid rgba(179,132,116,0.12);
}

.appointment-form-box h3{
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-align: left;
}

.premium-form{
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.premium-form input,
.premium-form textarea{
    width: 100%;
    padding: 15px 16px;
    border-radius: 14px;
    border: 1px solid #ead8d1;
    background: #fff;
    color: #333;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: 0.3s;
}

.premium-form input:focus,
.premium-form textarea:focus{
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(179,132,116,0.12);
}

.premium-form textarea{
    min-height: 120px;
    resize: vertical;
}

.premium-form button{
    background: linear-gradient(135deg, var(--primary), #c79f91);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 15px 22px;
    font-weight: 600;
    font-size: 0.96rem;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(179,132,116,0.28);
}

.premium-form button:hover{
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(179,132,116,0.35);
}

/* MOBILE */
@media(max-width:900px){
    .appointment-wrapper{
        grid-template-columns: 1fr;
    }

    .appointment-content{
        text-align: center;
    }

    .appointment-content h2,
    .appointment-content p{
        max-width: 100%;
    }

    .appointment-highlights{
        align-items: center;
    }

    .appointment-form-box h3{
        text-align: center;
    }
}

/* LOCATION / MAP SECTION */
.location-section{
    background: linear-gradient(to right, #ffffff, #fdf7f5);
    padding: 100px 20px;
}

.location-wrapper{
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 35px;
    align-items: center;
}

.location-info{
    text-align: left;
}

.location-tag{
    display: inline-block;
    background: rgba(179,132,116,0.12);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.location-info h2{
    font-size: 2.4rem;
    color: #2f2f2f;
    margin-bottom: 18px;
    line-height: 1.2;
}

.location-info p{
    color: #666;
    line-height: 1.8;
    margin-bottom: 24px;
}

.location-details{
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.location-item{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
}

.location-item i{
    color: var(--primary);
    min-width: 22px;
    margin-top: 4px;
}

.location-item span{
    display: block;
    flex: 1;
    line-height: 1.6;
    word-break: break-word;
}

.location-btn{
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), #c79f91);
    color: #fff;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(179,132,116,0.25);
}

.location-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(179,132,116,0.32);
}

.location-map iframe{
    width: 100%;
    height: 420px;
    border: 0;
    border-radius: 24px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

@media(max-width:900px){

    .location-info{
        text-align: center;
    }

    .location-item{
        justify-content: flex-start;
        max-width: 320px;
        margin: auto;
    }
}

/* PREMIUM DIRECTIONS */
.directions-premium{
    padding: 100px 20px;
    background: linear-gradient(to right, #ffffff, #fdf7f5);
    text-align: center;
}

.directions-header h2{
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.directions-header p{
    color: #777;
    margin-bottom: 50px;
}

/* GRID */
.directions-container{
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 25px;
}

/* CARD */
.direction-card{
    background: #fff;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.4s;
    position: relative;
}

/* NUMBER */
.direction-number{
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 10px;
}

/* TEXT */
.direction-card h3{
    margin-bottom: 10px;
    color: var(--primary);
}

.direction-card p{
    color: #666;
    font-size: 0.95rem;
}

/* HOVER */
.direction-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.direction-card::after{
    content: "→";
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 20px;
}

.direction-card:last-child::after{
    display: none;
}

.footer{
    text-align: center;
    padding: 25px 20px;
    background: #fafafa;
    border-top: 1px solid #eee;
}

.footer p{
    margin: 5px 0;
}

.footer-credit{
    font-size: 0.85rem;
    color: #999;
    letter-spacing: 0.3px;
}

@media(max-width: 900px){
    .location-wrapper{
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    .location-info{
        text-align: center;
        width: 100%;
    }

    .location-map{
        width: 100%;
    }

    .location-map iframe{
        width: 100%;
        height: 320px;
        display: block;
    }
	
	.location-info h2{
        font-size: 2.2rem;
        line-height: 1.15;
    }
}

.working-hours{
    margin-top: 25px;
    background: rgba(255,255,255,0.75);
    padding: 22px;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
    border: 1px solid rgba(179,132,116,0.12);
}

.working-hours h3{
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.hours-row{
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #ead8d1;
    color: #555;
}

.hours-row:last-child{
    border-bottom: none;
}

.hours-row strong{
    color: #333;
    font-weight: 600;
    text-align: right;
}

@media(max-width:768px){
    .working-hours{
        max-width: 360px;
        margin: 25px auto 0;
        text-align: left;
    }

    .hours-row{
        font-size: 0.9rem;
    }
}

.social-links{
    margin-top: 30px;
    text-align: center;
}

.social-links h3{
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.social-icons{
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a{
    width: 45px;
    height: 45px;
    background: var(--accent);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    transition: 0.3s;
}

.social-icons a:hover{
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(179,132,116,0.3);
}

/* COLLAPSIBLE WHY CHOOSE US */
.why-accordion{
    max-width: 850px;
    margin: 45px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-accordion-item{
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
    overflow: hidden;
    border: 1px solid rgba(179,132,116,0.12);
}

.why-question{
    width: 100%;
    background: #fff;
    color: var(--primary);
    border: none;
    padding: 20px 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.why-question span{
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.why-question span i{
    background: var(--accent);
    color: var(--primary);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.why-question .fa-chevron-down{
    transition: 0.3s;
}

.why-accordion-item.active .fa-chevron-down{
    transform: rotate(180deg);
}

.why-answer{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.why-answer p{
    padding: 0 24px 22px 74px;
    color: #666;
    line-height: 1.7;
    text-align: left;
}

.why-accordion-item.active .why-answer{
    max-height: 180px;
}

@media(max-width:768px){
    .why-question{
        padding: 18px;
        font-size: 0.95rem;
    }

    .why-answer p{
        padding: 0 18px 20px 18px;
        text-align: center;
    }

    .why-question span{
        gap: 10px;
    }
}

/* RELIABILITY STRIP */
.reliability-strip{
    background: #fff;
    padding: 22px 20px;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
}

.reliability-item{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-weight: 600;
}

.reliability-item i{
    color: var(--primary);
    background: var(--accent);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

@media(max-width:768px){
    .reliability-strip{
        flex-direction: column;
        align-items: center;
        gap: 14px;
        padding: 18px 20px;
    }
}

/* PRODUCTS SECTION */
.products{
    background: linear-gradient(to right, #ffffff, #fdf7f5);
    padding: 90px 20px;
}

.products-grid{
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

.product-card{
    background: #fff;
    padding: 32px 24px;
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
    text-align: center;
}

.product-card i{
    color: var(--primary);
    background: var(--accent);
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 18px;
}

.product-card h3{
    color: var(--primary);
    margin-bottom: 10px;
}

.product-card p{
    color: #666;
    line-height: 1.6;
}

.product-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}