/* ==========================================================================
   SHARANYA MARBLES - LUXURY DESIGN SYSTEM
   "QUALITY YOU SEE, SERVICE YOU TRUST"
   ========================================================================== */

/* --- GOOGLE FONTS IMPORT --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800&family=Outfit:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* --- CSS VARIABLES & TOKENS --- */
:root {
  /* Brand Color Palette - Derived from Sharanya Marbles Authentic Logo */
  --navy: #0B1320;
  --navy-dark: #060B12;
  --navy-light: #142236;
  --navy-card: #0E1928;
  --navy-glass: rgba(11, 19, 32, 0.96);

  --gold: #C5A059;
  --gold-light: #DFB96C;
  --gold-lighter: #F0D698;
  --gold-dark: #9A782F;
  --gold-gradient: linear-gradient(135deg, #DFB96C 0%, #C5A059 45%, #DFB96C 70%, #9A782F 100%);
  --gold-gradient-subtle: linear-gradient(135deg, rgba(197, 160, 89, 0.12) 0%, rgba(223, 185, 108, 0.04) 100%);

  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --light-gray: #EAEFF5;
  --border-light: #E2E8F0;
  --dark-text: #0B1320;
  --body-text: #334155;
  --muted-text: #64748B;

  --border-gold: rgba(197, 160, 89, 0.35);
  --border-gold-subtle: rgba(197, 160, 89, 0.18);

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(11, 19, 32, 0.08);
  --shadow-lg: 0 20px 50px rgba(11, 19, 32, 0.14);
  --shadow-gold: 0 10px 25px rgba(197, 160, 89, 0.28);
  --shadow-navy: 0 15px 35px rgba(6, 11, 18, 0.4);

  /* Typography */
  --font-serif: 'Cinzel', 'Georgia', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-accent: 'Outfit', sans-serif;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-smooth: 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container-max: 1280px;
  --header-height: 85px;
  --topbar-height: 42px;
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
}

/* --- GLOBAL RESET & BASE STYLES --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--body-text);
  background-color: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}

button {
  cursor: pointer;
}

::selection {
  background-color: var(--gold);
  color: var(--navy);
}

/* --- TYPOGRAPHY UTILITIES --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.5px;
}

.text-gold {
  color: var(--gold) !important;
}

.text-gold-light {
  color: var(--gold-light) !important;
}

.text-navy {
  color: var(--navy) !important;
}

.text-white {
  color: var(--white) !important;
}

.text-muted {
  color: var(--muted-text) !important;
}

.font-accent {
  font-family: var(--font-accent);
}

.font-serif {
  font-family: var(--font-serif);
}

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-fluid {
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

/* --- SECTION SYSTEM --- */
.section {
  padding: 100px 0;
  position: relative;
}

.section-sm {
  padding: 60px 0;
}

.section-lg {
  padding: 130px 0;
}

.bg-white {
  background-color: var(--white);
}

.bg-light {
  background-color: var(--off-white);
  background-image: url('../assets/images/marble-pattern.svg');
  background-repeat: repeat;
}

.bg-navy {
  background-color: var(--navy);
  color: var(--white);
  background-image: url('../assets/images/marble-dark-pattern.svg');
  background-repeat: repeat;
}

.bg-navy-dark {
  background-color: var(--navy-dark);
  color: var(--white);
}

/* Section Header Component */
.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px auto;
}

.section-header.text-left {
  text-align: left;
  margin-left: 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-tag::before,
.section-tag::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: var(--gold-gradient);
}

.section-header.text-left .section-tag::after {
  display: none;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 18px;
}

.bg-navy .section-title {
  color: var(--white);
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 16px auto 20px auto;
}

.section-header.text-left .section-divider {
  justify-content: flex-start;
  margin-left: 0;
}

.section-divider .divider-line {
  width: 50px;
  height: 1.5px;
  background: var(--gold-gradient);
}

.section-divider .divider-diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}

.section-description {
  font-size: 1.05rem;
  color: var(--body-text);
}

.bg-navy .section-description {
  color: rgba(255, 255, 255, 0.8);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--navy);
  font-weight: 700;
  box-shadow: var(--shadow-gold);
  border: 1px solid var(--gold-light);
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: var(--transition-slow);
  z-index: -1;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(201, 162, 39, 0.4);
  color: var(--navy-dark);
}

.btn-gold:hover::before {
  left: 100%;
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold-gradient);
  color: var(--navy);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-navy {
  background: var(--navy);
  color: var(--gold);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-navy);
}

.btn-navy:hover {
  background: var(--navy-light);
  color: var(--gold-light);
  transform: translateY(-3px);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.btn i {
  font-size: 0.9em;
  transition: transform var(--transition-fast);
}

.btn:hover i {
  transform: translateX(4px);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

/* Top Information Bar */
.top-bar {
  background-color: var(--navy-dark);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1001;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-info-item i {
  color: var(--gold);
  font-size: 0.9rem;
}

.top-info-item a:hover {
  color: var(--gold-light);
}

.top-social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  transition: var(--transition-fast);
}

.top-social a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

/* Main Navbar */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.28);
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(11, 19, 32, 0.06);
}

.navbar.scrolled {
  height: 72px;
  background: rgba(255, 255, 255, 0.99);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(11, 19, 32, 0.12);
  border-bottom: 1px solid var(--border-gold);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 4px 0;
}

.brand-logo {
  height: 56px;
  max-height: 56px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.navbar.scrolled .brand-logo {
  height: 48px;
  max-height: 48px;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-accent);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--navy);
  position: relative;
  padding: 8px 0;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--gold-gradient);
  transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Mobile Hamburger Button */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  background: transparent;
  cursor: pointer;
  z-index: 1002;
}

.nav-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.nav-toggle.open span {
  background: var(--gold);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* Mobile Navigation Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85%;
  height: 100vh;
  background: var(--navy-dark);
  border-left: 1px solid var(--border-gold);
  padding: 80px 24px 40px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 999;
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.5);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-brand-card {
  display: inline-flex;
  align-items: center;
  background: #FFFFFF;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid rgba(197, 160, 89, 0.4);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  margin-bottom: 24px;
}

.mobile-drawer-brand-card img {
  height: 44px;
  width: auto;
  display: block;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-links .nav-link {
  font-size: 1.1rem;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-drawer-footer {
  margin-top: 30px;
}

.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 998;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  min-height: calc(100vh - var(--header-height) - var(--topbar-height));
  position: relative;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  color: var(--white);
  padding: 100px 0 140px 0;
  overflow: hidden;
}

/* Hero Background Image with Luxury Dark Overlay */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(135deg, rgba(11, 27, 51, 0.92) 0%, rgba(11, 27, 51, 0.78) 50%, rgba(5, 14, 27, 0.95) 100%),
    url('../assets/images/page-banner.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
  transform: scale(1.03);
  transition: transform 10s ease;
}

.hero:hover .hero-bg {
  transform: scale(1.06);
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(201, 162, 39, 0.15) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 2;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold-light);
  margin-bottom: 24px;
  animation: fadeInDown 1s ease both;
}

.hero-badge i {
  color: var(--gold);
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-title .text-gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 680px;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-bottom: 50px;
  animation: fadeInUp 1s ease 0.6s both;
}

.hero-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  animation: fadeInUp 1s ease 0.8s both;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
}

/* Scroll Down Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.mouse-icon {
  width: 22px;
  height: 36px;
  border: 2px solid var(--gold);
  border-radius: 12px;
  position: relative;
}

.mouse-wheel {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: mouseScroll 1.8s infinite;
}

@keyframes mouseScroll {
  0% {
    transform: translate(-50%, 0);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, 14px);
    opacity: 0;
  }
}

/* ==========================================================================
   TRUST / QUICK SERVICES SECTION
   ========================================================================== */
.quick-services-section {
  position: relative;
  z-index: 10;
  margin-top: -60px;
  padding-bottom: 60px;
}

.quick-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.quick-service-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.quick-service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.quick-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.quick-service-card:hover::after {
  transform: scaleX(1);
}

.quick-service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-sm);
  background: var(--gold-gradient-subtle);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--gold-dark);
  font-size: 1.5rem;
  transition: var(--transition-smooth);
}

.quick-service-card:hover .quick-service-icon {
  background: var(--gold-gradient);
  color: var(--navy);
  transform: rotate(6deg) scale(1.05);
}

.quick-service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--navy);
}

.quick-service-card p {
  font-size: 0.95rem;
  color: var(--body-text);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.quick-service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.5px;
}

.quick-service-link i {
  transition: transform var(--transition-fast);
}

.quick-service-card:hover .quick-service-link i {
  transform: translateX(5px);
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-main-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.about-accent-frame {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  border-radius: var(--border-radius-md);
  z-index: -1;
}

.about-experience-badge {
  position: absolute;
  bottom: -25px;
  right: -20px;
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--border-radius-md);
  padding: 24px 30px;
  box-shadow: var(--shadow-navy);
  text-align: center;
}

.about-badge-number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.about-badge-text {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.about-content .section-title {
  margin-bottom: 22px;
}

.about-lead {
  font-size: 1.15rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-body-text {
  margin-bottom: 30px;
  color: var(--body-text);
}

.about-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--navy);
}

.about-feature-item i {
  color: var(--gold);
  font-size: 1.1rem;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 28px;
  background: var(--navy);
  border: 1px solid var(--border-gold);
  border-radius: var(--border-radius-md);
  margin-top: 40px;
}

.about-stat-box {
  text-align: center;
}

.about-stat-val {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

.about-stat-lbl {
  font-size: 0.8rem;
  font-family: var(--font-accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   SERVICES DETAILED SECTION
   ========================================================================== */
.services-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.service-card-luxury {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.service-card-luxury:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.service-img-container {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.service-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card-luxury:hover .service-img-container img {
  transform: scale(1.08);
}

.service-card-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--navy-glass);
  color: var(--gold);
  border: 1px solid var(--border-gold);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-family: var(--font-accent);
  font-weight: 600;
  letter-spacing: 1px;
}

.service-card-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-icon-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.service-mini-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-sm);
  background: var(--gold-gradient-subtle);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.25rem;
}

.service-card-content h3 {
  font-size: 1.5rem;
  color: var(--navy);
}

.service-card-content p {
  color: var(--body-text);
  margin-bottom: 20px;
}

.service-points-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.service-point-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 500;
}

.service-point-item i {
  color: var(--gold);
  font-size: 0.8rem;
}

.service-card-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ==========================================================================
   BEFORE & AFTER MARBLE POLISHING COMPARISON SECTION
   ========================================================================== */
.before-after-wrapper {
  max-width: 960px;
  margin: 0 auto;
  background: var(--navy);
  border: 1px solid var(--border-gold);
  border-radius: var(--border-radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-navy);
}

.before-after-slider-container {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  user-select: none;
  touch-action: pan-y;
  cursor: ew-resize;
}

.before-img,
.after-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.after-img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
  border-right: 2px solid var(--gold);
  box-shadow: 5px 0 20px rgba(0, 0, 0, 0.4);
}

.after-img-wrapper .after-img {
  width: 960px;
  /* matched container */
  max-width: none;
}

.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--gold-gradient);
  z-index: 10;
  transform: translateX(-50%);
  pointer-events: none;
}

.slider-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: var(--navy);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  box-shadow: var(--shadow-gold);
  font-size: 1rem;
}

.slider-label {
  position: absolute;
  bottom: 20px;
  padding: 8px 18px;
  border-radius: 40px;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  z-index: 5;
  pointer-events: none;
}

.label-before {
  right: 20px;
  background: rgba(17, 24, 39, 0.85);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.label-after {
  left: 20px;
  background: rgba(11, 27, 51, 0.85);
  color: var(--gold);
  border: 1px solid var(--gold);
}

.before-after-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  background: var(--navy-card);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--border-radius-md);
  padding: 36px 30px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(201, 162, 39, 0.12), transparent 70%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.why-card:hover::before {
  opacity: 1;
}

.why-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.15);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 22px;
  transition: var(--transition-smooth);
}

.why-card:hover .why-icon-box {
  background: var(--gold-gradient);
  color: var(--navy);
  transform: scale(1.1);
}

.why-card h3 {
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 14px;
}

.why-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ==========================================================================
   PROCESS TIMELINE SECTION
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 5%;
  width: 90%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  z-index: 1;
}

.process-step {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 10px;
}

.process-number-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.process-step:hover .process-number-circle {
  background: var(--gold-gradient);
  color: var(--navy);
  transform: scale(1.12);
  box-shadow: var(--shadow-gold);
}

.process-step h4 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--body-text);
  line-height: 1.5;
}

/* ==========================================================================
   GALLERY & LIGHTBOX
   ========================================================================== */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 45px;
}

.filter-btn {
  padding: 10px 24px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 50px;
  font-family: var(--font-accent);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item {
  position: relative;
  height: 320px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.gallery-item.hide {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(11, 27, 51, 0.92) 0%, rgba(11, 27, 51, 0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item-tag {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.gallery-item-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 8px;
}

.gallery-zoom-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.9);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transform: scale(0.7);
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-zoom-icon {
  transform: scale(1);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 14, 27, 0.96);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-image-wrapper {
  position: relative;
  max-width: 1000px;
  max-height: 75vh;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-gold);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

.lightbox-image {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  display: block;
}

.lightbox-caption {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-top: 16px;
  text-align: center;
}

.lightbox-counter {
  color: var(--gold);
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-top: 6px;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(11, 27, 51, 0.8);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-nav:hover {
  background: var(--gold-gradient);
  color: var(--navy);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 40px;
}

.lightbox-next {
  right: 40px;
}

/* ==========================================================================
   TESTIMONIALS CAROUSEL SECTION
   ========================================================================== */
.testimonial-slider-container {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 20px 0 50px 0;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 15px;
}

.testimonial-card-luxury {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  position: relative;
  text-align: center;
}

.testimonial-quote-icon {
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.35;
  margin-bottom: 20px;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1.7;
  color: var(--navy);
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  gap: 4px;
}

.testimonial-author {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}

.testimonial-location {
  font-size: 0.85rem;
  color: var(--muted-text);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-light);
  cursor: pointer;
  transition: var(--transition-fast);
}

.testimonial-dot.active {
  background: var(--gold);
  width: 32px;
  border-radius: 10px;
}

/* ==========================================================================
   FAQ ACCORDION SECTION
   ========================================================================== */
.faq-container {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item.active {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: var(--transition-fast);
}

.faq-item.active .faq-question {
  color: var(--gold-dark);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--off-white);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 0.85rem;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  background: var(--gold-gradient);
  color: var(--navy);
  transform: rotate(180deg);
  border-color: transparent;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-answer-inner {
  padding: 0 28px 24px 28px;
  color: var(--body-text);
  line-height: 1.7;
  font-size: 0.98rem;
  border-top: 1px solid var(--off-white);
  padding-top: 16px;
}

/* ==========================================================================
   CALL TO ACTION (CTA) SECTION
   ========================================================================== */
.cta-box {
  background: var(--navy-dark);
  border: 1px solid var(--border-gold);
  border-radius: var(--border-radius-lg);
  padding: 70px 60px;
  box-shadow: var(--shadow-navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at center, rgba(201, 162, 39, 0.12), transparent 70%);
  pointer-events: none;
}

.cta-box .section-title {
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 18px;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
  max-width: 680px;
  margin: 0 auto 36px auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* ==========================================================================
   CONTACT PAGE & FORMS
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: 26px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.contact-card-item:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md);
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--border-radius-sm);
  background: var(--gold-gradient-subtle);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-card-content h4 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.contact-card-content p,
.contact-card-content a {
  color: var(--body-text);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-card-content a:hover {
  color: var(--gold-dark);
}

.contact-form-wrapper {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-subtitle {
  color: var(--muted-text);
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 22px;
  position: relative;
}

.form-label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--off-white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--border-radius-sm);
  color: var(--dark-text);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.15);
}

.form-control.is-invalid {
  border-color: #E53E3E;
  background: #FFF5F5;
}

.form-control.is-valid {
  border-color: #38A169;
  background: #F0FFF4;
}

.invalid-feedback {
  display: none;
  color: #E53E3E;
  font-size: 0.8rem;
  margin-top: 6px;
}

.form-control.is-invalid~.invalid-feedback {
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* ==========================================================================
   FLOATING WHATSAPP & SCROLL-TO-TOP
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
  color: var(--white);
}

.floating-whatsapp::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.6;
  z-index: -1;
  animation: pulseWhatsapp 2s infinite;
}

@keyframes pulseWhatsapp {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: var(--navy-dark);
  color: var(--white);
  border: 1px solid var(--border-gold);
  padding: 6px 14px;
  border-radius: 4px;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition-fast);
}

.floating-whatsapp:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Scroll To Top */
.scroll-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: var(--navy);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.scroll-to-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: var(--gold-gradient);
  color: var(--navy);
  transform: translateY(-4px);
}

/* ==========================================================================
   TOAST NOTIFICATION & QUICK QUOTE MODAL
   ========================================================================== */
.toast-container {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 3000;
}

.toast {
  background: var(--navy-dark);
  border: 1px solid var(--gold);
  color: var(--white);
  border-radius: var(--border-radius-md);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-navy);
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition-smooth);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast i {
  color: var(--gold);
  font-size: 1.4rem;
}

/* Quick Quote Modal */
.quote-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 14, 27, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.quote-modal.active {
  opacity: 1;
  visibility: visible;
}

.quote-modal-dialog {
  background: var(--white);
  border: 1px solid var(--border-gold);
  border-radius: var(--border-radius-lg);
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  box-shadow: var(--shadow-navy);
}

.quote-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  font-size: 1.3rem;
  color: var(--muted-text);
  cursor: pointer;
  transition: var(--transition-fast);
}

.quote-modal-close:hover {
  color: var(--navy);
  transform: rotate(90deg);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.8);
  border-top: 2px solid var(--gold);
  padding: 90px 0 30px 0;
  position: relative;
  background-image: url('../assets/images/marble-dark-pattern.svg');
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  background: #FFFFFF;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid rgba(197, 160, 89, 0.4);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

.footer-logo-wrap:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(197, 160, 89, 0.35);
  border-color: var(--gold);
}

.footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.footer-tagline {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-about-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.footer-social-links {
  display: flex;
  gap: 12px;
}

.footer-social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(197, 160, 89, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-social-links a:hover {
  background: var(--gold-gradient);
  color: var(--navy);
  transform: translateY(-3px);
  border-color: transparent;
}

.footer-col h4 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--gold-gradient);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.footer-links-list a i {
  font-size: 0.7rem;
  color: var(--gold);
}

.footer-links-list a:hover {
  color: var(--gold-light);
  transform: translateX(5px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 0.92rem;
}

.footer-contact-item i {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 3px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
  color: var(--gold);
}

/* ==========================================================================
   PAGE HERO / BANNER (FOR INNER PAGES: ABOUT, SERVICES, GALLERY, CONTACT)
   ========================================================================== */
.page-banner {
  background: var(--navy);
  padding: 100px 0 70px 0;
  position: relative;
  color: var(--white);
  text-align: center;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(11, 27, 51, 0.85) 0%, rgba(5, 14, 27, 0.95) 100%),
    url('../assets/images/page-banner.jpg');
  background-size: cover;
  background-position: center;
}

.page-banner-title {
  font-size: 3.2rem;
  margin-bottom: 16px;
  color: var(--white);
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs a:hover {
  color: var(--gold);
}

.breadcrumbs span {
  color: var(--gold);
}

/* ==========================================================================
   KEYFRAME ANIMATIONS
   ========================================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}