/* ===================== */
/* RESET */
/* ===================== */

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:#faf8f3;
  color:#222;
  overflow-x:hidden;
  line-height:1.7;
}

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

a{
  text-decoration:none;
}

ul{
  list-style:none;
}

.container{
  width:90%;
  max-width:1250px;
  margin:auto;
}

/* ===================== */
/* HEADER */
/* ===================== */

.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
  background:rgba(255,255,255,0.96);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(0,0,0,0.05);
  transition:0.3s;
}

.navbar{
  height:90px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  display:flex;
  align-items:center;
  gap:14px;
}

.logo img{
  width:62px;
  height:62px;
  object-fit:contain;
}

.logo-text h2{
  font-size:28px;
  font-family:'Cinzel',serif;
  color:#111;
}

.logo-text p{
  color:#b88a1b;
  font-size:13px;
}

/* ===================== */
/* NAVIGATION */
/* ===================== */

.nav-menu{
  display:flex;
  gap:35px;
}

.nav-menu a{
  color:#222;
  font-weight:500;
  position:relative;
  transition:0.3s;
}

.nav-menu a:hover{
  color:#b88a1b;
}

.nav-menu a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-8px;
  width:0;
  height:2px;
  background:#b88a1b;
  transition:0.3s;
}

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

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

.call-btn,
.contact-form button,
.primary-btn,
.secondary-btn{
  background:linear-gradient(to right,#b88a1b,#e0b74f);
  color:#fff;
  padding:16px 34px;
  border:none;
  border-radius:60px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight:600;
  transition:0.3s;
  cursor:pointer;
}

.secondary-btn{
  background:transparent;
  border:2px solid #b88a1b;
  color:#b88a1b;
}

.call-btn:hover,
.contact-form button:hover,
.primary-btn:hover,
.secondary-btn:hover{
  transform:translateY(-4px);
}

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

.mobile-right{
  display:none;
  align-items:center;
  gap:14px;
}

.mobile-call-btn{
  width:46px;
  height:46px;
  border-radius:50%;
  background:linear-gradient(to right,#b88a1b,#e0b74f);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hamburger{
  font-size:28px;
  cursor:pointer;
}

.mobile-menu{
  position:fixed;
  top:0;
  right:-100%;
  width:300px;
  height:100vh;
  background:#111;
  z-index:2000;
  padding:90px 30px;
  display:flex;
  flex-direction:column;
  gap:25px;
  transition:0.4s;
}

.mobile-menu.active{
  right:0;
}

.mobile-menu a{
  color:#fff;
  font-size:18px;
}

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

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

.contact-hero{
  padding-top:180px;
  padding-bottom:120px;

  background:
  linear-gradient(
    rgba(250,248,243,0.94),
    rgba(250,248,243,0.96)
  ),
  url('../images/contact-banner.webp');

  background-size:cover;
  background-position:center;

  text-align:center;
}
.hero-tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  background:#fff;

  padding:12px 26px;

  border-radius:60px;

  color:#b88a1b;

  font-weight:600;

  margin-bottom:26px;

  box-shadow:
  0 5px 18px rgba(0,0,0,0.05);
}
.contact-hero-content h1{
  font-size:72px;

  line-height:1.12;

  margin-top:0;

  margin-bottom:34px;

  font-family:'Cinzel',serif;

  max-width:1050px;

  margin-left:auto;
  margin-right:auto;

  letter-spacing:-1px;
}

.contact-hero-content p{
  max-width:900px;

  margin:auto;

  font-size:18px;

  color:#555;

  line-height:1.95;
}

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

.contact-form-section{
  padding:120px 0;
}

.contact-grid{
  display:grid;

  grid-template-columns:1fr 1fr;

  gap:42px;

  align-items:stretch;
}

.contact-form-box{
  background:#fff;

  padding:60px;

  border-radius:40px;

  box-shadow:
  0 20px 60px rgba(0,0,0,0.06);

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

  height:100%;
}

.section-tag{
  color:#b88a1b;

  font-weight:600;

  margin-bottom:18px;

  letter-spacing:1px;
}

.contact-form-box h2{
  font-size:58px;

  line-height:1.12;

  margin-bottom:36px;

  font-family:'Cinzel',serif;

  letter-spacing:-1px;
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:22px;
}

.form-group{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;

  border:none;

  background:#f5f3ef;

  padding:20px 22px;

  border-radius:18px;

  outline:none;

  font-size:15px;

  font-family:'Poppins',sans-serif;

  transition:0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  background:#efe9dc;
}

.contact-form textarea{
  min-height:180px;
  resize:none;
}

.contact-form button{
  width:max-content;
}

.contact-image{
  height:100%;

  background:
  linear-gradient(
    rgba(248,244,234,0.82),
    rgba(248,244,234,0.82)
  ),
  url('../images/pattern.png');

  background-size:cover;
  background-position:center;

  border-radius:40px;

  padding:28px;

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

.contact-image img{
  width:100%;
  height:100%;

  object-fit:contain;

  border-radius:30px;

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

/* ===================== */
/* SECTION TITLE */
/* ===================== */

.section-title{
  text-align:center;
  margin-bottom:70px;
}

.section-title p{
  color:#b88a1b;
  font-weight:600;
  margin-bottom:14px;
}

.section-title h2{
  font-size:52px;
  line-height:1.2;
  font-family:'Cinzel',serif;
}

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

.contact-info-section{
  padding:110px 0;
  background:#fff;
}

.contact-info-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px;
}

.contact-card{
  background:#faf8f3;

  padding:48px 38px;

  border-radius:34px;

  text-align:center;

  transition:0.4s;

  box-shadow:
  0 12px 35px rgba(0,0,0,0.04);

  height:100%;
}

.contact-card:hover{
  transform:translateY(-10px);
}

.contact-card i{
  font-size:48px;
  color:#b88a1b;
  margin-bottom:22px;
}

.contact-card h3{
  font-size:30px;
  margin-bottom:16px;
  font-family:'Cinzel',serif;
}

.contact-card p{
  color:#555;
}

/* ===================== */
/* SOCIAL SECTION */
/* ===================== */

.social-section{
  padding:110px 0;
}

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

.social-card{
  background:#fff;
  border-radius:32px;
  padding:42px 34px;
  text-align:center;
  transition:0.35s ease;
  box-shadow:
  0 15px 40px rgba(0,0,0,0.05);
}

.social-card:hover{
  transform:translateY(-10px);
}

.social-card i{
  width:82px;
  height:82px;
  border-radius:24px;
  background:
  linear-gradient(to right,#b88a1b,#d6a937);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:auto;
  margin-bottom:24px;
  font-size:32px;
}

.social-card h3{
  font-size:28px;
  margin-bottom:16px;
  font-family:'Cinzel',serif;
  color:#111;
}

.social-card p{
  color:#666;
}

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

.services-section{
  padding:110px 0;
}

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

.service-card{
  background:#fff;

  padding:48px 38px;

  border-radius:34px;

  text-align:center;

  box-shadow:
  0 12px 35px rgba(0,0,0,0.05);

  transition:0.4s;

  height:100%;
}

.service-card:hover{
  transform:translateY(-10px);
}

.service-card i{
  font-size:50px;
  color:#b88a1b;
  margin-bottom:22px;
}

.service-card h3{
  font-size:28px;
  margin-bottom:18px;
  font-family:'Cinzel',serif;
}

.service-card p{
  color:#555;
}

/* ===================== */
/* FAQ */
/* ===================== */

.faq-section{
  padding:110px 0;
  background:#fff;
}

.faq-container{
  max-width:950px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:20px;
}

.faq-item{
  background:#faf8f3;
  border-radius:22px;
  overflow:hidden;
}

.faq-question{
  width:100%;
  border:none;
  background:none;
  padding:28px 30px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
  font-size:20px;
  font-weight:600;
  text-align:left;
}

.faq-question span{
  font-size:28px;
  color:#b88a1b;
}

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

.faq-answer p{
  padding:0 30px 30px;
  color:#555;
}

.faq-item.active .faq-answer{
  max-height:300px;
}

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

.contact-cta{
  padding:20px 0 110px;
}

.cta-box{
  background:
  linear-gradient(
    rgba(248,244,234,0.92),
    rgba(248,244,234,0.92)
  ),
  url('../images/pattern.png');

  background-size:cover;
  background-position:center;

  border-radius:42px;

  padding:90px 60px;

  text-align:center;

  box-shadow:
  0 20px 60px rgba(0,0,0,0.06);
}

.cta-box span{
  color:#b88a1b;
  font-weight:600;
  display:inline-block;
  margin-bottom:18px;
}

.cta-box h2{
  font-size:58px;
  line-height:1.2;
  margin-bottom:24px;
  font-family:'Cinzel',serif;
}

.cta-box p{
  max-width:820px;
  margin:auto;
  color:#555;
  margin-bottom:36px;
}

.cta-buttons{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}

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

.footer{
  background:#111;
  color:#fff;
  padding-top:90px;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:50px;
  padding-bottom:60px;
}

.footer-column h3{
  font-size:30px;
  margin-bottom:25px;
  font-family:'Cinzel',serif;
}

.footer-column p,
.footer-column a{
  color:#ccc;
  line-height:1.9;
}

.footer-column ul{
  display:flex;
  flex-direction:column;
  gap:15px;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.1);
  padding:25px 0;
  text-align:center;
  color:#aaa;
}

/* ===================== */
/* WHATSAPP BUTTON */
/* ===================== */

.whatsapp-btn{
  position:fixed;
  right:22px;
  bottom:22px;
  width:64px;
  height:64px;
  border-radius:50%;
  background:#25D366;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  z-index:999999;
  box-shadow:0 10px 30px rgba(0,0,0,0.18);
  animation:whatsappPulse 2s infinite;
  transition:0.3s ease;
}

.whatsapp-btn:hover{
  transform:scale(1.08);
}

@keyframes whatsappPulse{

  0%{
    transform:scale(1);
  }

  50%{
    transform:scale(1.08);
  }

  100%{
    transform:scale(1);
  }

}

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

@media(max-width:1100px){

  .contact-grid,
  .contact-info-grid,
  .services-grid{
    grid-template-columns:1fr;
  }

  .social-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:768px){

  .nav-menu,
  .nav-right{
    display:none;
  }

  .mobile-right{
    display:flex;
  }

 .contact-hero{
  padding-top:135px;
  padding-bottom:70px;
}

.contact-hero-content h1{
  font-size:40px;

  line-height:1.12;

  max-width:95%;

  margin-bottom:20px;
}

.contact-hero-content p{
  font-size:15px;

  max-width:100%;

  line-height:1.8;
}

.hero-tag{
  margin-top:-10px;

  margin-bottom:30px;

  padding:10px 20px;
}

  .contact-grid{
    grid-template-columns:1fr;
    gap:30px;
  }

  .contact-form-box{
    padding:36px 24px;
    border-radius:30px;
  }

  .contact-form-box h2,
  .section-title h2,
  .cta-box h2{
    font-size:38px;
  }

  .form-group{
    grid-template-columns:1fr;
  }

  .contact-image{
    border-radius:30px;
    padding:18px;
  }

  .contact-image img{
    border-radius:24px;
  }

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

  .cta-box{
    padding:60px 28px;
    border-radius:30px;
  }

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

  .logo-text h2{
    font-size:22px;
  }

  .logo img{
    width:50px;
    height:50px;
  }

  .whatsapp-btn{
    width:58px;
    height:58px;
    right:18px;
    bottom:18px;
    font-size:30px;
  }

}


.footer-policy-links a{
color:#fff;
font-size:14px;
text-decoration:none;
transition:.3s;
opacity:.9;
}
.footer-policy-links a:hover{
opacity:1;
color:#d4af37;
}

.global-whatsapp-btn{
position:fixed;
bottom:20px;
right:20px;
width:60px;
height:60px;
background:#25D366;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:30px;
z-index:999999;
box-shadow:0 10px 25px rgba(0,0,0,.25);
text-decoration:none;
}




.footer-policy-clean a{
color:#cfcfcf;
text-decoration:none;
font-size:14px;
transition:.3s;
}

.footer-policy-clean a:hover{
color:#d4af37;
}

.global-whatsapp-btn{
position:fixed;
bottom:20px;
right:20px;
width:62px;
height:62px;
border-radius:50%;
background:#25D366;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
color:#fff;
z-index:999999;
text-decoration:none;
box-shadow:0 10px 25px rgba(0,0,0,.2);
}



.footer-policy-clean,
.footer-policy-links{
display:flex !important;
justify-content:center !important;
align-items:center !important;
gap:16px !important;
flex-wrap:wrap !important;
margin-top:25px !important;
padding-top:22px !important;
border-top:1px solid rgba(255,255,255,.08) !important;
}

.footer-policy-clean a,
.footer-policy-links a{
color:#d7d7d7 !important;
font-size:14px !important;
font-weight:500 !important;
text-decoration:none !important;
padding:8px 14px !important;
border-radius:8px !important;
transition:.3s ease !important;
}

.footer-policy-clean a:hover,
.footer-policy-links a:hover{
background:rgba(212,175,55,.12) !important;
color:#d4af37 !important;
}

@media(max-width:768px){
.footer-policy-clean,
.footer-policy-links{
gap:10px !important;
}

.footer-policy-clean a,
.footer-policy-links a{
font-size:13px !important;
padding:7px 12px !important;
}
}
