*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#e8e0d5;
color:#1a1a1a;
overflow-x:hidden;
}

/* MAIN WRAPPER */
.site-container{
width:92%;
margin:auto;
background:#f8f5f0;
margin-top:30px;
border-radius:30px;
overflow:hidden;
box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

/* NAVBAR */
.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:30px 50px;
}

.logo{
font-size:40px;
font-weight:800;
}

.nav-links{
display:flex;
gap:30px;
list-style:none;
}

.nav-links a{
text-decoration:none;
color:#222;
font-weight:500;
}

/* HERO */
.hero{
height:95vh;
position:relative;
border-radius:30px;
overflow:hidden;
margin:0 40px 40px;
}

.hero-video{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
}

.hero-overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,0.25);
}

.hero-title{
position:absolute;
top:32%;
left:50px;
z-index:2;
}

.hero-title h1{
font-size:140px;
line-height:1;
font-weight:800;
color:white;
}

/* FLOATING CARD */
.floating-card{
position:absolute;
bottom:40px;
left:40px;
z-index:2;
width:350px;
padding:30px;
background:rgba(255,255,255,0.18);
backdrop-filter:blur(15px);
border-radius:25px;
color:white;
}

.floating-card p{
line-height:1.8;
margin-bottom:20px;
}

.floating-card a{
display:inline-block;
padding:12px 20px;
background:black;
color:white;
border-radius:12px;
text-decoration:none;
}

/* MINI VIDEO CARD */
.mini-video-card{
position:absolute;
bottom:50px;
left:420px;
width:280px;
height:170px;
overflow:hidden;
border-radius:25px;
z-index:2;
border:4px solid rgba(255,255,255,0.3);
}

.mini-video-card video{
width:100%;
height:100%;
object-fit:cover;
}

/* CIRCLE TEXT */
.circle-text{
position:absolute;
right:60px;
bottom:70px;
z-index:2;
width:170px;
height:170px;
border-radius:50%;
border:1px solid rgba(255,255,255,0.5);
display:flex;
align-items:center;
justify-content:center;
color:white;
font-size:14px;
text-align:center;
animation:spin 12s linear infinite;
}

@keyframes spin{
100%{
transform:rotate(360deg);
}
}

/* ABOUT */
.about-section{
padding:100px 60px;
}

.about-grid{
display:grid;
grid-template-columns:1.1fr 1fr;
gap:50px;
align-items:center;
}

.about-image img{
width:100%;
border-radius:30px;
}

.about-content span{
color:#7c6653;
font-weight:600;
}

.about-content h2{
font-size:60px;
line-height:1.1;
margin:20px 0;
}

.about-content p{
color:#555;
line-height:1.9;
margin-bottom:30px;
}

.dark-btn{
display:inline-block;
padding:14px 28px;
background:#1a1a1a;
color:white;
text-decoration:none;
border-radius:14px;
}

/* SERVICES */
.services-section{
padding:100px 60px;
background:#efe8df;
}

.section-header{
text-align:center;
margin-bottom:60px;
}

.section-header span{
color:#7c6653;
font-weight:600;
}

.section-header h2{
font-size:55px;
margin-top:10px;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.service-card{
background:white;
padding:45px 35px;
border-radius:25px;
transition:0.4s;
}

.service-card:hover{
transform:translateY(-10px);
}

.service-card i{
font-size:45px;
margin-bottom:20px;
color:#7c6653;
}

.service-card h3{
margin-bottom:15px;
}

.service-card p{
color:#666;
line-height:1.8;
}

/* VIDEO SHOWCASE */
.video-showcase{
height:85vh;
position:relative;
overflow:hidden;
}

.video-showcase video{
width:100%;
height:100%;
object-fit:cover;
}

.video-overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,0.35);
}

.video-text{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
color:white;
z-index:2;
max-width:700px;
}

.video-text h2{
font-size:80px;
margin-bottom:20px;
}

.video-text p{
line-height:1.9;
}

/* GALLERY */
.gallery-section{
padding:100px 60px;
}

.gallery-top{
display:grid;
grid-template-columns:2fr 1fr;
gap:25px;
margin-bottom:25px;
}

.gallery-large img{
width:100%;
height:100%;
object-fit:cover;
border-radius:30px;
}

.gallery-side{
display:flex;
flex-direction:column;
gap:25px;
}

.side-card{
background:#e8dfd4;
padding:40px;
border-radius:30px;
display:flex;
flex-direction:column;
justify-content:center;
}

.side-card span{
display:inline-block;
padding:8px 16px;
border:1px solid #444;
border-radius:20px;
margin-bottom:20px;
width:fit-content;
}

.side-card h3{
font-size:35px;
line-height:1.3;
}

.gallery-small img{
width:100%;
border-radius:30px;
height:100%;
object-fit:cover;
}

.bottom-gallery{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
margin-bottom:25px;
}

.bottom-gallery img{
width:100%;
height:300px;
object-fit:cover;
border-radius:30px;
}

/* CTA */
.cta-section{
padding:120px 60px;
text-align:center;
background:#ddd0c2;
}

.cta-section h2{
font-size:70px;
margin-bottom:20px;
}

.cta-section p{
color:#444;
margin-bottom:35px;
}

.cta-buttons{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.whatsapp-btn,
.call-btn{
padding:15px 30px;
border-radius:14px;
text-decoration:none;
font-weight:600;
}

.whatsapp-btn{
background:#25D366;
color:white;
}

.call-btn{
background:#1a1a1a;
color:white;
}

/* FOOTER */
footer{
padding:30px;
text-align:center;
background:#111;
color:#aaa;
}

/* MOBILE */
@media(max-width:1000px){

.hero-title h1{
font-size:70px;
}

.about-grid,
.gallery-top,
.bottom-gallery{
grid-template-columns:1fr;
}

.video-text h2{
font-size:45px;
}

.cta-section h2{
font-size:42px;
}

.mini-video-card{
display:none;
}

.circle-text{
display:none;
}

}

@media(max-width:700px){

.site-container{
width:100%;
margin-top:0;
border-radius:0;
}

.navbar{
padding:25px;
}

.hero{
margin:0;
border-radius:0;
}

.hero-title{
left:25px;
}

.hero-title h1{
font-size:52px;
}

.floating-card{
left:20px;
width:85%;
}

.about-section,
.services-section,
.gallery-section,
.cta-section{
padding:80px 25px;
}

.about-content h2,
.section-header h2{
font-size:38px;
}

}

/* ================= MOBILE RESPONSIVE ================= */

@media(max-width:1000px){

/* NAVBAR */
.navbar{
padding:25px;
}

/* HERO */
.hero{
height:90vh;
margin:0 20px 30px;
}

.hero-title{
left:30px;
top:25%;
}

.hero-title h1{
font-size:70px;
line-height:1;
}

/* FLOATING CARD */
.floating-card{
width:300px;
left:25px;
bottom:25px;
padding:25px;
}

/* MINI VIDEO */
.mini-video-card{
display:none;
}

/* CIRCLE TEXT */
.circle-text{
display:none;
}

/* ABOUT */
.about-grid{
grid-template-columns:1fr;
gap:40px;
}

/* SERVICES */
.services-grid{
grid-template-columns:1fr 1fr;
}

/* GALLERY */
.gallery-top{
grid-template-columns:1fr;
}

.bottom-gallery{
grid-template-columns:1fr;
}

/* VIDEO TEXT */
.video-text h2{
font-size:50px;
}

/* CTA */
.cta-section h2{
font-size:45px;
}

}

/* ================= PHONE RESPONSIVE ================= */

@media(max-width:768px){

/* MAIN CONTAINER */
.site-container{
width:100%;
margin-top:0;
border-radius:0;
}

/* NAVBAR */
.navbar{
padding:20px;
flex-direction:column;
gap:15px;
}

.nav-links{
gap:18px;
}

/* HERO */
.hero{
height:100vh;
margin:0;
border-radius:0;
}

/* HERO TITLE */
.hero-title{
left:20px;
top:22%;
}

.hero-title h1{
font-size:52px;
line-height:1.05;
}

/* HERO CONTENT */
.floating-card{
width:85%;
left:20px;
bottom:20px;
padding:20px;
border-radius:20px;
}

.floating-card p{
font-size:14px;
line-height:1.7;
}

/* ABOUT */
.about-section{
padding:70px 25px;
}

.about-content h2{
font-size:38px;
}

.about-content p{
font-size:15px;
}

/* SERVICES */
.services-section{
padding:70px 25px;
}

.section-header h2{
font-size:36px;
}

.services-grid{
grid-template-columns:1fr;
}

/* SERVICE CARDS */
.service-card{
padding:35px 25px;
}

/* VIDEO SHOWCASE */
.video-showcase{
height:70vh;
}

.video-text{
width:90%;
}

.video-text h2{
font-size:38px;
}

.video-text p{
font-size:15px;
}



/* GALLERY */
.gallery-section{
padding:70px 25px;
}

.side-card h3{
font-size:28px;
}

.bottom-gallery img{
height:240px;
}

/* CTA */
.cta-section{
padding:80px 25px;
}

.cta-section h2{
font-size:38px;
line-height:1.2;
}

.cta-buttons{
flex-direction:column;
align-items:center;
}

/* BUTTONS */
.whatsapp-btn,
.call-btn{
width:100%;
max-width:280px;
text-align:center;
}

/* FOOTER */
footer{
padding:25px;
font-size:14px;
}

}

/* ================= SMALL PHONES ================= */

@media(max-width:480px){

.hero-title h1{
font-size:42px;
}

.about-content h2,
.section-header h2,
.cta-section h2{
font-size:30px;
}

.video-text h2{
font-size:30px;
}

.logo{
font-size:32px;
}

.nav-links{
font-size:14px;
}

}