/* ===============================
   SURTI LADIES TAILOR
   Premium Boutique Style CSS
   =============================== */

:root {
  --black: #0f0f0f;
  --ivory: #f8f5f0;
  --gold: #c6a15b;
  --soft-gold: #e4d3a3;
  --navy: #0b1c3d;
  --text: #2b2b2b;
  --bg-dark: #4b4a5c;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--ivory);
  color: var(--text);
  line-height: 1.7;
}

/* ================= HEADER ================= */

/* ================= HEADER BASE ================= */

.top-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;

  background: #ffffff;
  padding: 0 60px;
  height: 100px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  transition: all 0.35s ease;
  box-shadow: none;
}

.top-header.scrolled {
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* Shrink */
.top-header.shrink {
  height: 80px;
}

/* ================= BRAND ================= */

.brand-box {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-box img {
  width: 50px; /* MATCHED */
  transition: all 0.35s ease;
}

.brand-text {
  opacity: 1;
  transform: none;
  animation: none;
}

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: #1f2933;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.brand-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-style: italic;
  color: #d6b17d;
  letter-spacing: 1px;
}

/* ================= NAVIGATION ================= */

.header-nav {
  display: flex;
  align-items: center;
  gap: 20px; /* EXACT spacing */
}

.header-nav > a,
.header-nav .nav-item > a {
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #6b7280;
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.header-nav > a:hover,
.header-nav .nav-item > a:hover {
  color: #111827;
}

/* underline hover */
.header-nav > a::after,
.header-nav .nav-item > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #d6b17d;
  transition: width 0.3s ease;
}

.header-nav > a:hover::after,
.header-nav .nav-item > a:hover::after {
  width: 100%;
}

/* ================= SERVICES DROPDOWN (UNCHANGED LOGIC) ================= */

.nav-item {
  position: relative;
}

.services-dropdown {
  position: absolute;
  top: 140%;
  left: 0;
  width: 260px;
  background: #ffffff;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  border-radius: 6px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px);
  transition: all 0.35s ease;
  z-index: 999;
}

.services-item:hover .services-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.services-dropdown ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-dropdown li {
  border-bottom: 1px solid #eee;
}

.services-dropdown li:last-child {
  border-bottom: none;
}

.services-dropdown a {
  display: block;
  padding: 12px 0;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
}

.services-dropdown a:hover {
  color: #d6b17d;
  padding-left: 8px;
}

/* ================= RIGHT SIDE ================= */

.premium-header-right {
  align-items: center;
  gap: 20px;
}

/* Call info */
.call-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.call-text span {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #9ca3af;
}

.call-text strong {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #111827;
}

/* Divider */
.header-divider {
  width: 1px;
  height: 40px;
  background: #e5e7eb;
}

/* Search */
.search-icon {
  color: #6b7280;
  cursor: pointer;
}

/* Button */
.book-btn {
  position: relative;
  display: inline-block;
  padding: 16px 38px;
  background: #ddb892;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  overflow: hidden;
}

/* Text always on top */
.book-btn span {
  position: relative;
  z-index: 2;
}

/* BLACK RECTANGLE */
.book-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #1c1c1c;

  /* KEY FIX */
  transform: scaleX(0);
  transform-origin: left;   /* 👈 ONLY LEFT SIDE */

  transition: transform 1s ease;
  z-index: 1;
}

/* HOVER */
.book-btn:hover::before {
  transform: scaleX(1);
}

/* REMOVE HOVER: RIGHT → LEFT (automatic) */
/* same transition works backward */
.book-btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: #1c1c1c;
  z-index: 1;
  transition: transform 0.45s ease;
  transform: translateX(0);
  opacity: 0;
}
.book-btn:hover::after {
  opacity: 1;
  transform: translateX(-100%);
}


/* ================= HERO ================= */

/* ================= HERO SLIDER ================= */

.hero-slider-wrapper {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-left: 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.hero-welcome {
  color: #ddb892;
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 78px;
  line-height: 1.1;
  margin-bottom: 30px;
}

/* Button */
.hero-btn {
  display: inline-block;
  border: 1px solid #ddb892;
  padding: 14px 36px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 2px;
  width: fit-content;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #ddb892;
  color: #000;
}

/* Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #000;
  font-size: 22px;
  cursor: pointer;
  z-index: 5;
  transition: 0.3s;
}

.hero-arrow.left {
  left: 40px;
}

.hero-arrow.right {
  right: 40px;
}

.hero-arrow:hover {
  background: #ddb892;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 42px;
  }

  .hero-arrow {
    width: 44px;
    height: 44px;
  }
}

/* ================= INTRO ================= */

.intro {
  padding: 100px 15%;
  text-align: center;
}

.intro h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  margin-bottom: 20px;
}

.intro p {
  color: #555;
}

/* ================= HIGHLIGHTS ================= */

.highlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding: 0 10% 100px;
}

.highlight-box {
  background: #fff;
  padding: 50px 30px;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  border: 1px solid rgba(0,0,0,0.08);
  transition: 0.4s;
}

.highlight-box:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
}

/* ================= FOOTER ================= */

.footer {
  background: var(--black);
  color: #fff;
  text-align: center;
  padding: 25px;
  font-size: 14px;
}

/* ================= ANIMATION ================= */

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }

  .hero-text h1 {
    font-size: 44px;
  }

  .brand-name {
    font-size: 22px;
  }

  .brand-tagline {
    font-size: 12px;
  }
}
/* ===== PREMIUM HEADER RIGHT (MATCH REFERENCE) ===== */

.premium-header-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

/* Call Section */
.call-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.call-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c6a15b; /* GOLD */
}

.call-text span {
  font-size: 13px;
  color: #777;
  display: block;
}

.call-text strong {
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

/* Divider Line */
.header-divider {
  width: 1px;
  height: 40px;
  background: rgba(0,0,0,0.15);
}

/* Search Icon */
.search-icon {
  font-size: 18px;
  cursor: pointer;
  color: #000;
  transition: 0.3s;
}

.search-icon:hover {
  color: var(--gold);
}

/* Book Button (already exists, refined) */
.book-btn {
  background: #ddb892;
  color: #fff;
  padding: 14px 28px;
  font-size: 14px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: 0.3s;
  white-space: nowrap;
}

.book-btn:hover {
  background: var(--black);
}

/* Mobile */
@media (max-width: 768px) {
  .premium-header-right {
    display: none;
  }
}
/* ===== SVG ICON STYLING (EXACT MATCH) ===== */

.call-icon,
.search-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold); /* GOLD ICONS */
}

.search-icon {
  cursor: pointer;
  transition: 0.3s;
}

.search-icon:hover {
  color: var(--navy);
}
/* ================= SEARCH POPUP ================= */

.search-popup {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 2000;
}

.search-popup.active {
  display: block;
}

.search-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
}

.search-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 40px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  animation: zoomIn 0.4s ease;
}

.search-box input {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  border: 1px solid #ccc;
  outline: none;
  margin-bottom: 20px;
}

.search-box button {
  background: var(--gold);
  border: none;
  padding: 12px 30px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
}

.close-search {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  cursor: pointer;
  color: #000;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
/* ===== SEARCH SUGGESTIONS ===== */

.search-suggestions {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
  text-align: left;
  border: 1px solid #ddd;
  max-height: 180px;
  overflow-y: auto;
}

.search-suggestions li {
  padding: 12px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  transition: 0.3s;
}

.search-suggestions li:hover {
  background: var(--ivory);
}
/* ===== NAV FADE ON SHRINK ===== */

.top-header.shrink .header-nav a {
  opacity: 0.75;
  font-size: 14px;
}

.top-header.shrink .header-nav a:hover {
  opacity: 1;
}


/* ================= EXACT FOOTER STYLE ================= */

.luxury-footer {
  position: relative;
  background: #4a4b5f;
  color: #d6d6d6;
  padding: 110px 8% 0;
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1520975867597-0d6c9aaf6c03") center/cover no-repeat;
  opacity: 0.12;
}

.footer-inner {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  z-index: 2;
}

.footer-left h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  color: #fff;
  line-height: 1.35;
}

.footer-phone {
  margin: 25px 0;
  font-size: 22px;
  color: var(--gold);
}

/* BEFORE HOVER – SQUARE */
.footer-social a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  transition:
    border-radius 0.8s cubic-bezier(0.34, 1.56, 0.64, 1)
    background-color 0.35s ease,
    transform 0.35s ease;
}

/* ICON */
.footer-social svg {
  width: 18px;
  fill: #ffffff;
  transition: fill 0.35s ease;
}

/* AFTER HOVER – CIRCLE */
.footer-social a:hover {
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-3px); /* optional premium lift */
}

.footer-col h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: #cfcfcf;
  margin-bottom: 12px;
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin: 70px 0 40px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 60px;
}

.footer-bottom span {
  font-size: 13px;
}

.footer-bottom strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  margin-top: 8px;
  color: #fff;
}

.footer-copy {
  background: #3f4252;
  text-align: center;
  padding: 22px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}


/* ===== FADE IN ANIMATION ===== */

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  animation: footerFade 1s ease forwards;
}

@keyframes footerFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

/* ===== FOOTER FADE-IN ON SCROLL ===== */

.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
  }

  .scroll-top {
    right: 20px;
    bottom: 20px;
  }
}
.scroll-top {
  position: absolute;
  right: 40px;
  bottom: 40px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ddb892;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s;
  z-index: 3;
}

.scroll-top:hover {
  background: var(--gold);
}

/* ===== HERO TEXT INITIAL STATE ===== */

.hero-title,
.hero-welcome,
.hero-cta {
  opacity: 0;
}

/* ===== ANIMATION CLASSES ===== */

.animate-title {
  animation: fadeRight 1s ease forwards;
}

.animate-welcome {
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.8s;
}

.animate-cta {
  animation: fadeUp 1s ease forwards;
  animation-delay: 1.4s;
}

/* ===== KEYFRAMES ===== */

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.brand-box img {
  height: 74px;              /* Bigger logo */
  width: 74px;
  border-radius: 50%;        /* Round shape */
  object-fit: cover;         /* Perfect crop */
  border: 1.5px solid rgba(198,161,91,0.6); /* subtle gold ring */
  padding: 4px;              /* breathing space */
  background: #fff;
  transition: transform 0.4s ease;
}

/* Slight luxury hover */
.brand-box img:hover {
  transform: scale(1.05);
}

/* Shrink state (on scroll) */
.top-header.shrink .brand-box img {
  height: 58px;
  width: 58px;
}
@media (max-width: 768px) {
  .call-icon {
    animation: pulse 2.2s infinite;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(198,161,91,0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(198,161,91,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(198,161,91,0);
  }
}
/* ================= ABOUT PREMIUM ================= */

.about-premium {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  padding: 120px 8%;
  background: #fff;
}

/* LEFT SIDE */
.about-left {
  position: relative;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.about-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Experience Badge */
.experience-badge {
  position: absolute;
  left: -20px;
  top: 60px;
  width: 160px;
  height: 160px;
  background: #fff;
  border-radius: 50%;
  border: 2px dashed rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}

.experience-badge .years {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  color: var(--gold);
  font-weight: 700;
}

.experience-badge p {
  font-size: 14px;
  color: #444;
  line-height: 1.4;
}

/* RIGHT SIDE */
.about-right .section-tag {
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 15px;
}

.about-right h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
  color: #3f3f55;
  line-height: 1.2;
  margin-bottom: 25px;
}

.about-right p {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
}

/* Bullet Points */
.about-points {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}

.about-points li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 14px;
  font-size: 16px;
  color: #444;
}

.about-points li::before {
  content: "➝";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* Signature */
.about-signature {
  display: flex;
  align-items: center;
  gap: 15px;
}

.about-signature img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.about-signature span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--gold);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .about-premium {
    grid-template-columns: 1fr;
  }

  .experience-badge {
    position: static;
    margin-bottom: 30px;
  }
}
/* ================= SIGNATURE STYLE ================= */

.about-signature {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 35px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.about-signature.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Image with dotted circle */
.signature-image {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 2px dashed #ddb892;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.signature-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* Signature Font */
.signature-name {
  font-family: 'Allura', cursive;
  font-size: 38px;
  color: #ddb892;
  line-height: 1;
}
.about-signature:hover .signature-image {
  transform: rotate(-3deg);
  transition: 0.4s ease;
}
/* Signature SVG */
.signature-name svg {
  overflow: visible;
}

.signature-name text {
  font-family: 'Allura', cursive;
  font-size: 48px;
  fill: none;
  stroke: #ddb892;
  stroke-width: 1.8;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawSignature 2.5s ease forwards;
  animation-delay: 0.6s;
}

@keyframes drawSignature {
  to {
    stroke-dashoffset: 0;
  }
}
@media (max-width: 768px) {

  .about-signature {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .signature-image {
    width: 90px;
    height: 90px;
  }

  .signature-name svg {
    width: 240px;
    height: auto;
  }

  .signature-name text {
    font-size: 36px;
  }
}
/* ================= SERVICES PREMIUM ================= */

.services-slider-section {
  position: relative;
  padding: 80px 0 100px;
  background: #faf7f2;
  overflow: hidden;
  background:url(../images/about\ us.webp);
  background-repeat: no-repeat;
  background-size: cover;         
  text-align: center;
  background-position: center;
}
.services-header .mini-title {
  letter-spacing: 2px;
  font-size: 13px;
  color: var(--gold);
}

.services-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
  margin: 15px 0 60px;
  color: var(--navy);
}
.services-slider {
  display: flex;
  gap: 40px;
  transition: transform 1.6s ease-in-out;
  width: max-content;
  padding: 0 10%;
}

.service-card {
  min-width: 320px;
  background: #fff;
  padding: 50px 30px;
  text-align: center;
  border-radius: 10px;
   width: 320px;
  flex-shrink: 0;
}
/* ================= SERVICE IMAGE TILT ON HOVER ================= */

/* Smooth base state */
.service-img img {
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

/* Subtle tilt on hover (ONLY IMAGE) */
.service-card:hover .service-img img {
  transform: rotate(-4deg) scale(1.03);
}
.service-card:nth-child(even):hover .service-img img {
  transform: rotate(4deg) scale(1.03);
}

.service-card:nth-child(odd):hover .service-img img {
  transform: rotate(-4deg) scale(1.03);
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: #1f2a44;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}
.service-card.active h3 {
  color: #0b1c3d;
}

.service-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}
.service-card.active p {
  color: #444;
}
/* Arrows */
.srv-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.srv-arrow.left { left: 40px; }
.srv-arrow.right { right: 40px; }

/* Dots */
.srv-dots {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 10px;
}

.srv-dots span {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.srv-dots span.active {
  background: #c6a15b;
}

/* Mobile */
@media (max-width: 768px) {
  .services-slider {
    padding: 0 5%;
  }

  .service-card {
    min-width: 85%;
  }

  .srv-arrow {
    display: none;
  }
}
.stats-section{
  padding:80px 6%;
  background:#faf7f2;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}

/* COMMON */
.stat-box{
  height:260px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  position:relative;
  overflow:hidden;
}

/* IMAGE BLOCKS */
.image-box{
  background-size:cover;
  background-position:center;
}

.image-box .overlay{
  position:absolute;
  inset:0;
  background:rgba(40,40,60,0.75);
}

.stat-content{
  position:relative;
  z-index:2;
  color:#fff;
}

.stat-icon{
  width:46px;
  height:46px;
  margin-bottom:14px;
  stroke:#fff;
  fill:none;
  stroke-width:1.6;
}

.stat-content h4{
  font-size:20px;
  font-weight:500;
}

/* GOLD BLOCKS */
.gold-box{
  background:#ddb892;
  color:#fff;
  flex-direction:column;
}

.gold-box h2{
  font-size:46px;
  font-family:'Cormorant Garamond', serif;
}

.gold-box p{
  margin-top:10px;
  font-size:18px;
}

/* HOVER EFFECT */
.stat-box:hover{
  transform:translateY(-6px);
  transition:.4s ease;
}
@media(max-width:900px){
  .stats-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:500px){
  .stats-grid{
    grid-template-columns:1fr;
  }
}
/* ================= SUITS SERVICE SECTION ================= */

.suits-service-section {
  background: #4a4b5f;
  color: #fff;
  padding: 0;
}

/* TOP LAYOUT */
.suits-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: stretch;
}

.suits-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT CONTENT */
.suits-content {
  padding: 90px 80px;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  color: #ddb892;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.suits-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 25px;
}

.suits-content p {
  color: #d0d0d0;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}

/* BUTTON */
.outline-btn {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid #ddb892;
  color: #fff;
  text-decoration: none;
  letter-spacing: 2px;
  transition: all 0.4s ease;
}

.outline-btn:hover {
  background: #ddb892;
  color: #000;
}

/* FEATURES ROW */
.suits-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 70px 8%;
  gap: 0;
}

/* ===== WHY US SECTION ===== */
.why-us {
  background: #4b4b5c; /* exact dark tone */
  padding: 90px 0;
}

.why-us-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.why-item {
  padding: 0 40px;
  text-align: left;
  position: relative;
}

/* dashed vertical divider */
.why-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10px;
  height: 90%;
  border-right: 1px dashed rgba(255,255,255,0.2);
}

.why-icon {
  margin-bottom: 25px;
}

.why-icon i {
  display: inline-block;
  width: 46px;
  height: 46px;
  background-size: contain;
  background-repeat: no-repeat;
}
.why-icon svg {
  width: 56px;
  height: 56px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* GOLD LINE ICONS */
.icon-fabric {
  background-image: url("icons/fabric-gold.svg");
}

.icon-work {
  background-image: url("icons/work-gold.svg");
}

.icon-design {
  background-image: url("icons/design-gold.svg");
}

.icon-delivery {
  background-image: url("icons/delivery-gold.svg");
}

.why-item h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 14px;
}

.why-item p {
  color: #bdbdc7;
  line-height: 1.8;
  font-size: 15px;
}

.why-item {
  padding-right: 40px;
}

.why-item:not(:last-child) {
  border-right: 1px dashed rgba(255,255,255,0.15);
}
/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .why-us-inner {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 60px;
  }

  .why-item::after {
    display: none;
  }
}

@media (max-width: 576px) {
  .why-us-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .why-item p {
    margin: auto;
  }
}.why-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.why-item.show {
  opacity: 1;
  transform: translateY(0);
}
/* ================= TESTIMONIAL ================= */
.testimonial-section {
  display: flex;
  background: url(../images/Testimonial\ BG.png);
  padding: 90px 80px;
  gap: 60px;
}

.testimonial-left {
  flex: 1;
  color: #fff;
}

.testimonial-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  margin-bottom: 30px;
}

.testimonial-avatars {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
}

.testimonial-avatars img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
}

.testimonial-left blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.testimonial-name {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  opacity: 0.9;
}

.testimonial-right {
  flex: 1;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.testimonial-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.testimonial-section {
  background: #e3b58c;
  padding: 90px 80px;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  gap: 60px;
}

.testimonial-slide.active {
  display: flex;
}

.testimonial-left {
  flex: 1;
  color: #fff;
}

.testimonial-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  margin-bottom: 25px;
}

.testimonial-avatars {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}

.testimonial-avatars img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
}

.testimonial-left blockquote {
  font-size: 28px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.testimonial-name {
  font-size: 18px;
}

.testimonial-right {
  flex: 1;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.testimonial-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* MOBILE */
@media(max-width: 900px) {
  .testimonial-slide.active {
    flex-direction: column;
  }

  .testimonial-section {
    padding: 60px 20px;
  }

  .testimonial-left h2 {
    font-size: 36px;
  }

  .testimonial-left blockquote {
    font-size: 22px;
  }
}
.fade-section {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.testimonial-dots span {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dots span.active {
  background: #fff;
  transform: scale(1.2);
}
.team-section {
  padding: 120px 6%;
  text-align: center;
  background: #fff;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  color: #cfa47a;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  color: #1e2a3a;
  margin-bottom: 70px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.team-card {
  position: relative;
  text-align: center;
  overflow: visible;
}

.team-img img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.team-card:hover .team-img img {
  transform: scale(1.08);
}

.team-info-box {
  background: #fff;
  width: 85%;
  margin: -60px auto 0;
  padding: 30px 20px 25px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  position: relative;
  z-index: 2;
}

.team-info-box h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  margin-bottom: 6px;
}

.team-info-box span {
  font-size: 14px;
  color: #777;
  display: block;
  margin-bottom: 18px;
}

.team-social-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.team-social-icons a {
  width: 40px;
  height: 40px;
  background: #f6f1ec;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222;
  font-size: 16px;
  transition: 0.3s;
}
.team-social-icons a:hover {
  background: #c9a16b;
  color: #fff;
}
@media(max-width: 900px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .section-title {
    font-size: 34px;
  }
}
.team-card {
  text-align: center;
}

.team-img img {
  width: 100%;
  display: block;
}

/* WHITE INFO CARD */
.team-info-box {
  background: #ffffff;
  padding: 26px 20px 22px;
  margin: -45px auto 0;
  width: 82%;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* NAME */
.team-info-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: #1e2a3a;
  margin-bottom: 6px;
}

/* ROLE */
.team-info-box span {
  display: block;
  font-size: 14px;
  color: #8b8b8b;
  margin-bottom: 16px;
}

/* SOCIAL ICONS */
.team-social-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.team-social-icons a {
  width: 36px;
  height: 36px;
  background: #f6f1ec;
  color: #1e2a3a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: 0.3s ease;
}

/* HOVER EFFECT */
.team-social-icons a:hover {
  background: #cfa47a;
  color: #ffffff;
}

@media(max-width: 900px) {
  .team-info-box {
    width: 90%;
  }
}
.team-img {
  overflow: hidden;
}

.team-img img {
  transition: transform 0.6s ease;
}

.team-card:hover .team-img img {
  transform: scale(1.08);
}
.team-card {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.team-card.show {
  opacity: 1;
  transform: translateY(0);
}
.team-slider {
  display: flex;
  gap: 30px;
}

@media(max-width: 768px) {
  .team-slider {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .team-card {
    min-width: 85%;
    scroll-snap-align: center;
  }
}
.cta-strip {
  background: #e1b891; /* same warm beige */
  padding: 50px 0;
}

.cta-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}

.cta-call {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cta-icon {
  width: 60px;
  height: 60px;
  background: #3f3f53;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.cta-icon svg {
  width: 26px;
  height: 26px;
}

.cta-call-text span {
  font-size: 14px;
  color: #fff;
  opacity: 0.9;
}

.cta-call-text strong {
  display: block;
  font-size: 22px;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
}

.cta-text {
  color: #fff;
  max-width: 420px;
  font-size: 15px;
  line-height: 1.7;
}

.cta-btn {
  border: 1.5px solid #fff;
  color: #fff;
  padding: 14px 32px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.4s ease;
}

.cta-btn:hover {
  background: #fff;
  color: #3f3f53;
}
@media(max-width: 768px) {
  .cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-call {
    justify-content: center;
  }

  .cta-text {
    margin: 0 auto;
  }
}
.services-offer-section {
  background: url(../images/Our\ Services\ BG\ Image\ slide.png);
  padding: 90px 0 70px;
  text-align: center;
  position: relative;
}

.services-offer-section .mini-title {
  font-size: 13px;
  letter-spacing: 2px;
  color: #c9a16e;
}

.services-offer-section .section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  margin: 10px 0 50px;
  color: #1f2a44;
}

.services-carousel {
  overflow: hidden;
  max-width: 1200px;
  margin: auto;
}

.services-track {
  display: flex;
  transition: transform 0.6s ease;
}

.service-card {
  min-width: 33.333%;
  background: #ffffff;
  padding: 45px 30px;
  margin: 0 10px;
  border-radius: 6px;

  /* IMPORTANT */
  opacity: 1;
  transform: none;

  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.service-card.active {
  background: #f4efe9; /* light beige highlight */
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.service-img {
  width: 160px;
  height: 160px;
  margin: 0 auto 25px;
  border-radius: 50%;
  border: 2px dashed #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-img img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}

/* DOTS */
.services-dots {
  display: flex;
  justify-content: center;
  margin-top: 35px;
}

.services-dots span {
  width: 8px;
  height: 8px;
  background: #ddd;
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
}

.services-dots span.active {
  background: #c9a16e;
}

/* MOBILE */
@media (max-width: 768px) {
  .service-card {
    min-width: 100%;
    margin: 0;
  }
}
/* FADE-UP ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* INFINITE SLIDER FIX */
.services-track {
  will-change: transform;
}

/* ACTIVE CARD */
.service-card {
  transition: all 0.4s ease;
}

.team-showcase {
  padding: 120px 0;
  background: #fff;
  text-align: center;
}

.team-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  color: #c6a16e;
  margin-bottom: 12px;
}

.team-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  margin-bottom: 80px;
  color: #1e2a3a;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.tailor-card {
  position: relative;
  text-align: center;
}

.tailor-img {
  overflow: hidden;
}

.tailor-img img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.tailor-card:hover img {
  transform: scale(1.08);
}

/* WHITE INFO BOX */
.tailor-info {
  background: #ffffff;
  padding: 28px 25px 25px;
  width: 85%;
  margin: -70px auto 0;   /* 👈 OVERLAP IMAGE */
  position: relative;
  z-index: 2;

  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}


.tailor-info h3 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 600;
  color: #1c1c1c;
}

.tailor-info span {
  font-size: 14px;
  color: #777;
}

/* SOCIAL ICONS */
.tailor-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.tailor-socials a {
  width: 38px;
  height: 38px;
  background: #f7f2ec;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1c1c1c;
  font-size: 14px;
  transition: all 0.3s ease;
}


.tailor-socials a:hover {
  background: #ddb892;
  color: #fff;
}

/* FADE-UP */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .tailor-img img {
    height: 360px;
  }
}
/* ===== SCROLL TO TOP BUTTON ===== */
#scrollTopBtn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e3b98c; /* exact beige/gold tone */
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.35s ease;
  z-index: 9999;
}

/* SHOW STATE */
#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* HOVER */
#scrollTopBtn:hover {
  background: #d3a676;
  transform: translateY(-4px);
}

/* ICON */
#scrollTopBtn svg {
  transition: transform 0.3s ease;
}

#scrollTopBtn:hover svg {
  transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 768px) {
  #scrollTopBtn {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
}
/* Container */
.services-box {
  width: 260px;
  background: #ffffff;
  padding: 25px 25px 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-radius: 4px;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeDown 0.6s ease forwards;
}

/* Title */
.services-title {
  font-size: 18px;
  font-weight: 600;
  color: #2b2b2b;
  margin-bottom: 20px;
  position: relative;
}

.services-title::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #c9a16e;
  display: block;
  margin-top: 8px;
}

/* List */
.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-list li {
  border-bottom: 1px solid #eee;
}

.services-list li:last-child {
  border-bottom: none;
}

.services-list a {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover effect */
.services-list a:hover {
  color: #c9a16e;
  padding-left: 8px;
}

/* Fade Down Animation */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.services-wrapper:hover .services-box {
  opacity: 1;
  transform: translateY(0);
}/* Menu basic */
.main-nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

.menu-item {
  position: relative;
}

/* Dropdown box */
.services-dropdown {
  position: absolute;
  top: 120%;
  left: 0;
  width: 260px;
  background: #fff;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-radius: 6px;

  /* IMPORTANT */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px);
  transition: all 0.4s ease;
  z-index: 999;
}

/* Hover trigger */
.services-menu:hover .services-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Title */
.services-dropdown h4 {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
}

.services-dropdown h4::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #c9a16e;
  display: block;
  margin-top: 8px;
}

/* List */
.services-dropdown ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.services-dropdown li {
  border-bottom: 1px solid #eee;
}

.services-dropdown li:last-child {
  border-bottom: none;
}

.services-dropdown a {
  display: block;
  padding: 12px 0;
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover effect on items */
.services-dropdown a:hover {
  color: #c9a16e;
  padding-left: 8px;
}
/* ================= SCROLLED HEADER ================= */

.top-header.scrolled-header {
  height: 80px;
  padding: 0 70px;
  background: #ffffff;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo shrink & center align */
.top-header.scrolled-header .brand-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-header.scrolled-header .brand-box img {
  width: 48px;
  height: 48px;
}

/* Hide brand text (Taylor style) */
.top-header.scrolled-header .brand-text {
  display: none;
}

/* ================= NAV MATCH ================= */

.top-header.scrolled-header .header-nav {
  margin-left: auto;             
  display: flex;
  align-items: center;
  gap: 36px;
}

.top-header.scrolled-header .header-nav a {
  font-size: 16px;
  font-weight: 400;
  color: #6b7280;
}

.top-header.scrolled-header .header-nav a:hover {
  color: #111827;
}

/* ================= RIGHT SIDE CONTROL ================= */

/* Hide call info */
.top-header.scrolled-header .call-info,
.top-header.scrolled-header .header-divider,
.top-header.scrolled-header .book-btn {
  display: none;
}

/* Keep search icon visible */
.top-header.scrolled-header .search-icon {
  display: flex;
  align-items: center;
  color: #6b7280;
  cursor: pointer;
}

/* Align nav + search same line */
.top-header.scrolled-header .premium-header-right {
  display: flex;
  align-items: center;
  margin-left: 30px; 
}

.top-header.scrolled-header .brand-text {
  display: block !important;
  opacity: 1;
  transform: none;
}

.top-header.scrolled-header .brand-name {
  font-size: 20px;
  line-height: 1.1;
}
.top-header.scrolled-header .brand-tagline {
  font-size: 12px;
  line-height: 1.2;
  opacity: 0.85;
}
/* ================= HEADER SLIDE DOWN ANIMATION ================= */

/* Default state (before scroll) */
.top-header {
  transform: translateY(0);
  transition: 
    transform 0.45s ease,
    height 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

/* When scrolled */
.top-header.scrolled-header {
  animation: headerSlideDown 0.78s ease forwards;
}

/* Keyframes */
@keyframes headerSlideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.experience-section {
  padding: 100px 0;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* MAIN ROW */
.experience-row {
  position: relative;
  display: flex;
  align-items: center;
}

/* IMAGES WRAPPER */
.experience-images {
  display: flex;
  gap: 40px;
}

/* IMAGE SIZES EXACT */
.image-left img,
.image-right img {
  width: 420px;
  height: auto;
  display: block;
}

/* BADGE EXACT POSITION */
.experience-badge {
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}

/* BADGE STYLE */
.badge-inner {
  width: 180px;
  height: 180px;
  background: #ffffff;
  border-radius: 50%;
  border: 2px dashed #e6e6e6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.badge-inner h3 {
  font-size: 48px;
  color: #d4a373;
  margin: 0;
  font-family: "Georgia", serif;
}

.badge-inner p {
  font-size: 16px;
  color: #3e3e4e;
  line-height: 1.4;
  margin: 0;
}
/* INITIAL STATE (before scroll) */
.image-left img,
.image-right img {
  transform: translateY(0);
  transition: transform 1.6s ease;
}

/* ANIMATION STATE (after scroll trigger) */
.experience-row.animate .image-left img {
  transform: translateY(-50px); /* slide UP */
}

.experience-row.animate .image-right img {
  transform: translateY(50px);  /* slide DOWN */
}
.image-left {
  position: relative;
}

/* BADGE POSITION */
.experience-badge {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}

/* CIRCLE STYLE */
.badge-inner {
  width: 180px;
  height: 180px;
  background: #ffffff;
  border-radius: 50%;
  border: 2px dashed #e6e6e6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* NUMBER */
.badge-inner h3 {
  font-size: 48px;
  color: #d4a373;
  margin: 0;
  font-family: "Georgia", serif;
}

/* TEXT */
.badge-inner p {
  font-size: 16px;
  color: #3e3e4e;
  line-height: 1.4;
  margin: 0;
}
.image-right {
  position: relative;
}

/* BOTTOM HIGHLIGHT LINE */
.image-underline {
  position: absolute;
  bottom: -12px;
  left: 10%;
  width: 80%;
  height: 4px;
  background: #d4a373;
}
/* INITIAL STATE */
.image-left img,
.image-right img {
  transform: translateY(0);
  transition: transform 1.6s ease;
}

/* ANIMATION STATE */
.experience-row.animate .image-left img {
  transform: translateY(-40px);
}

.experience-row.animate .image-right img {
  transform: translateY(40px);
}

/* RETURN STATE */
.experience-row.return .image-left img,
.experience-row.return .image-right img {
  transform: translateY(0);
}
/* ===============================
   GLOBAL SCROLL FADE-UP ANIMATION
   =============================== */

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: opacity, transform;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.discover-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 60px;

  border: 1.5px solid #ddb892;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 2px;
  overflow: hidden;

  background: transparent;
}

/* TEXT always on top */
.discover-btn span {
  position: relative;
  z-index: 2;
  transition: color 0.4s ease;
}

/* SLIDING FILL — ONLY FROM LEFT */
.discover-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 0%;              /* START empty */
  height: 100%;
  background: #ddb892;

  z-index: 1;
  transition: width 1s ease; /* EXACT 1s */
}

/* HOVER STATE */
.discover-btn:hover::before {
  width: 100%;           /* LEFT → RIGHT */
}

/* TEXT COLOR AFTER FILL */
.discover-btn:hover span {
  color: #ffffff;
}
.service-title {
  margin: 20px 0 12px;
  font-size: 22px;
  font-weight: 600;
}

/* LINK */
.service-title a {
  color: #1c1c1c;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

/* UNDERLINE (hidden initially) */
.service-title a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #ddb892;
  transition: width 0.3s ease;
}

/* CARD HOVER EFFECT */
.service-card:hover .service-title a {
  color: #ddb892; /* golden */
}

.service-card:hover .service-title a {
  letter-spacing: 0.5px;
}
.tailor-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
}

/* ICON BOX (DEFAULT) */
.tailor-socials .social-icon {
  width: 40px;
  height: 40px;
  background: #f7f2ec;      /* light beige */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1c1c1c;
  font-size: 14px;
  text-decoration: none;

  border-radius: 0;         /* square before hover */
  transition: all 0.35s ease;
}

/* ICON */
.tailor-socials .social-icon i {
  transition: all 0.35s ease;
}

/* HOVER EFFECT (GOLD CIRCLE) */
.tailor-socials .social-icon:hover {
  background: #ddb892;      /* gold */
  border-radius: 50%;       /* circle on hover */
}

.tailor-socials .social-icon:hover i {
  color: #ffffff;           /* white icon */
}
.footer-social {
  display: flex;
  gap: 12px;
}

/* DEFAULT STATE */
.footer-social .footer-icon {
  width: 40px;
  height: 40px;
  background: rgb(64, 64, 102);      /* light beige */
  display: flex;
  align-items: center;
  justify-content: center;

  color: #1c1c1c;
  font-size: 14px;
  text-decoration: none;

  border-radius: 0;         /* square initially */
  transition: all 0.35s ease;
}

/* ICON */
.footer-social .footer-icon i {
  transition: color 0.35s ease;
}

/* HOVER STATE (GOLD CIRCLE) */
.footer-social .footer-icon:hover {
  background: #ddb892;      /* gold */
  border-radius: 50%;
}

.footer-social .footer-icon:hover i {
  color: #ffffff;
}
/* ===== TEAM SWIPER ===== */
.team-swiper {
  max-width: 1200px;
  margin: auto;
  padding-bottom: 60px;
}

.swiper-slide {
  height: auto;
}

/* COMING SOON CARD */
.coming-soon {
  height: 100%;
  background: #f7f2ec;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-inner {
  text-align: center;
}

.coming-inner h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  margin-bottom: 6px;
}

.coming-inner span {
  font-size: 14px;
  color: #777;
}

/* DOTS */
.team-dots {
  bottom: 0 !important;
}

.team-dots .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #ddd;
  opacity: 1;
}

.team-dots .swiper-pagination-bullet-active {
  background: #ddb892;
}

/* ICON HOVER (EXACT MATCH) */
.tailor-socials .social-icon {
  width: 38px;
  height: 38px;
  background: #f7f2ec;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1c1c1c;
  transition: all 0.35s ease;
}

.tailor-socials .social-icon:hover {
  background: #ddb892;
  border-radius: 50%;
}

.tailor-socials .social-icon:hover i {
  color: #fff;
}
/* ===============================
   SERVICES – FINAL UNIFIED STYLE
   =============================== */

/* CARD */
.services-offer-section .service-card {
  min-width: 33.333%;
  background: #ffffff;
  padding: 45px 30px;
  margin: 0 10px;
  border-radius: 6px;
  transition: all 0.4s ease;
}

/* ACTIVE CARD */
.services-offer-section .service-card.active {
  background: #f4efe9;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* OUTER CIRCLE */
.services-offer-section .service-img {
  width: 180px;
  height: 180px;
  margin: 0 auto 25px;
  border-radius: 50%;
  border: 2px dashed #ddd;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* INNER IMAGE */
.services-offer-section .service-img img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;

  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* HOVER TILT (IMAGE ONLY) */
.services-offer-section .service-card:hover .service-img img {
  transform: rotate(-4deg) scale(1.05);
}

.services-offer-section .service-card:nth-child(even):hover .service-img img {
  transform: rotate(4deg) scale(1.05);
}

/* TITLE */
.services-offer-section .service-title {
  margin: 18px 0 10px;
  font-size: 22px;
  font-weight: 600;
}

.services-offer-section .service-title a {
  color: #1c1c1c;
  text-decoration: none;
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.services-offer-section .service-card:hover .service-title a {
  color: #ddb892;
  letter-spacing: 0.4px;
}

/* DESCRIPTION */
.services-offer-section .service-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}

/* MOBILE */
@media (max-width: 768px) {
  .services-offer-section .service-card {
    min-width: 100%;
    margin: 0;
  }

  .services-offer-section .service-img {
    width: 160px;
    height: 160px;
  }

  .services-offer-section .service-img img {
    width: 125px;
    height: 125px;
  }
}

#team::before {
  content: "";
  display: block;
  height: 130px;
  margin-top: -130px;
}

#team {
  scroll-margin-top: 130px; /* header height ke according */
}
.luxury-footer a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.footer-col a:hover,
.footer-bottom a:hover {
  color: var(--gold);
}

.footer-bottom a {
  display: inline-block;
  margin-top: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: #fff;
}
/* ===== CINEMATIC INTRO (MM STYLE | RESPONSIVE) ===== */

#intro-screen {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #f7f1e6, #efe2c6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  animation: introFadeOut 1.2s ease forwards;
  animation-delay: 3.2s;
}

.intro-inner {
  text-align: center;
  transform: scale(0.94);
  animation: introScale 1.6s ease forwards;
}

/* CIRCULAR LOGO */
.intro-logo-wrap {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  padding: 10px;
  background: radial-gradient(circle, #d4b07a, #b8955f);
  margin: 0 auto 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow:
    0 0 0 6px rgba(212,176,122,0.25),
    0 18px 36px rgba(0,0,0,0.12);
  animation: logoReveal 1.4s ease forwards;
}

.intro-logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}

/* BRAND TEXT */
.intro-text span {
  opacity: 0;
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: #b8955f;
  letter-spacing: 3px;
  transform: translateY(16px);
  animation: letterReveal 0.5s ease forwards;
}

/* ===== DESKTOP ===== */
@media (min-width: 769px) {
  .intro-text span {
    font-size: 42px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .intro-logo-wrap {
    width: 110px;
    height: 110px;
    margin-bottom: 18px;
  }

  .intro-text span {
    font-size: 28px;
    letter-spacing: 2px;
  }

  #intro-screen {
    animation-delay: 2.8s;
  }
}

/* ===== KEYFRAMES ===== */

@keyframes logoReveal {
  from { opacity: 0; transform: scale(0.78); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes letterReveal {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes introScale {
  to { transform: scale(1); }
}

@keyframes introFadeOut {
  to { opacity: 0; visibility: hidden; }
}
/* ===== TAGLINE ===== */
.intro-tagline {
  margin-top: 14px;
}

.intro-tagline span {
  opacity: 0;
  display: inline-block;
  font-family: 'Allura', cursive;
  font-size: 30px;
  color: #9c7c46; /* softer gold */
  transform: translateY(14px);
  animation: taglineReveal 0.45s ease forwards;
}

/* Mobile */
@media (max-width: 768px) {
  .intro-tagline span {
    font-size: 22px;
  }
}

@keyframes taglineReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===== LUXURY POLISH ADDITIONS ===== */

/* GOLD DIVIDER */
.intro-divider {
  width: 120px;
  height: 1.5px;
  margin: 18px auto 0;
  background: linear-gradient(
    to right,
    transparent,
    #b8955f,
    transparent
  );
  opacity: 0;
  animation: dividerReveal 0.8s ease forwards;
  animation-delay: 3s;
}

/* LOGO PULSE GLOW */
.intro-logo-wrap::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(212,176,122,0.45),
    rgba(212,176,122,0),
    transparent
  );
  animation: pulseGlow 3s ease-in-out infinite;
  z-index: -1;
}

/* INTRO BLUR EFFECT */
body.intro-active main,
body.intro-active header,
body.intro-active section,
body.intro-active footer {
  filter: blur(8px);
}

/* REMOVE BLUR SMOOTHLY */
body.intro-fadeout header,
body.intro-fadeout section,
body.intro-fadeout footer {
  filter: blur(0);
  transition: filter 1.2s ease;
}

/* ===== KEYFRAMES ===== */

@keyframes pulseGlow {
  0% { transform: scale(0.95); opacity: 0.45; }
  50% { transform: scale(1.05); opacity: 0.65; }
  100% { transform: scale(0.95); opacity: 0.45; }
}

@keyframes dividerReveal {
  to { opacity: 1; }
}

/* MOBILE TWEAKS */
@media (max-width: 768px) {
  .intro-divider {
    width: 90px;
    margin-top: 14px;
  }
}
/* ===== CLICKABLE CALL SECTION ===== */

.call-info {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* ICON BASE */
.call-icon {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid #d4b07a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b8955f;
  transition: color 0.3s ease;
}

/* HOVER RING */
.call-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid #d4b07a;
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.4s ease;
}

/* HOVER EFFECT */
.call-info:hover .call-ring {
  opacity: 1;
  transform: scale(1);
}

.call-info:hover .call-icon {
  color: #9c7c46;
}

/* TEXT */
.call-text span {
  font-size: 12px;
  color: #8a8a8a;
  gap: 12px;
}

.call-text strong {
  font-size: 15px;
  font-weight: 450;
  color: #000;
}

/* REMOVE BLUE LINK COLOR */
.call-info:visited,
.call-info:active {
  color: inherit;
}
