/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --off-white: #faf9f7;
  --beige: #e8e0d5;
  --beige-light: #f3efe9;
  --gold: #b8956a;
  --gold-light: #d4b896;
  --gold-dark: #96744e;
  --charcoal: #2c2c2c;
  --grey: #8a8a8a;
  --grey-light: #c5c5c5;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--charcoal);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== UTILITY ===== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-padding {
  padding: 100px 0;
}

.text-center {
  text-align: center;
}

.gold-accent {
  color: var(--gold);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--black);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  margin-bottom: 15px;
}

p {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--grey);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-divider {
  width: 60px;
  height: 1px;
  background-color: var(--gold);
  margin: 25px auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 45px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.btn-primary {
  background-color: var(--black);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--gold);
  color: var(--white);
}

.btn-outline {
  background-color: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}

.btn-outline:hover {
  background-color: var(--black);
  color: var(--white);
}

.btn-gold {
  background-color: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background-color: var(--gold-dark);
}

.btn-white {
  background-color: var(--white);
  color: var(--black);
}

.btn-white:hover {
  background-color: var(--gold);
  color: var(--white);
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 25px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.97);
  padding: 15px 0;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
}

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

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--white);
  text-transform: uppercase;
  transition: var(--transition);
}

.navbar.scrolled .nav-logo {
  color: var(--black);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding-bottom: 3px;
}

.navbar.scrolled .nav-links a {
  color: var(--charcoal);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
  color: var(--gold);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 1.5px;
  background-color: var(--white);
  transition: var(--transition);
}

.navbar.scrolled .hamburger span {
  background-color: var(--black);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding: 0 20px;
}

.hero-content .section-subtitle {
  color: var(--gold-light);
  margin-bottom: 20px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 300;
}

.hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  letter-spacing: 0.15em;
  margin-bottom: 40px;
}

.hero .btn {
  margin-top: 10px;
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
  background-color: var(--white);
}

.about-preview .content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-preview .image-side {
  position: relative;
  overflow: hidden;
}

.about-preview .image-side img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

.about-preview .image-side::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold);
  z-index: -1;
}

.about-preview .text-side p {
  margin-bottom: 15px;
}

.about-preview .text-side .btn {
  margin-top: 20px;
}

/* ===== SERVICES PREVIEW ===== */
.services-preview {
  position: relative;
  background-color: var(--off-white);
}

.services-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(4px);
  transform: scale(1.05);
}

.services-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(248, 249, 247, 0.88);
}

.services-preview .container {
  position: relative;
  z-index: 2;
}

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

.service-card {
  background-color: var(--white);
  text-align: center;
  overflow: hidden;
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.service-card .card-image {
  height: 320px;
  overflow: hidden;
}

.service-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.service-card:hover .card-image img {
  transform: scale(1.05);
}

.service-card .card-content {
  padding: 35px 30px;
}

.service-card h3 {
  font-family: var(--font-heading);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.85rem;
}

/* ===== WHY CHOOSE US ===== */
.why-us {
  position: relative;
  background-color: var(--white);
  overflow: hidden;
}

.why-us-intro {
  max-width: 720px;
  margin: 0 auto;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: #6f6a62;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 55px;
}

.why-us-item {
  position: relative;
  text-align: center;
  padding: 44px 28px 36px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(184, 149, 106, 0.2);
  border-bottom: 2px solid transparent;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.why-us-item:hover {
  transform: translateY(-6px);
  border-bottom-color: var(--gold);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.why-us-item .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(184, 149, 106, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
}

.why-us-item .icon svg {
  width: 34px;
  height: 34px;
  stroke: var(--gold);
  stroke-width: 1.1;
  fill: none;
}

.why-us-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.why-us-item p {
  font-size: 0.85rem;
  color: #777168;
}

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 15px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  margin-bottom: 35px;
}

/* ===== ABOUT PAGE ===== */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-hero .hero-bg::after {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

.page-hero h1 {
  color: var(--white);
  position: relative;
  z-index: 2;
}

.page-hero .section-subtitle {
  position: relative;
  z-index: 2;
  color: var(--gold-light);
}

/* Brand Story */
.brand-story {
  background-color: var(--white);
}

.brand-story .content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.brand-story .text-side p {
  margin-bottom: 15px;
}

.brand-story .image-side img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* Mission & Vision */
.mission-vision {
  position: relative;
  background-color: var(--off-white);
}

.mv-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(4px);
  transform: scale(1.05);
}

.mv-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
}

.mission-vision .container {
  position: relative;
  z-index: 2;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
}

.mv-card {
  padding: 50px 40px;
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom: 2px solid var(--gold);
  backdrop-filter: blur(10px);
}

.mv-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.mv-card p {
  font-size: 0.9rem;
}

/* Services Detail */
.services-detail {
  background-color: var(--white);
}

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.service-detail-card {
  position: relative;
  padding: 60px 35px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  transition: var(--transition);
  border-bottom: 2px solid transparent;
}

.service-detail-card .card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(2px);
  transform: scale(1.05);
  transition: var(--transition-slow);
}

.service-detail-card .card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.service-detail-card:hover .card-bg {
  filter: blur(3px);
  transform: scale(1.1);
}

.service-detail-card:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-detail-card .service-icon {
  position: relative;
  z-index: 2;
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-detail-card .service-icon svg {
  width: 45px;
  height: 45px;
  stroke: var(--gold-light);
  stroke-width: 1.2;
  fill: none;
}

.service-detail-card h3 {
  position: relative;
  z-index: 2;
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--white);
}

.service-detail-card p {
  position: relative;
  z-index: 2;
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  background-color: var(--white);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
  padding-top: 20px;
}

.contact-info h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-detail .icon-wrap {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--beige);
  flex-shrink: 0;
}

.contact-detail .icon-wrap svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  stroke-width: 1.5;
  fill: none;
}

.contact-detail p {
  margin-bottom: 0;
}

.contact-detail a {
  color: var(--charcoal);
}

.contact-detail a:hover {
  color: var(--gold);
}

/* Contact Form */
.contact-form-wrapper {
  background-color: var(--off-white);
  padding: 50px 45px;
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--charcoal);
  background-color: var(--white);
  border: 1px solid var(--beige);
  outline: none;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

.contact-form textarea {
  height: 150px;
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
  margin-top: 5px;
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--black);
  padding: 80px 0 40px;
  color: var(--white);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .footer-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 15px;
}

.footer-brand .tagline {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 350px;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 25px;
}

.footer-links a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--gold);
  background-color: var(--gold);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
  fill: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.1em;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

/* ===== ANIMATIONS ===== */

/* -- Keyframes -- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(50px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(-50px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes growWidth {
  from { width: 0; }
  to   { width: 60px; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulseRing {
  0%   { transform: scale(1);   box-shadow: 0 0 0 0   rgba(37,211,102,0.45); }
  70%  { transform: scale(1.06);box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { transform: scale(1);   box-shadow: 0 0 0 0   rgba(37,211,102,0); }
}
@keyframes loaderFade {
  0%   { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; }
}

/* -- Page Loader -- */
.page-loader {
  position: fixed;
  inset: 0;
  background-color: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: loaderFade 0.6s ease 0.8s forwards;
  pointer-events: none;
}
.page-loader .loader-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  animation: fadeUp 0.7s ease 0.1s both;
}
.page-loader .loader-logo span {
  color: var(--gold);
}

/* -- Hero Entrance -- */
.hero-content .hero-tag {
  animation: fadeDown 0.8s ease 0.9s both;
}
.hero-content h1 {
  animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 1.1s both;
}
.hero-content .hero-sub {
  animation: fadeUp 0.8s ease 1.3s both;
}
.hero-content .btn {
  animation: scaleIn 0.7s ease 1.55s both;
}

/* -- Scroll Reveal: base -- */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.85s cubic-bezier(0.22,1,0.36,1),
              transform 0.85s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* -- Directional Variants -- */
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.85s cubic-bezier(0.22,1,0.36,1),
              transform 0.85s cubic-bezier(0.22,1,0.36,1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.85s cubic-bezier(0.22,1,0.36,1),
              transform 0.85s cubic-bezier(0.22,1,0.36,1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.85s cubic-bezier(0.22,1,0.36,1),
              transform 0.85s cubic-bezier(0.22,1,0.36,1);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* -- Stagger Delays -- */
.reveal-delay-1,
.reveal-left.reveal-delay-1,
.reveal-right.reveal-delay-1,
.reveal-scale.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2,
.reveal-left.reveal-delay-2,
.reveal-right.reveal-delay-2,
.reveal-scale.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3,
.reveal-left.reveal-delay-3,
.reveal-right.reveal-delay-3,
.reveal-scale.reveal-delay-3 { transition-delay: 0.45s; }

/* -- Animated Section Divider -- */
.section-divider.visible {
  animation: growWidth 0.7s cubic-bezier(0.22,1,0.36,1) both;
}

/* -- Button: gradient slide fill -- */
.btn-primary {
  background-image: linear-gradient(to right, var(--gold) 50%, var(--black) 50%);
  background-size: 205%;
  background-position: right center;
  transition: background-position 0.45s cubic-bezier(0.22,1,0.36,1),
              color 0.3s ease;
}
.btn-primary:hover {
  background-color: transparent;
  background-position: left center;
  color: var(--white);
}

.btn-gold {
  background-image: linear-gradient(to right, var(--gold-dark) 50%, var(--gold) 50%);
  background-size: 205%;
  background-position: right center;
  transition: background-position 0.45s cubic-bezier(0.22,1,0.36,1),
              color 0.3s ease;
}
.btn-gold:hover {
  background-color: transparent;
  background-position: left center;
  color: var(--white);
}

.btn-white {
  background-image: linear-gradient(to right, var(--gold) 50%, var(--white) 50%);
  background-size: 205%;
  background-position: right center;
  transition: background-position 0.45s cubic-bezier(0.22,1,0.36,1),
              color 0.3s ease;
}
.btn-white:hover {
  background-color: transparent;
  background-position: left center;
  color: var(--white);
}

.btn-outline {
  background-image: linear-gradient(to right, var(--black) 50%, transparent 50%);
  background-size: 205%;
  background-position: right center;
  transition: background-position 0.45s cubic-bezier(0.22,1,0.36,1),
              color 0.3s ease;
}
.btn-outline:hover {
  background-color: transparent;
  background-position: left center;
  color: var(--white);
}

/* -- WhatsApp Pulse -- */
.whatsapp-float {
  animation: pulseRing 2.4s ease-in-out infinite;
}

/* -- Image Hover Pan -- */
.service-card .card-image img,
.brand-story .image-side img,
.about-preview .image-side img {
  transition: transform 0.9s cubic-bezier(0.22,1,0.36,1);
}
.service-card:hover .card-image img,
.brand-story .image-side:hover img,
.about-preview .image-side:hover img {
  transform: scale(1.06);
}

/* -- Nav link hover line -- */
.nav-links a::after {
  transition: width 0.35s cubic-bezier(0.22,1,0.36,1);
}

/* -- Footer social hover -- */
.footer-social a {
  transition: background-color 0.35s ease, border-color 0.35s ease,
              transform 0.3s ease;
}
.footer-social a:hover {
  transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-preview .content-wrapper,
  .brand-story .content-wrapper {
    gap: 50px;
  }

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

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

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

@media (max-width: 768px) {
  .section-padding {
    padding: 70px 0;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    transition: var(--transition);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    color: var(--charcoal) !important;
    font-size: 0.85rem;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--gold) !important;
  }

  .about-preview .content-wrapper,
  .brand-story .content-wrapper,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-preview .image-side::before {
    display: none;
  }

  .about-preview .image-side img,
  .brand-story .image-side img {
    height: 350px;
  }

  .services-grid,
  .services-detail-grid,
  .why-us-grid,
  .mv-grid {
    grid-template-columns: 1fr;
  }

  .why-us-intro {
    font-size: 0.82rem;
    max-width: 95%;
  }

  .why-us-item {
    padding: 36px 22px 30px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero {
    min-height: 600px;
  }

  .page-hero {
    height: 45vh;
    min-height: 300px;
  }

  .cta-bg {
    background-attachment: scroll;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .container {
    width: 92%;
  }

  .btn {
    padding: 14px 35px;
    font-size: 0.7rem;
  }

  .contact-form-wrapper {
    padding: 35px 25px;
  }
}
