/*
Theme Name: Sanket Custom
Author: Sanket
Version: 1.0
*/

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

html, body {
    height: 100%;
}

main {
    flex: 1;
}

.global-hero {
    background: #7b5a52;
    padding: 140px 0 80px;
    text-align: center;
    color: #fff;
}
.global-hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.global-hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.global-hero-content p {
    max-width: 600px;
    margin: auto;
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

.global-content {
    padding: 60px 0;
    background: #f6f1ef;
}

.global-content .container {
    max-width: 800px;
}
.global-hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.global-hero p {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 0;
    opacity: 0.9;
    max-width: 500px;
    text-align: center;
}

/* Typography */
.global-content h2 {
    margin-top: 30px;
    margin-bottom: 10px;
}

.global-content p {
    line-height: 1.8;
    color: #555;
}

.global-content ul {
    padding-left: 20px;
}


body {
    font-family: 'Figtree', sans-serif;
    color: #2E2E2E;
    background: #F5E9E8;
    margin: 0;
    padding: 70;
    display: flex;
    flex-direction: column;
}

img {
    max-width: 100%;
    height: auto;
}
h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 32px;
}
a h2{
    text-decoration: none;
}
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
    url('../images/hero.png') center/cover no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 80px;
    width: 100%;
    
}
.hero {
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.4);
}

.hero > div {
    position: relative;
    z-index: 2;
}

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

.hero p {
    margin: 15px 0;
}
.btn {
    background: #D9A5A3;
    padding: 12px 25px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
}

.home-hero-video-local {
    position: relative;
    height: 80vh;
    overflow: hidden;
     padding: 0 20px;
}

/* VIDEO */
.home-hero-video-bg {
    position: absolute;
    /* top: 50%;
    left: 50%; */
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.15);
}


/* OVERLAY */
.home-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

/* CONTENT */
.home-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    top: 45%;
    transform: translateY(-50%);
    
}

.home-hero-content h1 {
     font-size: 48px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.home-hero-content p {
    font-size: 16px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}
.hero-btn-primary {
    background: linear-gradient(135deg, #d8a7a0, #c48f87);
    color: #fff;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(216,167,160,0.35);
}

/* HOVER EFFECT */
.hero-btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 30px rgba(216,167,160,0.5);
    background: linear-gradient(135deg, #c48f87, #b57b73);
}

.hero-btn-primary {
    position: relative;
}

.hero-btn-primary::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background: rgba(216,167,160,0.4);
    filter: blur(15px);
    z-index: -1;
}


.slider {
    display: flex;
    overflow-x: auto;
    gap: 15px;
}

.slider img {
    width: 300px;
    border-radius: 10px;
}

.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 12px 15px;
    border-radius: 50px;
    text-decoration: none;
}

.section {
    padding: 80px 0;
}

.section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.6s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.gallery img {
    width: 100%;
    cursor: pointer;
}
.gallery-item {
    height: 300px; /* important */
    overflow: hidden;
    border-radius: 10px;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* THIS IS THE MAGIC */
    transition: 0.4s ease;
    transform: scale(1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}
#lightbox{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.95);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

#lightbox img{
    max-width:90%;
    max-height:90%;
    border-radius:10px;
}

/* CLOSE */
.lb-close{
    position:absolute;
    top:30px;
    right:40px;
    font-size:40px;
    color:#fff;
    cursor:pointer;
}

/* NAV BUTTONS */
.lb-prev, .lb-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    font-size:40px;
    color:white;
    cursor:pointer;
    padding:10px;
}

.lb-prev{ left:30px; }
.lb-next{ right:30px; }



/* Testimonial Section */
.testimonial-section{
    background:#7A5C58;
    color:white;
    text-align:center;
    padding:100px 0;
}

.testimonial-wrapper{
    position:relative;
    overflow:hidden;
}

.testimonial-track{
    display:flex;
    transition:0.5s ease;
}

.testimonial-slide{
    min-width:100%;
    padding:20px;
}

/* IMAGE */
.testimonial-img img{
    width:80px;
    height:80px;
    border-radius:50%;
    margin-bottom:20px;
}

/* TEXT */
.testimonial-text{
    max-width:600px;
    margin:0 auto 20px;
}

/* ARROWS */
.prev, .next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:none;
    border:none;
    color:white;
    font-size:30px;
    cursor:pointer;
}

.prev{ left:10px; }
.next{ right:10px; }

/* DOTS */
.dots{
    margin-top:20px;
}

.dots span{
    display:inline-block;
    width:8px;
    height:8px;
    background:white;
    border-radius:50%;
    margin:5px;
    opacity:0.5;
    cursor:pointer;
}

.dots span.active{
    opacity:1;
}

/* CTA SECTION */
.cta-section {
    padding: 80px 0 40px;
    background: #F5E9E8;
    margin-bottom: 0 !important;
}

/* BOX */
.cta-box {
    background: #A8938E;
    padding: 60px 40px;
    text-align: center;
    border-radius: 10px;
    color: white;
}

/* TITLE */
.cta-box h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

/* TEXT */
.cta-box p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 15px;
    line-height: 1.6;
}

/* BUTTONS */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* PRIMARY BUTTON */
.btn-primary {
    background: #D9A5A3;
    padding: 12px 25px;
    color: white;
    border-radius: 5px;
    text-decoration: none;
}

/* OUTLINE BUTTON */
.btn-outline-light {
    border: 1px solid white;
    padding: 12px 25px;
    color: white;
    border-radius: 5px;
    text-decoration: none;
}

/* HOVER */
.btn-primary:hover {
    background: #c48f8d;
}

.btn-outline-light:hover {
    background: white;
    color: #4A2C2A;
}

.contact-form {
    margin-top: 30px;
}
.container {
    width: 85%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.wpforms-form input,
.wpforms-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.wpforms-form button {
    background: #D9A5A3;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-menu {
    background: transparent;
    padding: 10px 0;
}

/* Desktop */
.nav-menu ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}



/* NAVBAR BASE */
#main-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    transition: 0.4s ease;
}

/* TRANSPARENT INIT */
#main-header.transparent {
    background: transparent;
}
#main-header.scrolled {
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
}
/* SCROLL EFFECT */
#main-header.scrolled {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

/* NAVBAR LAYOUT */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

/* LOGO */
.logo {
    color: white;
    font-family: 'Poppins', sans-serif;
}

.logo a{
    text-decoration: none;
    color: #fff;
}
.logo img{
	width: 40% !important;
}
/* MENU */
.nav-menu ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-menu ul li a {
    color: white;
    text-decoration: none;
    position: relative;
}

/* UNDERLINE ANIMATION */
.nav-menu ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #D9A5A3;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.nav-menu ul li a:hover::after {
    width: 100%;
}

/* PORTFOLIO SECTION */
.portfolio-section{
    padding:60px 0;
    text-align:center;
    margin-top: 0 !important;
}

/* GRID */
.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
    margin-top:50px;
}

/* IMAGE */
.portfolio-img{
    height:250px;
    overflow:hidden;
    border-radius:10px;
}

.portfolio-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.4s;
}

.portfolio-item:hover img{
    transform:scale(1.05);
}

/* TEXT */
.portfolio-item h3{
    margin:15px 0 10px;
}

.portfolio-item p{
    font-size:14px;
    margin-bottom:15px;
}

/* TAGS */
.tags span{
    display:inline-block;
    background:#f0dada;
    padding:5px 10px;
    margin:5px;
    font-size:12px;
    border-radius:5px;
}

/* LINK */
.portfolio-link{
    color:#4A2C2A;
    text-decoration:none;
}

.portfolio-link:hover{
    color:#000;
}

/* BUTTON */
.center-btn{
    margin-top:40px;
}
.btn-outline{
    border:1px solid #4A2C2A;
    padding:12px 25px;
    border-radius:30px;
    text-decoration:none;

    color:#4A2C2A !important; /* fix blue */
}

.btn-outline:hover{
    background:#4A2C2A;
    color:white !important;
}


/* SERVICES SECTION */


.services {
    padding: 80px 20px;
    background: #f7f3f2;
    text-align: center;
}

.section-title {
    font-size: 36px;
    margin-bottom: 10px;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
}

.service-card-inner {
    display: block;
    text-decoration: none;
    color: inherit;
}
.service-img {
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.service-content {
    padding: 20px;
    text-align: left;
}

.service-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.service-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}
.service-btn {
    font-size: 14px;
    font-weight: 500;
    color: #c48a84;
    transition: all 0.3s ease;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-card:hover .service-btn {
    letter-spacing: 1px;
}

/* BUTTON */
.btn-outline {
    border: 1px solid #4A2C2A;
    padding: 12px 25px;
    border-radius: 30px;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #4A2C2A;
    color: white;
}

/* SECTION */
.insta-cta-section {
    padding: 80px 0;
    background: #f5eeea;
}

/* LAYOUT */
.insta-cta-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT */
.insta-content {
    flex: 1;
    max-width: 500px;
}

.insta-tag {
    font-size: 12px;
    letter-spacing: 2px;
    color: #b78b84;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.insta-content h2 {
    font-size: 36px;
    color: #3b2b28;
    margin-bottom: 20px;
}

.insta-content p {
    color: #6d5c58;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* BUTTON */
.insta-btn {
    display: inline-block;
    background: #c89b94;
    color: #fff;
    padding: 12px 26px;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s ease;
}

.insta-btn:hover {
    background: #b48780;
}

/* RIGHT EMBED */
.insta-embed {
    flex: 1;
}

.insta-embed iframe {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    border: none;
}




/* FOOTER */
.site-footer{
    background:#4A2C2A;
    padding:40px 0 20px;
    font-size:14px;
}

/* TOP */
.footer-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

/* LOGO */
.footer-logo h3{
    font-size:18px;
    font-weight:600;
    color:#fff;
}



/* SOCIAL */
.footer-social a{
    margin-left:10px;
    text-decoration:none;
    color:#fff;
}

/* LINE */
.site-footer hr{
    margin:20px 0;
    border:none;
    border-top:1px solid #ccc;
}

/* BOTTOM */
.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
    color:#fff;
}

/* LINKS */
.footer-links a{
    margin-left:15px;
    text-decoration:none;
    color:#fff;
    
}

/* HOVER */
.footer a:hover{
    color:#ccc;
}



/* ABOUT US PAGE */
.about-hero{
    background:#7A5C58;
    padding:120px 0;
    color:white;
}

/* GRID */
.about-hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:50px;
}

/* LEFT */
.about-left h1{
    font-size:48px;
    line-height:1.2;
}

/* RIGHT */
.about-right p{
    font-size:16px;
    line-height:1.7;
    opacity:0.9;
}
/* ABOUT CONTENT */
.about-content{
    padding:100px 0;
    background:#F9F3F2;
}

/* GRID */
.about-content-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
}

/* BLOCK */
.about-block h3{
    font-size:22px;
    margin-bottom:15px;
    color:#4A2C2A;
}

.about-block p{
    font-size:15px;
    line-height:1.7;
    color:#555;
}
/* TEAM SECTION */
.team-section{
    padding:100px 0;
    text-align:center;
}

/* GRID */
.team-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
    margin-top:50px;
}

/* CARD */
.team-card{
    text-align:left;
}

/* IMAGE */
.team-img{
    height:250px;
    overflow:hidden;
    border-radius:10px;
}

.team-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.4s;
}

.team-card:hover img{
    transform:scale(1.05);
}

/* TEXT */
.team-card h3{
    margin:15px 0 5px;
}

.role{
    font-size:13px;
    color:#888;
    display:block;
    margin-bottom:10px;
}

.team-card p{
    font-size:14px;
    line-height:1.6;
}
.testimonial-title {
    font-size: 42px;
    color: #fff;
    margin-bottom: 20px;
}
.testimonial-subtitle{
    margin: 0 auto 20px;
}
.testimonial-section{
    background:#7A5C58;
    padding:100px 0;
    color:white;
    text-align:center;
}

.testimonial-wrapper{
    position:relative;
    overflow:hidden;
    max-width:700px;
    margin:auto;
}

.testimonial-track{
    display:flex;
    transition:0.5s ease;
}

.testimonial-slide{
    min-width:100%;
    background:#f5e9e8;
    color:#333;
    padding:30px;
    border-radius:10px;
}

/* STARS */
.stars{
    color:#000;
    margin-bottom:10px;
}

/* ARROWS */
.t-prev, .t-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:none;
    border:none;
    font-size:30px;
    color:white;
    cursor:pointer;
}

.t-prev{ left:-40px; }
.t-next{ right:-40px; }

/* DOTS */
.t-dots{
    margin-top:20px;
}

.t-dots span{
    display:inline-block;
    width:8px;
    height:8px;
    background:white;
    margin:5px;
    border-radius:50%;
    opacity:0.5;
    cursor:pointer;
}

.t-dots span.active{
    opacity:1;
}

/* CTA WHATSAPP */
.cta-whatsapp{
    padding:100px 0;
    text-align:center;
    background:#F5E9E8;
}

/* TITLE */
.cta-whatsapp h2{
    font-size:36px;
    margin-bottom:15px;
    color:#4A2C2A;
}

/* TEXT */
.cta-whatsapp p{
    max-width:600px;
    margin:0 auto 30px;
    font-size:15px;
}

/* BUTTONS */
.cta-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
}

/* WHATSAPP BUTTON */
.btn-whatsapp{
    background:#25D366;
    color:white;
    padding:12px 25px;
    border-radius:30px;
    text-decoration:none;
    font-weight:500;
    transition:0.3s;
}

.btn-whatsapp:hover{
    background:#1ebe5d;
}

/* OUTLINE */
.btn-outline{
    border:1px solid #4A2C2A;
    padding:12px 25px;
    border-radius:30px;
    text-decoration:none;
    color:#4A2C2A;
}

/* PORTFOLIO SECTION */
.portfolio-hero{
    position:relative;
    height:480px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;

    background:url('../images/portfolio-hero.png') center/cover no-repeat;
}

/* OVERLAY */
.portfolio-hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.4);
}

/* CONTENT */
.portfolio-hero-content{
    position:relative;
    z-index:2;
    max-width:700px;
}

/* TITLE */
.portfolio-hero h1{
    font-size:48px;
    margin:15px 0;
}

/* TEXT */
.hero-desc{
    font-size:16px;
    margin-bottom:30px;
}

/* BUTTONS */
.hero-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
}

.portfolio-gallery{
    padding:100px 0;
     width:100%;
}

.gallery-grid{
    column-count:3;
    column-gap:20px;
    margin-top:40px;
}

.gallery-item{
    break-inside:avoid;
    margin-bottom:20px;
    border-radius:12px;
    overflow:hidden;
    cursor:pointer;
}

.gallery-item img{
    width:100%;
    border-radius:12px;
    transition:0.4s ease;
}

.gallery-item:hover img{
    transform:scale(1.07);
}

/* FILTER BUTTONS */
.gallery-filters{
    text-align:center;
    margin-bottom:30px;
}

.gallery-filters button{
    padding:10px 20px;
    margin:5px;
    border:none;
    background:#eee;
    border-radius:20px;
    cursor:pointer;
}

.gallery-filters .active{
    background:#d4a373;
    color:white;
}

/* FIX WORDPRESS GALLERY */
.wp-block-gallery{
    display:grid !important;
    grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
    gap:20px;
    margin-top:40px;
}

.wp-block-gallery .wp-block-image{
    width:100% !important;
}

.wp-block-gallery img{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:10px;
    display:block;
}
#lightbox{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.95);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

#lightbox img{
    max-width:90%;
    max-height:90%;
    border-radius:10px;
}

#close{
    position:absolute;
    top:30px;
    right:40px;
    font-size:40px;
    color:#fff;
    cursor:pointer;
}

.services-section-alt{
    background:#7b5e57;
    padding:120px 0;
    color:#fff;
}

.services-wrapper-alt{
    display:grid;
    grid-template-columns: 1fr 2fr;
    gap:60px;
    align-items:start;
}

/* LEFT SIDE */
.services-left-alt h2{
    font-size:40px;
    line-height:1.3;
}

/* GRID */
.services-grid-alt{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:30px;
}

/* CARD */
.service-card-alt{
    background:rgba(255,255,255,0.05);
    border-radius:12px;
    overflow:hidden;
    transition:0.3s;
}

/* IMAGE */
.service-img-alt{
    height:200px;
    overflow:hidden;
}

.service-img-alt img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.4s ease;
}

/* CONTENT */
.service-content-alt{
    padding:20px;
}

.service-content-alt h3{
    margin-bottom:15px;
}

/* BUTTON */
.service-content-alt .btn-primary{
    display:inline-block;
    margin-top:10px;
}

/* HOVER */
.service-card-alt:hover{
    transform:translateY(-6px);
}

.service-card-alt:hover img{
    transform:scale(1.08);
}

.testimonial-alt{
    background:#7b5e57;
    padding:30px 0 120px 0;
    text-align:center;
    color:#fff;
}

.testimonial-alt-tag{
    font-size:14px;
    opacity:0.7;
    margin-bottom:10px;
}

.testimonial-alt-title{
    font-size:32px;
    max-width:700px;
    margin:0 auto 40px;
    line-height:1.4;
}

.testimonial-alt-slider{
    max-width:700px;
    margin:auto;
}

.testimonial-alt-item{
    display:none;
}

.testimonial-alt-item.active{
    display:block;
}

.stars{
    margin-bottom:20px;
    color:#ffd700;
    font-size:18px;
}

.testimonial-alt-text{
    font-size:16px;
    line-height:1.6;
    margin-bottom:20px;
}

.testimonial-alt-name{
    font-weight:bold;
}

.testimonial-alt-role{
    font-size:14px;
    opacity:0.7;
}

.cta-alt{
    /* background:#7b5e57; */
    padding:100px 20px;
    text-align:center;
    color:#7b5e57;
}

.cta-alt-container{
    max-width:700px;
    margin:auto;
}

/* TITLE */
.cta-alt-title{
    font-size:36px;
    margin-bottom:15px;
}

/* DESCRIPTION */
.cta-alt-desc{
    font-size:15px;
    opacity:0.9;
    margin-bottom:30px;
}

/* BUTTONS */
.cta-alt-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

/* BUTTON BASE */
.cta-alt-btn{
    padding:12px 22px;
    border-radius:6px;
    text-decoration:none;
    font-size:14px;
    transition:0.3s;
}

/* PRIMARY */
.cta-alt-btn.primary{
    background:#d4a373;
    color:#fff;
}

/* SECONDARY */
.cta-alt-btn.secondary{
    border:1px solid #7b5e57;;
    color:#7b5e57;;
}

/* HOVER */
.cta-alt-btn.primary:hover{
    background:#c38b5f;
}

.cta-alt-btn.secondary:hover{
    background:#fff;
    color:#7b5e57;
}

/* Contact Page */
.contact-hero-section {
    position: relative;
    background: url('../images/contact-hero.png') center/cover no-repeat;
    padding: 120px 20px;
    color: #fff;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.contact-hero-container {
    position: relative;
    max-width: 1100px;
    margin: auto;
    text-align: left;
}

.contact-hero-tag {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.contact-hero-title {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-hero-desc {
    max-width: 500px;
    margin-bottom: 30px;
}

.contact-hero-buttons a {
    margin-right: 15px;
    text-decoration: none;
}

.contact-btn-primary {
    background: #d8a7a0;
    padding: 12px 24px;
    border-radius: 6px;
    color: #fff;
}

.contact-btn-outline {
    border: 1px solid #fff;
    padding: 12px 24px;
    border-radius: 6px;
    color: #fff;
}

.contact-info-section {
    padding: 80px 20px;
    background: #f6f1ef;
}

.contact-info-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.contact-map-box {
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
}

.contact-details-box {
    background: #e9d8d3;
    padding: 40px;
    border-radius: 12px;
}

.contact-details-title {
    font-size: 28px;
    margin-bottom: 15px;
}

.contact-details-desc {
    margin-bottom: 20px;
}

.contact-detail-item {
    margin-bottom: 10px;
}
/* FORM WRAPPER */
.contact-form-section {
    background: #f8f2ef;
    padding: 80px 20px;
}

/* FORM TITLE */
.contact-form-title {
    font-size: 34px;
    color: #3e2c28;
    margin-bottom: 30px;
    text-align: center;
}

/* FORM BOX */
.wpforms-container {
    max-width: 700px;
    margin: auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

/* INPUT FIELDS */
.wpforms-field input,
.wpforms-field textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #e5d6d1;
    background: #faf6f4;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* FOCUS EFFECT */
.wpforms-field input:focus,
.wpforms-field textarea:focus {
    border-color: #d8a7a0;
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 2px rgba(216,167,160,0.2);
}

/* LABEL */
.wpforms-field-label {
    color: #3e2c28;
    font-weight: 500;
    margin-bottom: 6px;
}

/* SUBMIT BUTTON */
.wpforms-submit {
    background: #d8a7a0 !important;
    color: #fff !important;
    padding: 14px 28px !important;
    border-radius: 8px !important;
    border: none !important;
    font-size: 15px !important;
    transition: all 0.3s ease;
}

/* BUTTON HOVER */
.wpforms-submit:hover {
    background: #c48f87 !important;
    transform: translateY(-2px);
}

/* CENTER BUTTON */
.wpforms-submit-container {
    text-align: center;
}

.contact-cta-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
}

/* LEFT IMAGE */
.contact-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RIGHT CONTENT */
.contact-cta-content {
    background: #7d5a50;
    color: #fff;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* TAG */
.contact-cta-tag {
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    opacity: 0.8;
}

/* TITLE */
.contact-cta-title {
    font-size: 34px;
    margin-bottom: 15px;
}

/* DESC */
.contact-cta-desc {
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* BUTTONS */
.contact-cta-buttons a {
    text-decoration: none;
    margin-right: 10px;
}

/* PRIMARY BUTTON */
.contact-cta-btn-primary {
    background: #d8a7a0;
    color: #fff;
    padding: 12px 22px;
    border-radius: 6px;
    transition: 0.3s;
}

/* OUTLINE BUTTON */
.contact-cta-btn-outline {
    border: 1px solid #fff;
    color: #fff;
    padding: 12px 22px;
    border-radius: 6px;
    transition: 0.3s;
}

/* HOVER */
.contact-cta-btn-primary:hover {
    background: #c48f87;
}

.contact-cta-btn-outline:hover {
    background: #fff;
    color: #7d5a50;
}

.packages-hero {
    background: #7b5a52;
    padding: 140px 80px 100px;
    color: #fff;
}

.packages-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.packages-hero .hero-left {
    flex: 1;
}

.packages-hero .hero-right {
    flex: 1;
}

.packages-hero h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}

.packages-hero .hero-text {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 500px;
}
/* SECTION */
.packages-list-section {
    padding: 100px 20px;
    background: #f8f2ef;
}

/* GRID */
.packages-list-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.packages-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* HOVER */
.packages-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.packages-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}
.packages-card h3 {
    font-size: 20px;
    color: #3e2c28;
    margin-bottom: 8px;
}

.packages-card p {
    font-size: 14px;
    color: #6b5a55;
    margin-bottom: 15px;
}
.packages-card ul {
    padding-left: 18px;
    margin-bottom: 15px;
}

.packages-card li {
    font-size: 14px;
    margin-bottom: 6px;
    color: #4a3a36;
}
.packages-btn {
    display: inline-block;
    background: linear-gradient(135deg, #d8a7a0, #c48f87);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.packages-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(216,167,160,0.4);
}
.packages-card.featured {
    background: #7d5a50;
    color: #fff;
    transform: scale(1.05);
}

/* TEXT INSIDE FEATURED */
.packages-card.featured h3,
.packages-card.featured p,
.packages-card.featured li {
    color: #fff;
}

/* BUTTON INSIDE FEATURED */
.packages-card.featured .packages-btn {
    background: #fff;
    color: #7d5a50;
}
.packages-price {
    font-size: 26px;
    font-weight: 700;
    color: #b88a7a;
    margin: 10px 0 15px;
}

.packages-card.featured .packages-price {
    color: #fff;
}

.custom-package-section {
    background: #f6f1ef;
    padding: 100px 0;
}

.custom-package-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT */
.custom-package-left {
    flex: 1;
}

.custom-tagline {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #b88a7a;
    margin-bottom: 10px;
}

.custom-package-left h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.custom-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

/* RIGHT */
.custom-package-right {
    flex: 1;
}

.custom-package-right img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* BUTTONS */
.custom-btn-primary {
    background: #b88a7a;
    color: #fff;
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    margin-right: 15px;
    display: inline-block;
}
.custom-btn-primary,
.custom-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
}
.custom-btn-outline {
    border: 1px solid #b88a7a;
    color: #b88a7a;
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
}
.custom-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.faq-hero {
    background: #7b5a52;
    padding: 120px 0 80px;
    text-align: center;
    color: #fff;
}

.faq-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.faq-hero p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}
.faq-section {
    padding: 80px 0;
    background: #f6f1ef;
}

.faq-wrapper {
    max-width: 800px;
    margin: auto;
}

.faq-item {
    border-bottom: 1px solid #e5d8d3;
    padding: 18px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 10px;
}
.faq-two-col-section {
    padding: 80px 0;
    background: #f6f1ef;
}

.faq-title {
    font-size: 32px;
    margin-bottom: 10px;
}

.faq-subtitle {
    font-size: 14px;
    margin-bottom: 40px;
    color: #777;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.faq-item {
    margin-bottom: 12px;
}

.faq-question {
    background: #e9dcd7;
    padding: 12px 16px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.faq-answer {
    display: none;
    padding: 12px 16px;
    font-size: 13px;
    line-height: 1.6;
    color: #555;
    background: #fff;
}

.faq-item.active .faq-answer {
    display: block;
}
.faq-cta-section {
    padding: 80px 0;
    background: #f6f1ef;
}

.faq-cta-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* LEFT BOX */
.faq-cta-left {
    flex: 1;
    background: #eaded9;
    padding: 30px;
    border-radius: 10px;
}

.faq-cta-left h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.faq-cta-left p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.faq-cta-btn {
    background: #b88a7a;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
}

/* RIGHT FAQ */
.faq-cta-right {
    flex: 1.5;
}

.faq-cta-item {
    border-bottom: 1px solid #cbbab3;
    padding: 15px 0;
}

.faq-cta-question {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-size: 15px;
}

.faq-cta-answer {
    display: none;
    font-size: 14px;
    margin-top: 10px;
    color: #555;
}

.faq-cta-item.active .faq-cta-answer {
    display: block;
}
/* SECTION */
.cta-split-section {
    padding: 80px 0;
    background: #f5eeea;
}

/* LAYOUT */
.cta-split-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT GALLERY */
.cta-gallery-left {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 120px 160px 120px;
    gap: 15px;
}

/* IMAGE STYLE */
.cta-img {
    overflow: hidden;
}

.cta-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.cta-img:hover img {
    transform: scale(1.08);
}

/* CUSTOM POSITIONS */
.cta-img-1 {
    grid-column: 1;
    grid-row: 1;
}

.cta-img-2 {
    grid-column: 2;
    grid-row: 1 / span 2;
}

.cta-img-3 {
    grid-column: 1;
    grid-row: 2 / span 2;
}

.cta-img-4 {
    grid-column: 2;
    grid-row: 3;
}

/* RIGHT CONTENT */
.cta-content-right {
    flex: 1;
    max-width: 480px;
}

.cta-tag {
    font-size: 12px;
    letter-spacing: 2px;
    color: #b78b84;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.cta-content-right h2 {
    font-size: 38px;
    color: #3b2b28;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-content-right p {
    color: #6d5c58;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* BUTTONS */
.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background: #c89b94;
    color: #fff;
    padding: 12px 26px;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s ease;
}

.cta-btn-primary:hover {
    background: #b48780;
}

.cta-btn-outline {
    border: 1px solid #c89b94;
    color: #c89b94;
    padding: 12px 26px;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s ease;
}

.cta-btn-outline:hover {
    background: #c89b94;
    color: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background: #3b2b28;
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    display: none;
    z-index: 9999;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.cookie-buttons button {
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}

#accept-cookies {
    background: #c89b94;
    color: #fff;
}

#reject-cookies {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.cookie-buttons a {
    color: #fff;
    text-decoration: underline;
}

/* BLOG SECTION */
.blog-section {
    padding: 60px 0;
    background: #f8f5f2;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.blog-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.blog-card:hover {
    transform: translateY(-6px);
}

/* IMAGE */
.blog-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

/* CONTENT */
.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.blog-content h3 a {
    text-decoration: none;
    color: #3b2b28;
}

.blog-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

/* BUTTON */
.blog-read-more {
    font-size: 14px;
    color: #c89b8c;
    text-decoration: none;
    font-weight: 500;
}

/* SINGLE BLOG HERO */
.single-hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    color: #fff;
}

.single-hero-bg img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

.single-hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.4),
        rgba(0,0,0,0.7)
    );
}

.single-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.single-hero-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.single-meta {
    font-size: 14px;
    opacity: 0.8;
}

/* CONTENT */
.single-content {
    padding: 60px 0;
    background: #f8f5f2;
}

.single-content-wrapper {
    max-width: 800px;
    margin: auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    line-height: 1.8;
    font-size: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* HEADINGS */
.single-content-wrapper h2,
.single-content-wrapper h3 {
    margin-top: 25px;
}

/* IMAGES */
.single-content-wrapper img {
    width: 100%;
    border-radius: 10px;
    margin: 20px 0;
}
.related-posts h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    color: #3b2b28;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-card {
    text-align: center;
    transition: 0.3s;
}

.related-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.related-card h4 {
    font-size: 16px;
}

.related-card a {
    text-decoration: none;
    color: #3b2b28;
}

.related-card:hover {
    transform: translateY(-5px);
}
/* LEGAL HERO */
.legal-hero {
    background: #7b5a50;
    padding: 120px 20px 60px;
    text-align: center;
    color: #fff;
}

.legal-hero h1 {
    font-size: 38px;
}

/* CONTENT */
.legal-content {
    background: #f8f5f2;
    padding: 60px 0;
}

.legal-wrapper {
    max-width: 900px;
    margin: auto;
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    line-height: 1.8;
    font-size: 16px;
    color: #444;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* HEADINGS */
.legal-wrapper h2 {
    margin-top: 30px;
    font-size: 24px;
    color: #3b2b28;
}

.legal-wrapper h3 {
    margin-top: 20px;
}

/* LINKS */
.legal-wrapper a {
    color: #c89b8c;
}

/* LISTS */
.legal-wrapper ul {
    padding-left: 20px;
}

.legal-wrapper li {
    margin-bottom: 8px;
}

.single-hero {
    position: relative;
    height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.single-hero-bg img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 1;
}

.single-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.3),
        rgba(0,0,0,0.6)
    );
    z-index: 2;
}

.single-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
}

.single-hero-content h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.2;
}

.single-content {
    padding: 60px 20px;
    background: #fff;
}

.single-content-wrapper {
    max-width: 800px;
    margin: auto;
    line-height: 1.8;
    font-size: 16px;
    letter-spacing: 0.3px;
    color: #333;
}

.single-content-wrapper p {
    margin-bottom: 18px;
}

.single-content-wrapper h2,
.single-content-wrapper h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.single-content-wrapper img {
    width: 100%;
    border-radius: 12px;
    margin: 20px 0;
}

.related-posts {
    padding: 60px 20px;
    background: #fafafa;
}

.related-posts h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.related-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.related-card h4 {
    padding: 15px;
    font-size: 18px;
    line-height: 1.4;

}

.related-card a {
    text-decoration: none;
    color: #000;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}




/* MOBILE */

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    services-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 26px;
    }
}

@media (max-width: 992px) {
    .packages-list-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media(max-width:768px){

    .global-hero h1 {
        font-size: 32px;
        margin-bottom: 10px;
    }
	.logo img{
	width: 50% !important;
}

    .global-hero p {
        font-size: 14px;
    }

    .global-hero {
        padding: 120px 20px 60px;
    }

    .global-hero-content h1 {
        font-size: 32px;
    }
    .home-hero-video-bg {
        display: none;
        transform: scale(1.3); /* mobile needs more zoom */
    }

    .home-hero-video-local {
        background: url('../images/hero.png') center/cover no-repeat;
    }

    .home-hero-content h1 {
        font-size: 28px;
    }

    .hero-btn-primary {
        padding: 12px 24px;
        font-size: 14px;
    }

    .home-hero-content {
        top: 50%;
        padding: 0 15px;
    }


    .menu-toggle {
        display: block;
        font-size: 26px;
        cursor: pointer;
        color: white;
    }
#main-header {
        position: fixed;
        width: 100%;
        top: 0;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(0,0,0,0.95);
        padding: 20px 0;
        z-index: 999;

        display: none; /* IMPORTANT */
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .nav-menu ul li a {
        font-size: 18px;
    }
     .gallery {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 26px;
    }
    .cta-box {
    padding: 40px 20px;
}

.cta-box h2 {
    font-size: 26px;
}

.cta-buttons {
    flex-direction: column;
}
.portfolio-grid{
    grid-template-columns:1fr;
}

.insta-cta-container {
        flex-direction: column;
        text-align: center;
    }

    .insta-embed iframe {
        height: 300px;
    }

.footer-top,
.footer-bottom{
    flex-direction:column;
    text-align:center;
}

.footer-menu a{
    display:inline-block;
    margin:5px;
}

.footer-links a{
    margin:5px;
}

.about-hero-grid{
    grid-template-columns:1fr;
    text-align:center;
}

.about-left h1{
    font-size:32px;
}
.about-content-grid{
    grid-template-columns:1fr;
    gap:30px;
    text-align:center;
}

.team-grid{
    grid-template-columns:1fr;
    text-align:center;
}

.team-card{
    text-align:center;
}


.cta-buttons{
    flex-direction:column;
}

.cta-whatsapp h2{
    font-size:26px;
}


.portfolio-hero{
    height:70vh;
}

.portfolio-hero h1{
    font-size:30px;
}

.hero-buttons{
    flex-direction:column;
}

 .services-wrapper-alt{
        grid-template-columns:1fr;
        gap:40px;
    }

    .services-grid-alt{
        grid-template-columns:1fr;
    }
    /* .contact-hero-section {
        padding: 80px 20px;
    } */

    .contact-hero-container {
        text-align: center;
    }

    .contact-hero-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .contact-hero-desc {
        font-size: 14px;
        max-width: 100%;
    }

    .contact-hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .contact-hero-buttons a {
        width: 100%;
        text-align: center;
    }
    .contact-info-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-map-box {
        height: 250px;
    }

    .contact-details-box {
        padding: 25px;
    }

    .contact-details-title {
        font-size: 22px;
    }
    .contact-form-container {
        padding: 0 10px;
    }

    .contact-form-title {
        font-size: 24px;
    }
 .contact-cta-split {
        grid-template-columns: 1fr;
    }

    .contact-cta-content {
        padding: 40px 20px;
        text-align: center;
    }

    .contact-cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .contact-cta-buttons a {
        width: 100%;
    }

    .packages-hero-section {
    background: #7d5a50;
    color: #fff;
    padding: 100px 20px;
}
.packages-hero {
        padding: 100px 20px 60px;
    }

    packages-hero {
        padding: 110px 20px 60px;
    }

    .packages-hero .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .packages-hero h1 {
        font-size: 34px;
        line-height: 1.2;
    }

    .packages-hero .hero-text {
        font-size: 15px;
        line-height: 1.6;
    }
.packages-list-container {
        grid-template-columns: 1fr;
    }

    .packages-card {
        padding: 20px;
    }
    .custom-package-section {
        padding: 60px 0;
    }

    .custom-package-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .custom-package-left h2 {
        font-size: 28px;
    }

    .custom-desc {
        font-size: 14px;
    }
    .custom-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .custom-btn-primary,
    .custom-btn-outline {
        width: 100%;
        text-align: center;
    }
    .faq-hero h1 {
        font-size: 32px;
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .faq-cta-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    .cta-split-container {
        flex-direction: column;
        gap: 30px;
    }

    .cta-gallery-left {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .cta-img {
        grid-column: auto !important;
        grid-row: auto !important;
        height: 120px;
    }

    .cta-content-right {
        text-align: center;
    }

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

    .cta-content-right h2 {
        font-size: 28px;
    }
     .single-hero {
        height: 50vh;
    }

    .single-hero-content h1 {
        font-size: 28px;
    }

    .single-content-wrapper {
        padding: 20px;
    }
    .related-grid {
        grid-template-columns: 1fr;
    }
    .legal-wrapper {
        padding: 25px;
    }

    .legal-hero {
        padding: 100px 15px 50px;
    }

    .legal-hero h1 {
        font-size: 28px;
    }
    .single-hero {
        height: 50vh;
    }

    .single-hero-content h1 {
        font-size: 28px;
    }

    .single-content {
        padding: 40px 15px;
    }

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


}
@media(max-width:992px){
    .gallery-grid{ column-count:2; }
}

@media(max-width:600px){
    .gallery-grid{ column-count:1; }
}
@media (max-width: 480px) {

    .packages-hero h1 {
        font-size: 28px;
    }

}

