/* ========================================
   CSS CUSTOM PROPERTIES (ROOT VARIABLES)
   ======================================== */
:root {
  --bg-cream: #F4EFEA;
  --bg-beige: #D6CCC2;
  --accent-clay: #B08968;
  --accent-deep: #7F5539;
  --text-dark: #3E3E3E;
  --white: #FFFFFF;
}

/* ========================================
   ABOUT BANNER SECTION START
   ======================================== */
.about-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.banner-video {
  position: absolute;
  top: 82px;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

.about-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.banner-overlay {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.breadcrumb a {
  color: white;
  text-decoration: none;
}
/* ABOUT BANNER SECTION END */

/* ========================================
   ABOUT BANNER MEDIA QUERIES
   ======================================== */
@media (max-width: 768px) {
  .about-banner {
    height: 60vh;
  }
  
  .banner-overlay h2 {
    font-size: 28px;
  }
}

/* ========================================
   ABOUT INTRO SECTION START
   ======================================== */
.about-intro {
  display: flex;
  /* min-height: 100vh; */
  font-family: 'Playfair Display', serif;
}

/* ABOUT LEFT SIDE */
.about-left {
  width: 50%;
  background: #B08968;
  color: #f5f5f5;
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-left h2 {
  font-size: 48px;
  line-height: 1.3;
  font-weight: 400;
  margin-bottom: 40px;
}

.about-left h2 em {
  font-style: italic;
}

/* ABOUT TEXT STYLES */
.small-heading {
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 40px;
}

.about-text {
  font-size: 18px;
  line-height: 1.7;
  max-width: 520px;
}

.about-text em {
  font-style: italic;
}

/* ABOUT RIGHT SIDE */
.about-right {
  width: 50%;
  background: repeating-linear-gradient(
    90deg,
    #dfe5d8,
    #dfe5d8 8px,
    #cfd7c6 8px,
    #cfd7c6 16px
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-right img {
  width: 70%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}
/* ABOUT INTRO SECTION END */

/* ========================================
   ABOUT INTRO MEDIA QUERIES
   ======================================== */
@media (max-width: 1024px) {
  .about-intro {
    flex-direction: column;
  }
  
  .about-left,
  .about-right {
    width: 100%;
    padding: 80px 50px;
  }
  
  .about-left h2 {
    font-size: 36px;
  }
  
  .about-right img {
    width: 60%;
  }
}

@media (max-width: 768px) {
  .about-left {
    padding: 60px 30px;
  }
  
  .about-left h2 {
    font-size: 26px;
  }
  
  .about-text {
    font-size: 16px;
  }
  
  .about-right img {
    width: 80%;
  }
}

/* ========================================
   PHILOSOPHY & SERVICES SECTION START
   ======================================== */
.philosophy-services {
  padding: 60px 10%;
  background: #f7f6f4;
}

.ps-container {
  display: flex;
  gap: 80px;
  align-items: center;
}

/* PHILOSOPHY LEFT SIDE */
.ps-left {
  flex: 1;
}

.ps-left h2 {
  font-size: 48px;
  margin-bottom: 25px;
}

.ps-intro {
  font-size: 20px;
  margin-bottom: 20px;
  color: #444;
}

.ps-left p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #666;
}

.ps-points {
  margin-top: 40px;
}

/* PHILOSOPHY LIST ITEMS */
.ps-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.ps-item .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 8px;
}

.ps-item.blue .dot {
  background: #3b82f6;
}

.ps-item.purple .dot {
  background: #9333ea;
}

.ps-item.pink .dot {
  background: #e11d48;
}

.ps-item h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.ps-item p {
  font-size: 18px;
  color: #777;
}

/* PHILOSOPHY RIGHT SIDE */
.ps-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.ps-card {
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  transition: 0.4s ease;
}

.ps-card img {
  width: auto;
  height: 20vh;
}

.ps-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.ps-card p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

/* PASTEL CARD BACKGROUNDS */
.wedding {
  background: #f5ccd8;
  border: 1px solid #f1cbd6;
}

.corporate {
  background: #d3e6fa;
  border: 1px solid #c7d9ec;
}

.celebration {
  background: #f4e7c4;
  border: 1px solid #e5d8b5;
}

.ps-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}
/* PHILOSOPHY & SERVICES SECTION END */

/* ========================================
   PHILOSOPHY & SERVICES MEDIA QUERIES
   ======================================== */
@media (max-width: 1024px) {
  .ps-container {
    flex-direction: column;
  }
  
  .ps-left h2 {
    font-size: 36px;
  }
  
  .ps-right {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .philosophy-services {
    padding: 80px 8%;
  }
  
  .ps-left h2 {
    font-size: 28px;
  }
  
  .ps-left p,
  .ps-item p {
    font-size: 15px;
  }
  
  .ps-card {
    padding: 25px;
  }
}

/* ========================================
   SERVICES SECTION START
   ======================================== */
.services-section {
  padding: 0px 3%;
  background: #f9fafb;
  text-align: center;
}

/* SERVICES HEADER */
.services-header h2 {
  font-size: 48px;
  margin-bottom: 15px;
}

.services-header p {
  max-width: 600px;
  margin: 0 auto 60px;
  font-size: 18px;
  color: #6b7280;
  line-height: 1.6;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* SERVICE CARDS */
.service-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  text-align: left;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.highlight {
  box-shadow: 0 10px 30px rgba(255, 0, 100, 0.05);
}

/* SERVICE ICONS */
.icon {
  width: 55px;
  height: 55px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 25px;
  color: white;
  background-color: #D6CCC2;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}
/* SERVICES SECTION END */

/* ========================================
   SERVICES SECTION MEDIA QUERIES
   ======================================== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .services-header h2 {
    font-size: 28px;
  }
  
  .service-card {
    padding: 25px;
  }
}

/* ========================================
   HOW WE WORK SECTION START
   ======================================== */
.how-work-brand {
  padding: 50px 8%;
  background: linear-gradient(
    135deg,
    var(--accent-deep),
    var(--accent-clay)
  );
  color: var(--white);
  text-align: center;
  position: relative;
}

/* HOW WE WORK HEADER */
.hwb-header h2 {
  font-size: 48px;
  margin-bottom: 15px;
}

.hwb-header p {
  max-width: 600px;
  margin: 0 auto 100px;
  font-size: 18px;
  opacity: 0.9;
  line-height: 1.6;
}

/* HOW WE WORK STEPS */
.hwb-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}

/* HOW WE WORK CARDS */
.hwb-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  padding: 40px 25px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
}

.hwb-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* STEP NUMBER BACKGROUND */
.big-number {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 90px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

/* STEP ICON BOX */
.icon-box {
  width: 55px;
  height: 55px;
  background: var(--white);
  color: var(--accent-deep);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 25px;
}

.hwb-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.hwb-card p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
}
/* HOW WE WORK SECTION END */

/* ========================================
   HOW WE WORK MEDIA QUERIES
   ======================================== */
@media (max-width: 1024px) {
  .hwb-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .how-work-brand {
    padding: 80px 8%;
  }
  
  .hwb-steps {
    grid-template-columns: 1fr;
  }
  
  .hwb-header h2 {
    font-size: 28px;
  }
  
  .hwb-card {
    padding: 30px 20px;
  }
}
/* .footer{
  padding: 0px;
} */

/* ========================================
   RESPONSIVE FOOTER MEDIA QUERIES
   ======================================== */
/* @media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 40px;
  }
} */
/* =========================
   EXPERIENCE SECTION
========================= */

.experience-section{
  padding:0px 8%;
  background:#F4EFEA;
  text-align:center;
}

.experience-heading h2{
  font-size:42px;
  margin-bottom:15px;
  color:#3E3E3E;
}

.experience-heading p{
  max-width:600px;
  margin:0 auto 60px;
  font-size:18px;
  color:#6b7280;
}

.experience-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.experience-card{
  background:#ffffff;
  padding:40px;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  transition:0.3s;
}

.experience-card:hover{
  transform:translateY(-6px);
}

.experience-card h3{
  font-size:40px;
  color:#7F5539;
  margin-bottom:10px;
}

.experience-card p{
  font-size:16px;
  color:#555;
}

/* Responsive */

@media(max-width:992px){
  .experience-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .experience-grid{
    grid-template-columns:1fr;
  }
}
/* =========================
   WHAT PEOPLE REMEMBER
========================= */

.memory-section{
  padding:40px 6%;
  background:#F4EFEA;
}

.memory-container{
  display:flex;
  gap:80px;
  align-items:center;
}

/* LEFT CONTENT */

.memory-left{
  flex:1;
}

.memory-left h2{
  font-size:48px;
  margin-bottom:25px;
  color:#3E3E3E;
}

.memory-text{
  font-size:22px;
  margin-bottom:20px;
  color:#7F5539;
  font-style:italic;
}

.memory-left p{
  font-size:18px;
  line-height:1.8;
  margin-bottom:15px;
  color:#555;
}

.brand-name{
  font-weight:600;
  color:#7F5539;
}

/* RIGHT CARDS */

.memory-right{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:25px;
}

.memory-box{
  background:white;
  padding:30px;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  transition:0.3s;
}

.memory-box:hover{
  transform:translateY(-5px);
}

.memory-box h3{
  font-size:22px;
  margin-bottom:10px;
  color:#7F5539;
}

.memory-box p{
  font-size:16px;
  color:#666;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1024px){

.memory-container{
flex-direction:column;
gap:40px;
}

.memory-left h2{
font-size:36px;
}

}

@media(max-width:768px){

.memory-left h2{
font-size:28px;
}

.memory-text{
font-size:18px;
}

.memory-left p{
font-size:16px;
}

}
/* =========================
   FOUNDER LETTER SECTION
========================= */

.founder-section{
  padding:120px 8%;
  background:#ffffff;
}

.founder-container{
  display:flex;
  align-items:center;
  gap:70px;
}

/* IMAGE */

.founder-image{
  flex:1;
}

.founder-image img{
  width:100%;
  border-radius:20px;
  box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

/* CONTENT */

.founder-content{
  flex:1;
}

.founder-content h2{
  font-size:42px;
  margin-bottom:25px;
  color:#3E3E3E;
}

.founder-letter{
  font-size:20px;
  color:#7F5539;
  font-style:italic;
  margin-bottom:20px;
}

.founder-content p{
  font-size:17px;
  line-height:1.8;
  margin-bottom:18px;
  color:#555;
}

.founder-content span{
  font-weight:600;
  color:#7F5539;
}

/* SIGNATURE */

.founder-signature{
  margin-top:30px;
}

.founder-signature h4{
  font-size:20px;
  margin-bottom:5px;
}

.founder-signature span{
  font-size:15px;
  color:#777;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1024px){

.founder-container{
flex-direction:column;
}

}

@media(max-width:768px){

.founder-content h2{
font-size:28px;
}

.founder-content p{
font-size:16px;
}

}
/* logo */
.logo img{
height:55px;
width:auto;
object-fit:contain;
}

/* ===============================
   WHATSAPP FLOAT BUTTON
================================ */

.whatsapp-float{
position:fixed;
bottom:25px;
right:25px;
width:60px;
height:60px;
background:#25D366;
color:white;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
box-shadow:0 6px 18px rgba(0,0,0,0.25);
z-index:2000;
text-decoration:none;
transition:0.3s;
}

.whatsapp-float:hover{
transform:scale(1.9);
background:#1ebe5d;
}
.link{
  color: white;
  text-decoration: none;
}

/* =========================
   FOOTER BASE
========================= */
.footer {
  background: #7F5539;
  color: #fff;
  padding: 60px 20px 20px;
}
/* =========================
   CONTAINER
========================= */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

/* =========================
   COLUMNS
========================= */
.footer-col {
  flex: 1 1 220px; /* auto responsive */
  min-width: 220px;
}

/* =========================
   HEADINGS
========================= */
.footer-col h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #B08968;
}

/* =========================
   TEXT
========================= */
.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  color: #ddd;
}

/* =========================
   LINKS
========================= */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0px;
  font-size: 14px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #ddd;
  /* margin-bottom: 0px; */
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #B08968;
}

/* =========================
   SOCIAL ICONS
========================= */
.social-icons {
  margin-top: 10px;
  display: flex;
  gap: 12px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: white;
  font-size: 16px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #B08968;
}

/* =========================
   COPYRIGHT
========================= */
.footer-bottom {
  width: 100%;
  margin-top: 40px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: #ccc;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #B08968;
}

/* =========================
   TABLET (<= 992px)
========================= */
@media (max-width: 992px) {
  .footer-container {
    justify-content: center;
    text-align: center;
  }

  .footer-col {
    flex: 1 1 45%;
  }

  .social-icons {
    justify-content: center;
  }
}

/* =========================
   MOBILE (<= 600px)
========================= */
@media (max-width: 600px) {
  .footer {
    padding: 50px 15px 20px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .footer-col {
    width: 100%;
    max-width: 400px;
  }

  .footer-col h3,
  .footer-col h4 {
    text-align: center;
  }

  .footer-col ul {
    padding: 0;
  }

  .footer-col ul li {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}