@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Montserrat:wght@600;700;800&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Poppins:wght@500;600;700&display=swap');

/* --- DESIGN SYSTEM VARIABLES --- */
:root {
  /* Colors */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8F6F2; /* Light Beige */
  --bg-cream: #FFFDF8; /* Soft Cream */
  --bg-gray: #F5F7FA; /* Light Gray */
  
  --accent-gold: #D4A017; /* Primary Gold */
  --accent-gold-hover: #B8860B; 
  
  --navy-dark: #0F2744; /* Secondary Navy */
  
  --text-dark: #1E1E1E; /* Heading Color */
  --text-body: #555555; /* Body Text */
  --text-light: #FFFFFF;
  
  --success-color: #25D366; /* WhatsApp / Success */
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-button: 'Poppins', sans-serif;
  --font-stats: 'Montserrat', sans-serif;
  
  /* Utilities */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 24px;
  
  /* Shadows */
  --shadow-premium: 0 15px 45px rgba(15, 39, 68, 0.05);
  --shadow-hover: 0 25px 55px rgba(15, 39, 68, 0.12);
  --shadow-glass: 0 8px 32px rgba(31, 38, 135, 0.05);
  
  --max-width: 1280px;
}

/* --- RESET & GLOBAL STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-body);
}

body {
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

h1 { font-size: 32px; }
h2 { font-size: 28px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-dark);
}

p {
  color: var(--text-body);
  font-size: 16px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- BUTTONS & CALLS TO ACTION --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: var(--font-button);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: -1;
}

.btn:hover::after {
  transform: translateX(0);
}

.btn-gold {
  background-color: var(--accent-gold);
  color: var(--bg-primary);
}

.btn-gold:hover {
  background-color: var(--accent-gold-hover);
  box-shadow: 0 8px 24px rgba(212, 160, 23, 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
}

.btn-outline:hover {
  background-color: var(--accent-gold);
  color: var(--bg-primary);
  box-shadow: 0 8px 24px rgba(212, 160, 23, 0.2);
  transform: translateY(-2px);
}

.btn-white {
  background-color: var(--bg-primary);
  color: var(--text-dark);
}

.btn-white:hover {
  background-color: var(--bg-secondary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

/* --- GLASSMORPHISM CARD STYLE --- */
.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-premium);
  border-radius: var(--border-radius-md);
  padding: 2.5rem;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

/* --- STICKY HEADER & NAVBAR --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 39, 68, 0.05);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 0.2rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  transition: var(--transition-smooth);
}

/* --- CIRCULAR LOGO --- */
.logo {
  display: flex;
  align-items: center;
}

.nav-container .logo {
  background-color: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 2px;
}

.logo-img {
  width: 48px;
  height: 48px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: 0; /* Changed to square shape */
}

.logo img, .footer-logo img {
  border-radius: 0 !important;
}

.logo:hover .logo-img {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-button);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  padding: 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--accent-gold);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* --- MOBILE HAMBURGER MENU --- */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-dark);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: var(--bg-cream);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  padding: 6rem 2.5rem 3rem;
  transition: var(--transition-smooth);
  z-index: 1050;
  overflow-y: auto;
}
  display: flex;
  align-items: center;
  padding-top: 160px;
  background-color: var(--bg-cream);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  animation: slideRight 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-tag {
  font-family: var(--font-button);
  color: var(--accent-gold);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: block;
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.hero-title span {
  color: var(--accent-gold);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-body);
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.hero-image {
  position: relative;
  height: 600px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  animation: slideLeft 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 20s infinite alternate;
}

/* --- STATS SECTION --- */
.stats {
  padding: 4rem 0;
  background-color: var(--bg-primary);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.stats-container {
  background: var(--bg-primary);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: var(--border-radius-md);
  padding: 3rem;
  box-shadow: var(--shadow-premium);
  transform: none;
  margin-bottom: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: rgba(0, 0, 0, 0.08);
}

.stat-icon {
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: center;
}

.stat-icon svg {
  width: 32px;
  height: 32px;
}

.stat-number {
  font-family: var(--font-stats);
  font-size: 2.8rem;
  color: var(--text-dark);
  font-weight: 800;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.85rem;
  font-family: var(--font-button);
  font-weight: 600;
  color: var(--text-body);
}

/* --- SECTION DECORATION & LAYOUTS --- */
.section {
  padding: 3rem 0;
}

.section-bg-beige { background-color: var(--bg-secondary); }
.section-bg-cream { background-color: var(--bg-cream); }
.section-bg-gray { background-color: var(--bg-gray); }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header.left {
  text-align: left;
  margin: 0 0 3rem 0;
}

.section-tag {
  font-family: var(--font-button);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.section-divider {
  width: 60px;
  height: 2px;
  background-color: var(--accent-gold);
  margin: 1.5rem auto 0;
}

.section-header.left .section-divider {
  margin: 1.5rem 0 0 0;
}

/* --- SERVICES PREVIEW (HOME) --- */
.services-row {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.service-icon-box {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 2rem 1rem;
  background: var(--bg-primary);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.service-icon-box:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 160, 23, 0.2);
  box-shadow: var(--shadow-hover);
}

.service-icon-box .icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--accent-gold);
}

.service-icon-box h4 {
  font-family: var(--font-button);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.service-icon-box .read-more {
  font-size: 0.8rem;
  color: var(--accent-gold);
  font-weight: 600;
}

/* --- ABOUT TIMELINE --- */
.timeline-flex {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 4rem;
}

.timeline-flex::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(212, 160, 23, 0.2);
  z-index: 0;
}

.timeline-node {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 220px;
}

.timeline-dot {
  width: 24px;
  height: 24px;
  background: var(--bg-primary);
  border: 4px solid var(--accent-gold);
  border-radius: 50%;
  margin: 18px auto 1.5rem;
  transition: var(--transition-smooth);
}

.timeline-node:hover .timeline-dot {
  background: var(--accent-gold);
  transform: scale(1.2);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-family: var(--font-button);
  font-weight: 600;
  font-size: 1rem;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

/* --- INTERNAL PAGES HERO --- */
.inner-hero {
  padding: 120px 1rem 50px;
  background-color: var(--bg-cream);
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.inner-hero-title {
  font-size: 4rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  font-family: var(--font-button);
  font-weight: 500;
}

.breadcrumbs a {
  color: var(--text-body);
}

.breadcrumbs a:hover {
  color: var(--accent-gold);
}

.breadcrumbs span {
  color: var(--accent-gold);
}

/* --- GALLERY FILTERS & MASONRY --- */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.filter-btn {
  background: var(--bg-primary);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.7rem 1.8rem;
  font-family: var(--font-button);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--navy-dark);
  color: var(--bg-primary);
  border-color: var(--navy-dark);
}

/* Advanced Masonry Grid */
.masonry-grid { column-count: 1;
  column-gap: 1.5rem;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  cursor: pointer;
  background-color: var(--bg-gray);
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.masonry-item:hover img {
  transform: scale(1.08);
}

.masonry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 39, 68, 0.95) 0%, rgba(15, 39, 68, 0.4) 50%, rgba(15, 39, 68, 0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem 2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.masonry-item:hover .masonry-overlay {
  opacity: 1;
}

.gallery-project-title {
  color: var(--text-light);
  font-size: 1.6rem;
  font-family: var(--font-heading);
  margin-bottom: 0.8rem;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.masonry-item:hover .gallery-project-title {
  transform: translateY(0);
}

.gallery-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-button);
  font-size: 0.85rem;
  transform: translateY(20px);
  transition: transform 0.5s ease;
}

.masonry-item:hover .gallery-meta {
  transform: translateY(0);
}

.gallery-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.gallery-meta span i, .gallery-meta span svg {
  color: var(--accent-gold);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 39, 68, 0.95);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
}

.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: -10px;
  color: var(--text-light);
  font-size: 3rem;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: var(--accent-gold);
}

/* --- CONTACT PAGE --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  margin-top: -80px;
  position: relative;
  z-index: 10;
}

.contact-info-card {
  background: var(--navy-dark);
  color: white;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
}

/* --- CONTACT MAP --- */
.map-container {
  width: 100%;
  height: 500px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  margin-top: 2rem;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-input {
  width: 100%;
  padding: 1rem 1.2rem;
  border-radius: var(--border-radius-sm);
  background-color: var(--bg-gray);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.form-input:focus {
  background-color: var(--bg-primary);
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.1);
}

textarea.form-input {
  min-height: 150px;
  resize: vertical;
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1.5rem;
}

.contact-info-item .icon {
  width: 45px;
  height: 45px;
  background: rgba(212, 160, 23, 0.1);
  color: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-family: var(--font-button);
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

/* --- FOOTER --- */
footer {
  background-color: var(--navy-dark);
  color: var(--text-light);
  padding: 5rem 0 2rem;
}

.footer-grid { display: grid; grid-template-columns: 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.footer-logo .logo-img {
  width: 60px;
  height: 60px;
}

.footer-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.social-link:hover {
  background-color: var(--accent-gold);
  color: var(--navy-dark);
  transform: translateY(-3px);
}

.footer-title {
  font-family: var(--font-button);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
}

.footer-menu li {
  margin-bottom: 0.8rem;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-menu a:hover {
  color: var(--accent-gold);
}

.newsletter-form {
  display: flex;
  margin-top: 1rem;
}

.newsletter-input {
  flex-grow: 1;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
}

.newsletter-btn {
  padding: 0.8rem 1.5rem;
  background: var(--accent-gold);
  color: var(--navy-dark);
  font-family: var(--font-button);
  font-weight: 600;
  border: none;
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* --- WHATSAPP FLOATING BUTTON --- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: var(--success-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  z-index: 999;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 35px;
  height: 35px;
  fill: currentColor;
}

.whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--success-color);
  border-radius: 50%;
  z-index: -1;
  animation: pulseWave 2s infinite;
}

/* --- ANIMATIONS --- */
@keyframes slideLeft {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideRight {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slowZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

@keyframes pulseWave {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* --- NEW PROJECTS PAGE UI --- */
.projects-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 0 0.5rem;
}

.projects-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg-primary);
  border: 1px solid rgba(0,0,0,0.05);
  padding: 0.55rem 1rem;
  font-family: var(--font-button);
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: var(--transition-smooth);
}

.projects-filter-btn svg {
  color: var(--text-body);
  transition: var(--transition-smooth);
}

.projects-filter-btn:hover,
.projects-filter-btn.active {
  background: var(--navy-dark);
  color: var(--bg-primary);
  border-color: var(--navy-dark);
}

.projects-filter-btn:hover svg,
.projects-filter-btn.active svg {
  color: var(--accent-gold);
}

.projects-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 5rem;
}

.project-luxury-card {
  background: var(--bg-primary);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

.project-luxury-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.project-card-img {
  width: 100%;
  height: 0;
  padding-bottom: 65%;
  overflow: hidden;
  position: relative;
}

.project-card-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-luxury-card:hover .project-card-img img {
  transform: scale(1.08);
}

.project-card-content {
  padding: 2rem;
  background: var(--bg-primary);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.project-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.project-card-meta {
  display: flex;
  gap: 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-body);
}

.project-card-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.project-card-meta svg {
  color: var(--accent-gold);
}

.circular-arrow-btn {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  transition: var(--transition-smooth);
}

.project-luxury-card:hover .circular-arrow-btn {
  background: var(--accent-gold);
  color: var(--bg-primary);
}

.horizontal-stats-card {
  background: var(--bg-primary);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-premium);
  padding: 3rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5rem;
}

.h-stat-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.h-stat-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
}

.h-stat-info {
  display: flex;
  flex-direction: column;
}

.h-stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.h-stat-label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.cta-banner {
  background: var(--bg-secondary);
  border-radius: var(--border-radius-lg);
  padding: 4rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg"><path d="M100 0L200 100L100 200L0 100Z" fill="none" stroke="%23D4A017" stroke-width="1" opacity="0.1"/></svg>');
  background-size: 150px;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.cta-content p {
  font-size: 1.1rem;
}

.cta-btn-wrap {
  position: relative;
  z-index: 1;
}

/* --- SERVICES PAGE FIXES --- */
.services-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.srv-card {
  background: var(--bg-primary);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition-smooth);
}

.srv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-premium);
}

.srv-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.srv-content {
  padding: 2rem;
}

.srv-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy-dark);
  margin-bottom: 1rem;
}

.srv-content p {
  color: var(--text-body);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.assurances-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
  margin-top: 3rem;
}

.assurance-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.assurance-item .icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(212, 160, 23, 0.1);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.assurance-item .icon svg {
  width: 40px;
  height: 40px;
}

.assurance-item h4 {
  font-family: var(--font-button);
  font-size: 1.1rem;
  color: var(--navy-dark);
}

@media (max-width: 1024px) {
  .services-cards-grid {
    grid-template-columns: 1fr;
  }
  .assurances-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .services-cards-grid {
    grid-template-columns: 1fr;
  }
  .assurances-grid {
    grid-template-columns: 1fr;
  }
}

/* --- NEW HOME PAGE REDESIGN --- */
.hero-split-section {
  position: relative;
  background-color: var(--bg-cream);
  padding: 160px 0 100px;
  overflow: hidden;
}

.hero-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  width: 100%;
}

.hero-split-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 8%;
  padding-right: 5%;
}

@media (min-width: 1600px) {
  .hero-split-left {
    padding-left: 12%;
  }
}

@media (max-width: 1280px) {
  .hero-split-left {
    padding-left: 4%;
  }
}

.hero-split-left .hero-tag {
  color: var(--accent-gold);
  font-family: var(--font-button);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: block;
}

.hero-split-left .hero-title {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--navy-dark);
}

.hero-split-left .gold-text {
  color: var(--accent-gold);
  font-style: italic;
  font-weight: 400;
}

.hero-split-right {
  height: 100%;
}

.hero-rounded-img {
  width: 100%;
  height: 100%;
  min-height: 700px;
  object-fit: cover;
  border-radius: 40px 0 0 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.floating-stats-section {
  position: relative;
  z-index: 10;
  margin-top: -60px;
  margin-bottom: 60px;
}

.floating-stats-card {
  background: white;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  padding: 3rem 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

.floating-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.floating-stat-icon {
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.floating-stat-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.floating-stat-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-body);
}

.services-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card-lux {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.service-card-lux:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-card-lux .icon {
  width: 60px;
  height: 60px;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

.service-card-lux h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--navy-dark);
  margin-bottom: 1rem;
}

.service-card-lux p {
  font-size: 0.85rem;
  color: var(--text-body);
  margin-bottom: 2rem;
  flex-grow: 1;
}

.service-card-lux .learn-more {
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  font-family: var(--font-button);
}

.cta-split-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
  margin-bottom: 4rem;
}

.cta-blueprint-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.cta-split-right {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-split-right h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--navy-dark);
  line-height: 1.2;
}

.cta-split-right p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .logo-img { width: 40px; height: 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-image { height: 450px; }
  .stats-container { transform: none; margin: 0 0 4rem 0; }
  .stats-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .stat-item:nth-child(2)::after { display: none; }
  .masonry-grid { column-count: 1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .timeline-flex { flex-direction: column; gap: 3rem; align-items: center; }
  .timeline-flex::before { display: none; }
  
  .projects-grid-3 { grid-template-columns: 1fr; }
  .horizontal-stats-card { flex-wrap: wrap; gap: 2rem; justify-content: center; }
  .cta-banner { flex-direction: column; text-align: center; gap: 2rem; padding: 3rem 2rem; }
  
  /* Home Page Redesign */
  .hero-split-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-split-left .hero-title { font-size: 3.5rem; }
  .hero-rounded-img { height: 400px; }
  .floating-stats-card { grid-template-columns: 1fr; padding: 2rem; }
  .services-grid-5 { grid-template-columns: 1fr; }
  .cta-split-card { grid-template-columns: 1fr; }
  .cta-split-right { padding: 3rem; text-align: center; }
}

@media (max-width: 768px) {
  .logo-img { width: 36px; height: 36px; }
  .nav-menu, .nav-cta .btn-gold { display: none; }
  .hamburger { display: block; }
  .hero-title { font-size: 3rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item::after { display: none !important; }
  .masonry-grid { column-count: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  
  .projects-grid-3 { grid-template-columns: 1fr; }
  .h-stat-item { width: 100%; justify-content: center; }
  
  /* Home Page Redesign */
  .floating-stats-card { grid-template-columns: 1fr; }
  .services-grid-5 { grid-template-columns: 1fr; }
  .hero-split-left .hero-title { font-size: 2.8rem; }
}


/* --- HOME PAGE SPECIFIC STYLES --- */
/* CSS Variables */
:root {
    --primary-navy: #13294B;
    --primary-gold: #D4A017;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
    
    --transition: all 0.3s ease;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --radius-md: 12px;
    --radius-lg: 24px;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1 { font-size: 32px; }
h2 { font-size: 28px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    gap: 10px;
}

.btn-primary {
    background-color: var(--primary-gold);
    color: var(--white);
    border: 1px solid var(--primary-gold);
}

.btn-primary:hover {
    background-color: #b38612;
    border-color: #b38612;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-navy);
    border: 1px solid #e0e0e0;
}

.btn-outline:hover {
    border-color: var(--primary-navy);
}

/* Navbar */
.navbar {
    background-color: var(--white);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 120px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-gold);
    border-bottom-color: var(--primary-gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.phone-num {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Hero Section */
.hero-section {
    padding: 40px 0 0 0;
}

.hero-header h1 {
    font-size: 3rem;
    margin-bottom: 40px;
}

.panorama-container {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.panorama-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.panorama-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotspot {
    position: absolute;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}

.hotspot:hover {
    background: rgba(0,0,0,0.8);
    transform: translateY(-2px);
}

.user-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 6px 16px 6px 6px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(4px);
}

.user-badge img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.panorama-controls {
    position: absolute;
    bottom: 30px;
    right: 80px;
    display: flex;
    gap: 20px;
    background: rgba(0,0,0,0.5);
    padding: 12px 24px;
    border-radius: 40px;
    backdrop-filter: blur(4px);
}

.control-item {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    cursor: pointer;
    opacity: 0.8;
    transition: var(--transition);
}

.control-item:hover {
    opacity: 1;
}

.control-item i {
    font-size: 1.2rem;
}

.whatsapp-float {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* About Section */
.about-section {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 100px 24px;
    position: relative;
    z-index: 1;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.about-content h2 em {
    color: var(--primary-gold);
    font-style: italic;
    font-family: var(--font-serif);
}

.about-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 90%;
}

.about-actions {
    display: flex;
    gap: 16px;
}

.about-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Stats Section */
.stats-section {
    display: flex;
    justify-content: space-between;
    background: var(--white);
    padding: 40px 60px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin-top: -40px; /* Pull up slightly */
    position: relative;
    z-index: 2;
    margin-bottom: 100px;
}

.stat-card {
    text-align: center;
    flex: 1;
    border-right: 1px solid #eee;
}

.stat-card:last-child {
    border-right: none;
}

.gold-icon {
    color: var(--primary-gold);
    font-size: 2rem;
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.stat-card h3 sup {
    font-size: 1.2rem;
    color: var(--text-light);
}

.stat-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Expertise Section */
.expertise-section {
    background-color: var(--bg-light);
    padding: 100px 0;
}

.expertise-section .section-header {
    margin-bottom: 60px;
}

.expertise-section h2 {
    font-size: 2.8rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--white);
    padding: 40px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.service-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-family: var(--font-sans);
    color: var(--primary-navy);
}

.service-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 24px;
    min-height: 60px;
}

.learn-more {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.learn-more:hover {
    color: var(--primary-navy);
}

/* CTA Section */
.cta-section {
    display: flex;
    background: var(--white);
    margin: 100px auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.cta-image {
    flex: 1;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background-color: #0F2744;
    color: #ffffff;
    padding: 5rem 0 2rem;
}

.footer-grid { display: grid; grid-template-columns: 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.footer-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

/* keep .footer-brand p working too */
.footer-brand p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a,
.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.social-links a:hover,
.social-link:hover {
    background-color: #D4A017;
    color: #0F2744;
    transform: translateY(-3px);
}

.footer-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

/* keep old selector working for backward compat */
.footer-links h4,
.footer-newsletter h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.footer-menu li,
.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-menu a,
.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-menu a:hover,
.footer-links ul li a:hover {
    color: #D4A017;
}

.newsletter-form {
    display: flex;
    margin-top: 1rem;
    gap: 0;
}

.newsletter-input,
.newsletter-form input {
    flex-grow: 1;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 6px 0 0 6px;
}

.newsletter-input::placeholder,
.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus,
.newsletter-form input:focus {
    outline: 1px solid #D4A017;
}

.newsletter-btn {
    padding: 0.8rem 1.5rem;
    background: #D4A017;
    color: #0F2744;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    border: none;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
}

.newsletter-btn:hover {
    background: #b38612;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .about-section {
        flex-direction: column;
    }
    .stats-section {
        flex-wrap: wrap;
        gap: 30px;
    }
    .stat-card {
        border: none;
        flex: 1 1 40%;
    }
    .cta-section {
        flex-direction: column;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions {
        display: none; /* Add mobile menu later if needed */
    }
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-header h1 {
        font-size: 2rem;
    }
    .about-content h2 {
        font-size: 2.5rem;
    }
    .panorama-controls {
        display: none;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .stats-section {
        flex-direction: column;
    }
}


/* --- MOBILE FIRST RESPONSIVE OVERHAUL --- */

/* Tablet (768px and up) */
@media (min-width: 768px) {
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  p { font-size: 17px; }
  .section { padding: 70px 0; }
  
  /* Cards 2 Columns */
  .services-grid, .projects-grid, .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Laptop (1024px and up) */
@media (min-width: 1024px) {
  h1 { font-size: 48px; }
  h2 { font-size: 38px; }
  p { font-size: 18px; }
  .section { padding: 100px 0; }
  
  /* Cards 3 Columns */
  .services-grid, .projects-grid, .stats-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/* Desktop (1366px and up) */
@media (min-width: 1366px) {
  h1 { font-size: 56px; }
  h2 { font-size: 48px; }
  
  /* Cards 4 Columns */
  .services-grid, .projects-grid, .stats-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}


/* --- FOOTER RESPONSIVE --- */
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr !important; }
}

/* --- MASONRY GALLERY RESPONSIVE --- */
@media (min-width: 768px) {
  .masonry-grid { column-count: 2 !important; }
}

@media (min-width: 1024px) {
  .masonry-grid { column-count: 3 !important; }
}

@media (min-width: 1366px) {
  .masonry-grid { column-count: 4 !important; }
}


/* --- OVERLAY (no blur — prevents mobile page blur) --- */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 39, 68, 0.5);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  pointer-events: none;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* --- MOBILE NAV LINKS (prescribed small size) --- */
.mobile-nav .nav-link {
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 0.85rem 0 !important;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  display: block;
  color: #1E1E1E;
  margin-bottom: 0 !important;
}

