@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ==========================================================================
   DESIGN TOKENS & SYSTEM VARIABLES
   ========================================================================== */
:root {
  --color-primary: #111827;       /* Luxury Deep Slate */
  --color-secondary: #C9A227;     /* Polished Gold Accent */
  --color-secondary-hover: #A8861B;
  --color-accent: #F5F5F4;        /* Light Stone Background */
  --color-bg: #FAFAF9;            /* Base Stone Tint */
  --color-dark-bg: #0B1120;       /* Extra Dark Slate for Contrast */
  --color-text: #1F2937;          /* Body Text */
  --color-text-muted: #4B5563;    /* Secondary/Caption Text */
  --color-white: #FFFFFF;
  --color-border: rgba(17, 24, 39, 0.08);
  --color-border-gold: rgba(201, 162, 39, 0.3);
  --color-gold-light: rgba(201, 162, 39, 0.08);
  --color-whatsapp: #25D366;
  --color-whatsapp-hover: #20BA5A;
  
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Poppins', system-ui, -apple-system, sans-serif;
  
  --shadow-sm: 0 2px 4px 0 rgba(0, 0, 0, 0.02);
  --shadow-md: 0 4px 12px -1px rgba(17, 24, 39, 0.05);
  --shadow-lg: 0 12px 24px -4px rgba(17, 24, 39, 0.08);
  --shadow-xl: 0 24px 48px -12px rgba(17, 24, 39, 0.12);
  --shadow-premium: 0 30px 60px -15px rgba(17, 24, 39, 0.18);
  
  --transition-fast: 0.20s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.60s cubic-bezier(0.4, 0, 0.2, 1);
  
  --container-width: 1240px;
  --header-height: 90px; /* Adjusted to support larger mobile logo */
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  outline: none;
}

button {
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.25;
}

h1 {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.1rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.text-gold {
  color: var(--color-secondary);
}

.font-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
}

/* Dual-style heading */
.heading-premium {
  font-family: var(--font-sans);
  text-transform: capitalize;
}
.heading-premium span {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--color-secondary);
  position: relative;
  display: inline-block;
}

.heading-premium span::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-secondary-hover);
  opacity: 0.4;
}

/* Section Header styling */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem auto;
  padding: 0 1rem;
}

.section-header .eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-secondary);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}

.section-header p {
  margin-top: 1rem;
  font-size: 1.05rem;
}

/* ==========================================================================
   LAYOUT STRUCTURE
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

section {
  padding: 5.5rem 0;
  position: relative;
}

.section-dark {
  background-color: var(--color-dark-bg);
  color: var(--color-accent);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--color-white);
}

.section-dark p {
  color: #94A3B8;
}

.section-accent {
  background-color: var(--color-accent);
}

/* Flex / Grid Utilities */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

/* ==========================================================================
   BUTTONS & ACCESSIBLE FORM CONTROLS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all var(--transition-fast);
  text-align: center;
  letter-spacing: 0.03em;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--color-secondary);
  color: var(--color-primary);
  border-color: var(--color-secondary);
}

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--color-secondary-hover);
  border-color: var(--color-secondary-hover);
  color: var(--color-white);
}

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

.btn-dark:hover, .btn-dark:focus {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-border);
}

.btn-secondary:hover, .btn-secondary:focus {
  background-color: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-white-outline {
  background-color: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-white-outline:hover, .btn-white-outline:focus {
  background-color: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}

.btn-no-hover:hover, .btn-no-hover:focus {
  background-color: transparent !important;
  color: var(--color-white) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

/* Header Phone Button (Visible on dark overlays, adaptive when sticky, no hover effect) */
.btn-header-phone {
  background-color: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-header-phone svg {
  fill: var(--color-white);
  transition: fill var(--transition-fast);
}

.btn-header-phone:hover, .btn-header-phone:focus {
  background-color: transparent !important;
  color: var(--color-white) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.btn-header-phone:hover svg, .btn-header-phone:focus svg {
  fill: var(--color-white) !important;
}

.header-sticky .btn-header-phone {
  color: var(--color-primary);
  border-color: var(--color-border);
}

.header-sticky .btn-header-phone svg {
  fill: var(--color-primary);
}

.header-sticky .btn-header-phone:hover, .header-sticky .btn-header-phone:focus {
  background-color: transparent !important;
  color: var(--color-primary) !important;
  border-color: var(--color-border) !important;
}

.header-sticky .btn-header-phone:hover svg, .header-sticky .btn-header-phone:focus svg {
  fill: var(--color-primary) !important;
}

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

.btn-whatsapp:hover, .btn-whatsapp:focus {
  background-color: var(--color-whatsapp-hover);
  border-color: var(--color-whatsapp-hover);
}

.btn-icon {
  margin-right: 0.5rem;
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (max-width: 576px) {
  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-group .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   GLOBAL STICKY HEADER
   ========================================================================== */
.header-wrapper {
  height: var(--header-height);
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
}

.header {
  height: var(--header-height);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  background-color: transparent;
  transition: all var(--transition-normal);
  border-bottom: 1px solid rgba(17, 24, 39, 0.04);
}

.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(250, 250, 249, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  border-bottom-color: rgba(17, 24, 39, 0.06);
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1001;
}

.logo-img {
  height: 96px; /* Enlarged header logo size for ultra-clear view */
  width: auto;
  object-fit: contain;
  display: block;
  max-width: 100%;
  background-color: var(--color-white); /* White background for the logo */
  padding: 0.35rem 1rem; /* Padding to frame the logo */
  border-radius: 6px; /* Soft rounded corners */
  box-shadow: 0 4px 12px rgba(17, 24, 39, 0.08); /* Clean shadow for separation */
  transition: transform var(--transition-normal);
}

.logo-img:hover {
  transform: translateY(-2px); /* Premium subtle hover micro-interaction */
}

.logo-img-footer {
  height: 110px; /* Enlarged footer logo size */
  width: auto;
  object-fit: contain;
  display: block;
  max-width: 100%;
  background-color: var(--color-white); /* White background for footer logo */
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(17, 24, 39, 0.08);
}

@media (max-width: 767px) {
  .logo-img {
    height: 72px; /* Adjusted mobile logo size to fit nicely in 90px header */
    padding: 0.25rem 0.75rem;
  }
}

.nav-desktop {
  display: none;
}

.header-ctas {
  display: none;
}

/* Hamburger mobile button */
.burger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  cursor: pointer;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-white); /* White lines by default over dark hero/header backgrounds */
  border-radius: 2px;
  transition: all var(--transition-fast);
  transform-origin: 1px 1px;
}

.header-sticky .burger span,
.burger.active span {
  background-color: var(--color-primary); /* Dark lines when sticky or when the mobile menu is open */
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg);
}

/* Mobile Slide-down/Slide-out Menu */
.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-height) + 2rem) 2rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
  overflow-y: auto;
}

.nav-mobile.active {
  transform: translateX(0);
}

.nav-mobile-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nav-mobile-link {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-primary);
}

.nav-mobile-link.active {
  color: var(--color-secondary);
}

.nav-mobile-ctas {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ==========================================================================
   HOMEPAGE HERO SECTION & FORM (SPLIT LAYOUT)
   ========================================================================== */
.hero-section {
  position: relative;
  padding-top: calc(var(--header-height) + 3.5rem);
  padding-bottom: 5rem;
  background-image: url('../images/hero/hero-marble.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-white);
  z-index: 1;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(11, 17, 32, 0.7); /* Light black overlay */
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-form-wrapper {
  position: relative;
  order: 2;
}

.hero-content {
  order: 1;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-secondary);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
}

.hero-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 1.25rem;
}

.hero-desc {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #D1D5DB;
}

.hero-location-strip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--color-secondary);
}

.hero-location-strip svg {
  width: 14px;
  height: 14px;
  fill: var(--color-secondary);
}

/* Compact Quote Form card */
.quote-form-card {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  margin-top: 2rem;
}

.quote-form-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
}

.form-group {
  margin-bottom: 1.25rem;
  position: relative;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  background-color: var(--color-bg);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--color-primary);
  transition: all var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--color-secondary);
  background-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

.form-error {
  font-size: 0.75rem;
  color: #DC2626;
  margin-top: 0.25rem;
  display: none;
}

.form-input.invalid, .form-textarea.invalid {
  border-color: #DC2626;
}

.form-success-msg {
  background-color: #ECFDF5;
  border: 1px solid #10B981;
  color: #065F46;
  padding: 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  margin-top: 1rem;
  display: none;
}

/* ==========================================================================
   TRUST / SERVICE STRIP
   ========================================================================== */
.trust-strip {
  background-color: var(--color-primary);
  padding: 2rem 0;
  border-bottom: 3px solid var(--color-secondary);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem;
}

.trust-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-gold-light);
  border: 1px solid var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  flex-shrink: 0;
}

.trust-icon-wrapper svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.trust-info h4 {
  color: var(--color-white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.trust-info p {
  color: #94A3B8;
  font-size: 0.8rem;
  margin: 0;
}

/* ==========================================================================
   ABOUT SECTION (SPLIT LAYOUT)
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  position: relative;
  border: 1px solid var(--color-border);
}

.about-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  background-color: var(--color-secondary);
  color: var(--color-primary);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: none; /* Desktop only */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.2;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--color-white);
}

.about-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.about-services-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
  background-color: var(--color-accent);
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  border: 1px solid var(--color-border);
}

/* ==========================================================================
   SERVICES SECTION (ASYMMETRIC GRID)
   ========================================================================== */
.services-section {
  background-color: var(--color-accent);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.service-card {
  background-color: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-secondary);
}

.service-card-img-wrapper {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
  background-color: var(--color-primary);
}

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

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

.service-card-icon {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--color-white);
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.service-card-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.service-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-title {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.service-card-desc {
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
  margin-top: auto;
}

.service-card-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-secondary-hover);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.service-card-link svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
  transition: transform var(--transition-fast);
}

.service-card-link:hover svg {
  transform: translateX(3px);
}

.service-card-btn {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
}

/* Services Page specific layout */
.service-details-wrapper {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}

.service-detail-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 4rem 0; /* Large spacing between service sections */
}

.service-detail-block:nth-child(even) {
  /* Alternating layout helper */
}

.service-detail-image {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-info h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.service-detail-info p {
  margin-bottom: 1.25rem;
}

.service-bullets {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.service-bullets li {
  font-size: 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--color-text-muted);
}

.service-bullets li svg {
  width: 14px;
  height: 14px;
  fill: var(--color-secondary);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* ==========================================================================
   WHY CHOOSE US SECTION (PREMIUM CARDS)
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.why-card {
  background-color: var(--color-white);
  padding: 2.25rem 2rem;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--color-secondary);
  transition: height var(--transition-fast);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 162, 39, 0.2);
}

.why-card:hover::before {
  height: 100%;
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: var(--color-accent);
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.why-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.why-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.why-card p {
  font-size: 0.85rem;
  margin: 0;
}

/* ==========================================================================
   MARBLE POLISHING PROCESS (TIMELINE LAYOUT)
   ========================================================================== */
.process-timeline {
  position: relative;
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.process-step {
  position: relative;
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.process-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--color-gold-light);
  border: 1.5px solid var(--color-border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.process-icon {
  width: 32px;
  height: 32px;
  fill: var(--color-secondary);
}

.process-step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.process-step-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: rgba(201, 162, 39, 0.15);
  font-weight: 800;
  line-height: 1;
}

.process-step-title {
  font-size: 1.2rem;
  color: var(--color-primary);
  font-weight: 700;
}

.process-step p {
  font-size: 0.85rem;
}

/* ==========================================================================
   BEFORE / AFTER COMPONENT
   ========================================================================== */
.before-after-section {
  background-color: var(--color-accent);
}

.ba-container {
  max-width: 900px;
  margin: 0 auto;
}

.ba-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.ba-panel {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  border: 1px solid var(--color-border);
}

.ba-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  border: 1px solid var(--color-secondary);
}

.ba-label-after {
  background-color: var(--color-secondary);
  color: var(--color-primary);
  border-color: var(--color-white);
}

.ba-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 1.5rem;
  font-style: italic;
}

/* ==========================================================================
   LOCAL SERVICE AREAS
   ========================================================================== */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.areas-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/10;
  background-color: #E2E8F0;
  border: 1px solid var(--color-border);
  position: relative;
}

.areas-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  color: var(--color-primary);
}

.map-placeholder svg {
  width: 48px;
  height: 48px;
  fill: var(--color-secondary);
  margin-bottom: 1rem;
}

.map-placeholder-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.map-placeholder-desc {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  max-width: 320px;
}

.areas-list-card {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.areas-list-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.areas-list-card p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.areas-tag-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.area-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color-accent);
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary);
  border: 1px solid var(--color-border);
}

.area-badge svg {
  width: 14px;
  height: 14px;
  fill: var(--color-secondary);
  flex-shrink: 0;
}

/* ==========================================================================
   FAQ PAGE & ACCORDION
   ========================================================================== */
.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--color-white);
  border-radius: 6px;
  margin-bottom: 1rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-md);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: transparent;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary);
  text-align: left;
  transition: color var(--transition-fast);
}

.faq-trigger:hover, .faq-trigger:focus {
  color: var(--color-secondary-hover);
}

.faq-trigger svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  transform: rotate(0deg);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-trigger svg {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out;
}

.faq-content-inner {
  padding: 0 1.5rem 1.5rem 1.5rem;
  border-top: 1px solid transparent;
}

.faq-item.active .faq-content-inner {
  border-top-color: var(--color-border);
}

.faq-content p {
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ==========================================================================
   BLOG LISTING & ARTICLE CARDS
   ========================================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.blog-card {
  background-color: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all var(--transition-normal);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 162, 39, 0.2);
}

.blog-card-img-wrapper {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  background-color: var(--color-primary);
}

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

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

.blog-card-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--color-secondary);
  color: var(--color-primary);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
}

.blog-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-meta {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.blog-card-title {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.blog-card-excerpt {
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-card-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: auto;
}

.blog-card-link svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
  transition: transform var(--transition-fast);
}

.blog-card-link:hover {
  color: var(--color-secondary);
}

.blog-card-link:hover svg {
  transform: translateX(3px);
  fill: var(--color-secondary);
}

/* Individual Blog Article page styles */
.article-header {
  padding: calc(var(--header-height) + 3rem) 0 3rem 0;
  background-color: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  border-bottom: 3px solid var(--color-secondary);
}

.article-header h1 {
  color: var(--color-white);
  font-size: 2.2rem;
  max-width: 800px;
  margin: 1rem auto 1.5rem auto;
}

.article-header-meta {
  font-size: 0.85rem;
  color: #94A3B8;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.article-content-wrapper {
  padding: 4rem 0;
}

.article-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.article-body {
  background-color: var(--color-white);
  padding: 2rem 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.article-hero-image {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
  aspect-ratio: 16/9;
  border: 1px solid var(--color-border);
}

.article-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article-body h3 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.article-body p {
  margin-bottom: 1.25rem;
}

.article-body ul, .article-body ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.article-body ul {
  list-style: disc;
}

.article-body ol {
  list-style: decimal;
}

.article-body li {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-muted);
}

.article-body blockquote {
  border-left: 4px solid var(--color-secondary);
  background-color: var(--color-accent);
  padding: 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  border-radius: 0 4px 4px 0;
}

.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-widget {
  background-color: var(--color-white);
  padding: 1.75rem;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.sidebar-widget h3 {
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 0.5rem;
}

.widget-post-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.widget-post-item {
  display: flex;
  gap: 0.75rem;
}

.widget-post-thumb {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  background-color: var(--color-primary);
}

.widget-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.widget-post-info h4 {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.widget-post-info a:hover {
  color: var(--color-secondary);
}

.widget-post-date {
  font-size: 0.7rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   CONTACT PAGE & HIGH-CONVERTING FORMS
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-info-card {
  background-color: var(--color-white);
  padding: 2.5rem 2rem;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.contact-info-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.contact-info-text h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-info-text p, .contact-info-text a {
  font-size: 0.85rem;
  margin: 0;
}

.contact-info-text a:hover {
  color: var(--color-secondary);
}

.contact-form-container {
  background-color: var(--color-white);
  padding: 2.5rem 2rem;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.contact-form-container h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.google-maps-section {
  margin-top: 3.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  aspect-ratio: 16/9;
}

.google-maps-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ==========================================================================
   CONVERSION CALL TO ACTION (CTA) SECTION
   ========================================================================== */
.cta-section {
  background-color: var(--color-dark-bg);
  text-align: center;
  padding: 5rem 0;
  border-top: 3px solid var(--color-secondary);
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.cta-phone-number {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-secondary);
  display: block;
  margin-top: 1rem;
  transition: transform var(--transition-fast);
}

.cta-phone-number:hover {
  transform: scale(1.03);
}

/* ==========================================================================
   MULTI-COLUMN FOOTER
   ========================================================================== */
.footer {
  background-color: var(--color-primary);
  color: #94A3B8;
  padding: 4.5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer h4 {
  color: var(--color-white);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-info-col p {
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  color: #94A3B8;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.04);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social-icon:hover {
  background-color: var(--color-secondary);
  color: var(--color-primary);
  border-color: var(--color-secondary);
  transform: translateY(-3px);
}

.footer-social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-list a {
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links-list a::before {
  content: '›';
  font-size: 1.1rem;
  color: var(--color-secondary);
  line-height: 1;
  transition: transform var(--transition-fast);
}

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

.footer-links-list a:hover::before {
  transform: translateX(3px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--color-secondary);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.footer-contact-item a:hover {
  color: var(--color-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  font-size: 0.75rem;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

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

/* ==========================================================================
   FLOATING ACTION BUTTONS (MOBILE-FIRST ACCESS)
   ========================================================================== */
.floating-actions {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 998;
}

.btn-float {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  color: var(--color-white);
  transition: all var(--transition-fast);
}

.btn-float:hover {
  transform: scale(1.08) translateY(-2px);
}

.btn-float-phone {
  background-color: var(--color-secondary);
  color: var(--color-primary);
  border: 1px solid var(--color-white);
}

.btn-float-phone:hover {
  background-color: var(--color-secondary-hover);
  color: var(--color-white);
}

.btn-float-whatsapp {
  background-color: var(--color-whatsapp);
}

.btn-float-whatsapp:hover {
  background-color: var(--color-whatsapp-hover);
}

.btn-float svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* Back to Top button */
.btn-back-to-top {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  z-index: 998;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.btn-back-to-top:hover {
  background-color: var(--color-secondary);
  color: var(--color-primary);
  border-color: var(--color-secondary);
}

.btn-back-to-top svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* ==========================================================================
   SCROLL REVEAL & SYSTEM ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced Motion Preferences */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  *, *::before, *::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
  
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  
  .hero-img, .service-card-img, .blog-card-img {
    transition: none !important;
    transform: none !important;
  }
}

/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */
.gallery-section {
  background-color: var(--color-accent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  aspect-ratio: 4/3;
  background-color: var(--color-white);
  cursor: pointer;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-card:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(17, 24, 39, 0.8) 0%, rgba(17, 24, 39, 0) 100%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  pointer-events: none;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  color: var(--color-white);
  font-size: 1.1rem;
  font-weight: 700;
  transform: translateY(10px);
  transition: transform var(--transition-normal);
  font-family: var(--font-sans);
}

.gallery-card:hover .gallery-title {
  transform: translateY(0);
}

@media (min-width: 576px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVE GRID ADAPTATION)
   ========================================================================== */

/* Small Devices (360px and up) */
@media (min-width: 360px) {
  h1 { font-size: 2.6rem; }
  .hero-title { font-size: 2.4rem; }
}

/* Medium Mobile Devices (480px and up) */
@media (min-width: 480px) {
  .areas-tag-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablets (768px and up) */
@media (min-width: 768px) {
  :root {
    --header-height: 110px; /* Adjusted to support larger desktop logo */
  }
  
  section {
    padding: 6.5rem 0;
  }
  
  h1 { font-size: 3.2rem; }
  h2 { font-size: 2.5rem; }
  
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  
  .hero-section {
    padding-top: calc(var(--header-height) + 3.5rem);
    padding-bottom: 6rem;
  }
  
  .hero-title { font-size: 2.8rem; }
  
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-bullets {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ba-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* Laptops / Desktops (1024px and up) */
@media (min-width: 1024px) {
  h1 { font-size: 3.6rem; }
  h2 { font-size: 2.8rem; }
  
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  
  .burger {
    display: none;
  }
  
  .nav-desktop {
    display: block;
  }
  
  .nav-desktop-list {
    display: flex;
    gap: 2rem;
  }
  
  .nav-desktop-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-white); /* White by default at the top of the page */
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--transition-fast);
  }
  
  .nav-desktop-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-secondary);
    transition: width var(--transition-fast);
  }
  
  .nav-desktop-link:hover::after, .nav-desktop-link.active::after {
    width: 100%;
  }
  
  .nav-desktop-link.active {
    color: var(--color-secondary); /* Gold for active item at top */
  }

  /* Sticky Header Menu Text Colors */
  .header-sticky .nav-desktop-link {
    color: var(--color-primary); /* Dark slate color against white header */
  }

  .header-sticky .nav-desktop-link.active {
    color: var(--color-secondary-hover);
  }
  
  .header-ctas {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .header-ctas .btn {
    padding: 0.55rem 1.2rem;
    font-size: 0.8rem;
  }
  
  /* Hero Split Layout */
  .hero-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 4rem;
  }
  
  .hero-content {
    grid-column: span 7;
    order: 1;
  }
  
  .hero-form-wrapper {
    grid-column: span 5;
    order: 2;
  }
  
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  /* About Split Layout */
  .about-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 5rem;
  }
  
  .about-visual {
    grid-column: span 5;
  }
  
  .about-content {
    grid-column: span 7;
  }
  
  .about-badge {
    display: flex;
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  /* Service detail alternate */
  .service-detail-block {
    grid-template-columns: repeat(12, 1fr);
    gap: 4rem;
  }
  
  .service-detail-image {
    grid-column: span 5;
  }
  
  .service-detail-info {
    grid-column: span 7;
  }
  
  .service-detail-block:nth-child(even) .service-detail-image {
    order: 2;
    grid-column: 7 / span 5;
  }
  
  .service-detail-block:nth-child(even) .service-detail-info {
    order: 1;
    grid-column: 1 / span 6;
  }
  
  /* Process Step */
  .process-timeline {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
  }
  
  .process-timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 20px;
    right: 20px;
    height: 1px;
    background-color: var(--color-border-gold);
    z-index: 1;
  }
  
  .process-step {
    z-index: 2;
  }
  
  .areas-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 4rem;
  }
  
  .areas-map {
    grid-column: span 7;
  }
  
  .areas-list-card {
    grid-column: span 5;
  }
  
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .article-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 4rem;
  }
  
  .article-body {
    grid-column: span 8;
    padding: 3rem;
  }
  
  .article-sidebar {
    grid-column: span 4;
  }
  
  .contact-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 4rem;
  }
  
  .contact-info-card {
    grid-column: span 5;
  }
  
  .contact-form-container {
    grid-column: span 7;
  }
  
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Extra Large Screens (1280px and up) */
@media (min-width: 1280px) {
  .hero-image-wrapper {
    height: 560px;
  }
}
