/* ========================================
   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: 80vh;
  overflow: hidden;
}

.banner-video {
  position: absolute;
  top: 0;
  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%;
  }
}

/* ========================================
   TEAM ACTION SECTION START
   ======================================== */
.team-action {
  padding: 120px 10%;
  background: linear-gradient(to right, #f4efe9, #e9e1d8);
}

.team-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* TEAM LEFT SIDE */
.team-text {
  flex: 1;
}

.team-small {
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-clay);
  margin-bottom: 15px;
}

.team-text h2 {
  font-size: 42px;
  margin-bottom: 25px;
  color: var(--accent-deep);
}

.team-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #555;
}

/* TEAM BUTTON */
.team-btn {
  margin-top: 15px;
  padding: 14px 28px;
  background: var(--accent-deep);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.team-btn:hover {
  background: var(--accent-clay);
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* TEAM RIGHT SIDE IMAGE */
.team-image {
  flex: 1;
  position: relative;
}

.team-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transition: transform 0.6s ease;
}

.team-image img:hover {
  transform: scale(1.05);
}
/* TEAM ACTION SECTION END */

/* ========================================
   TEAM ACTION MEDIA QUERIES
   ======================================== */
@media (max-width: 1024px) {
  .team-container {
    flex-direction: column;
    gap: 50px;
  }
  
  .team-text h2 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .team-action {
    padding: 80px 8%;
  }
  
  .team-text h2 {
    font-size: 26px;
  }
  
  .team-text p {
    font-size: 15px;
  }
}

/* ========================================
   PHILOSOPHY & SERVICES SECTION START
   ======================================== */
.philosophy-services {
  padding: 120px 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: 50px 8%;
  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: 120px 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;
  }
}

/* ========================================
   RESPONSIVE FOOTER MEDIA QUERIES
   ======================================== */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 40px;
  }
}
/* logo */
.logo img{
height:55px;
width:auto;
object-fit:contain;
}