/* ============================================================
   Oceana Homes â€” Main Stylesheet
   Mobile-first, pure CSS, no frameworks
   ============================================================ */

/* â”€â”€ Google Fonts are loaded in HTML via <link> â”€â”€ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --color-primary:     #0F3C61;
  --color-primary-mid: #1D6195;
  --color-accent:      #18B4F5;
  --color-accent-mid:  #319AE0;
  --color-black:       #141518;
  --color-dark:        #2B2E32;
  --color-text:        #444A50;
  --color-muted:       #777777;
  --color-border:      #C3C3C3;
  --color-surface:     #E8E8E8;
  --color-bg-alt:      #F3F3F3;
  --color-white:       #FFFFFF;
  --color-gold:        #F59E0B;
  --color-amber:       #D97706;
  --gradient-brand:    linear-gradient(135deg, #0F3C61 0%, #1D6195 40%, #319AE0 75%, #18B4F5 100%);

  --shadow-sm:  0 2px 8px rgba(15, 60, 97, 0.08);
  --shadow-md:  0 4px 20px rgba(15, 60, 97, 0.12);
  --shadow-lg:  0 8px 40px rgba(15, 60, 97, 0.18);
  --shadow-xl:  0 16px 64px rgba(15, 60, 97, 0.22);

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --transition: 0.3s ease;
  --container:  1200px;
  --font-head:  'Montserrat', sans-serif;
  --font-body:  'Inter', sans-serif;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--color-primary);
}

/* ============================================================
   3. UTILITY CLASSES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section-pad {
  padding: 80px 0;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.section-title.white { color: var(--color-white); }

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--color-muted);
  max-width: 620px;
  line-height: 1.7;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle.white { color: rgba(255,255,255,0.75); }

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  border: 2px solid var(--color-accent);
}
.btn-primary:hover {
  background: var(--color-accent-mid);
  border-color: var(--color-accent-mid);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(24,180,245,0.35);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}
.btn-outline-white:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

/* ============================================================
   4. SCROLL ANIMATIONS
   ============================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================================
   5. TOP INFO BAR
   ============================================================ */
.top-bar {
  background: var(--color-black);
  padding: 8px 0;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.75);
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-item svg {
  width: 14px;
  height: 14px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.top-bar-item a:hover {
  color: var(--color-accent);
}

.top-bar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.2);
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}

.social-icon:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(24,180,245,0.1);
}

.social-icon svg {
  width: 13px;
  height: 13px;
}

/* ============================================================
   6. NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-primary);
  transition: box-shadow var(--transition), background var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(15,60,97,0.45);
  background: rgba(15,60,97,0.97);
  backdrop-filter: blur(10px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

.nav-logo img {
  height: 52px;
  width: auto;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 4px;
}

.nav-link {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-accent);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > .nav-link::before {
  content: '';
  position: absolute;
  bottom: -18px;
  left: 0;
  right: 0;
  height: 18px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 100;
  overflow: hidden;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 8px);
}

.dropdown-menu a {
  display: block;
  padding: 11px 18px;
  font-size: 0.875rem;
  color: var(--color-text);
  transition: all var(--transition);
}

.dropdown-menu a:hover {
  background: var(--color-bg-alt);
  color: var(--color-accent);
  padding-left: 24px;
}

/* ===== Rich (mega) dropdown for Projects ===== */
.dropdown-menu-rich {
  min-width: 320px;
  padding: 10px;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(15, 60, 97, 0.18), 0 4px 12px rgba(15, 60, 97, 0.08);
  border-color: rgba(15, 60, 97, 0.08);
  overflow: visible;
}
.dropdown-menu-rich > li {
  position: relative;
}
.dropdown-menu-rich .dd-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  transition: background var(--transition), transform var(--transition);
}
.dropdown-menu-rich .dd-item:hover {
  background: linear-gradient(135deg, rgba(24,180,245,0.08), rgba(15,60,97,0.05));
  padding-left: 14px;
  transform: translateX(2px);
}
.dropdown-menu-rich .dd-icon {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: var(--color-bg-alt);
  color: var(--color-primary);
  transition: background var(--transition), color var(--transition);
}
.dropdown-menu-rich .dd-icon svg {
  width: 18px;
  height: 18px;
}
.dropdown-menu-rich .dd-icon-accent {
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
  color: #fff;
}
.dropdown-menu-rich .dd-item:hover .dd-icon {
  background: var(--color-primary);
  color: #fff;
}
.dropdown-menu-rich .dd-item:hover .dd-icon-accent {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}
.dropdown-menu-rich .dd-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.dropdown-menu-rich .dd-title {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.3;
}
.dropdown-menu-rich .dd-desc {
  font-size: 0.78rem;
  color: #6b7280;
  line-height: 1.35;
}
.dropdown-menu-rich .dd-chevron {
  width: 13px;
  height: 13px;
  opacity: 0.6;
  transition: transform var(--transition), opacity var(--transition);
}
.dropdown-menu-rich .dd-has-flyout:hover .dd-chevron {
  transform: translateX(3px);
  opacity: 1;
  color: var(--color-accent);
}

/* Nested flyout (Selling Now â†’ projects) */
.dropdown-flyout {
  list-style: none;
  margin: 0;
  padding: 10px;
  position: absolute;
  top: -10px;
  left: calc(100% + 8px);
  min-width: 280px;
  background: var(--color-white);
  border-radius: 14px;
  border: 1px solid rgba(15, 60, 97, 0.08);
  box-shadow: 0 20px 50px rgba(15, 60, 97, 0.18), 0 4px 12px rgba(15, 60, 97, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 110;
}
.dropdown-menu-rich .dd-has-flyout:hover .dropdown-flyout {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.dropdown-flyout::before {
  content: '';
  position: absolute;
  top: 0;
  left: -10px;
  width: 10px;
  height: 100%;
}
.dropdown-flyout .dd-flyout-heading {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  padding: 6px 12px 8px;
  border-bottom: 1px solid var(--color-bg-alt);
  margin-bottom: 4px;
}
.dropdown-flyout li a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--color-text);
  transition: background var(--transition), color var(--transition);
}
.dropdown-flyout li a:hover {
  background: var(--color-bg-alt);
  padding-left: 12px;
}
.dropdown-flyout .dd-fly-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.3;
}
.dropdown-flyout .dd-fly-loc {
  font-size: 0.75rem;
  color: #6b7280;
}
.dropdown-flyout li a:hover .dd-fly-name {
  color: var(--color-accent);
}
.dropdown-flyout .dd-flyout-footer {
  margin-top: 4px;
  border-top: 1px solid var(--color-bg-alt);
  padding-top: 4px;
}
.dropdown-flyout .dd-flyout-footer a {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-accent);
  padding: 8px 12px;
}
.dropdown-flyout .dd-flyout-footer a:hover {
  color: var(--color-primary);
}

.nav-cta {
  display: none;
}

.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  cursor: pointer;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  visibility: hidden;
  pointer-events: none;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  transition: opacity var(--transition);
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--color-primary);
  box-shadow: var(--shadow-xl);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 24px 0;
}

.mobile-menu.open {
  visibility: visible;
  pointer-events: all;
}

.mobile-menu.open .mobile-menu-backdrop {
  opacity: 1;
}

.mobile-menu.open .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.mobile-menu-header img {
  height: 44px;
}

.mobile-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: none;
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--color-white);
}

.mobile-nav-links {
  padding: 16px 0;
}

.mobile-nav-link {
  display: block;
  padding: 12px 24px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: all var(--transition);
}

.mobile-nav-link:hover {
  color: var(--color-accent);
  background: rgba(255,255,255,0.06);
  padding-left: 30px;
}

.mobile-dropdown-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  padding: 16px 24px 6px;
}

.mobile-sub-link {
  display: block;
  padding: 10px 24px 10px 36px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.72);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: all var(--transition);
}

.mobile-sub-link:hover {
  color: var(--color-accent);
  background: rgba(255,255,255,0.06);
}

.mobile-sub-link-bold {
  color: rgba(255,255,255,0.92);
  font-weight: 600;
}

.mobile-sub-sub-link {
  display: block;
  padding: 8px 24px 8px 50px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  transition: all var(--transition);
}

.mobile-sub-sub-link::before {
  content: 'â€º';
  position: absolute;
  left: 38px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-accent);
  font-weight: 700;
}

.mobile-sub-sub-link:hover {
  color: var(--color-accent);
  background: rgba(255,255,255,0.06);
  padding-left: 56px;
}

.mobile-menu-cta {
  padding: 24px;
}

.mobile-menu-cta .btn {
  width: 100%;
  justify-content: center;
}

/* Desktop nav */
@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-cta { display: flex; }
  .nav-hamburger { display: none; }
}

/* ============================================================
   7. HERO SLIDER
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 6s ease;
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 60, 97, 0.65);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  padding: 0 20px;
  max-width: var(--container);
  margin: 0 auto;
}

.hero-content-inner {
  max-width: 700px;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 6vw, 3.75rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Slide Controls */
.hero-controls {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}

.hero-arrow:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.hero-arrow-prev { left: 20px; }
.hero-arrow-next { right: 20px; }

.hero-arrow svg { width: 20px; height: 20px; }

.hero-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  pointer-events: all;
  z-index: 3;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.hero-dot.active {
  background: var(--color-accent);
  transform: scale(1.3);
}

/* Scroll indicator */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  right: 32px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 1.8s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(0.6); opacity: 0.2; }
}

@media (min-width: 768px) {
  .hero-arrow-prev { left: 36px; }
  .hero-arrow-next { right: 36px; }
  .hero-content { padding: 0 48px; }
}

@media (min-width: 1280px) {
  .hero-content { padding: 0 80px; }
}

/* ============================================================
   8. STATS COUNTER BAR
   ============================================================ */
.stats-bar {
  background: var(--color-primary);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 20px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .stat-item:not(:last-child) {
    border-right: 1px solid rgba(255,255,255,0.15);
  }
}

/* ============================================================
   9. ABOUT SECTION
   ============================================================ */
.about-section {
  padding: 100px 0;
  border-left: 5px solid transparent;
  border-image: var(--gradient-brand) 1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

.about-content .section-subtitle {
  margin-bottom: 28px;
}

.about-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-bottom: 36px;
}

.about-bullet {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-dark);
}

.about-bullet .check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(24,180,245,0.12);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 700;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-image-badge .badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.about-image-badge .badge-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
}

.about-image-badge .badge-text span {
  font-size: 0.8rem;
  color: var(--color-muted);
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   10. SERVICES / FEATURES CARDS
   ============================================================ */
.services-section {
  background: var(--color-bg-alt);
  padding: 100px 0;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border-top: 3px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--color-accent);
}

.service-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card-body {
  padding: 28px;
}

.service-icon {
  font-size: 1.75rem;
  margin-bottom: 14px;
}

.service-card-body h3 {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.service-card-body p {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.65;
}

@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   11. CURRENTLY SELLING PROJECTS
   ============================================================ */
.projects-section {
  background: var(--color-bg-alt);
  padding: 100px 0;
}

.projects-header {
  text-align: center;
  margin-bottom: 56px;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 48px;
}

.project-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.project-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.project-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover .project-img-wrap img {
  transform: scale(1.05);
}

.project-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  z-index: 2;
}

.badge-selling {
  background: var(--color-accent);
  color: var(--color-white);
}

.badge-limited {
  background: var(--color-amber);
  color: var(--color-white);
}

.badge-new {
  background: #059669;
  color: var(--color-white);
}

.project-body {
  padding: 24px;
}

.project-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.project-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-bottom: 14px;
}

.project-location svg {
  width: 14px;
  height: 14px;
  color: var(--color-accent);
}

.project-price {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 14px;
}

.project-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-bottom: 18px;
}

.project-spec {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8125rem;
  color: var(--color-muted);
}

.project-spec svg {
  width: 15px;
  height: 15px;
  color: var(--color-primary-mid);
}

.project-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition), color var(--transition);
}

.project-link:hover {
  color: var(--color-accent);
  gap: 8px;
}

.projects-cta {
  text-align: center;
}

@media (min-width: 640px) {
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .projects-grid { grid-template-columns: repeat(4, 1fr); }
  .project-img-wrap { height: 220px; }
}

/* ============================================================
   12. WHY CHOOSE US
   ============================================================ */
.why-section {
  padding: 100px 0;
  background: var(--color-white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

.why-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.benefit-card {
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  transition: all var(--transition);
}

.benefit-card:hover {
  background: var(--color-white);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.benefit-icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.benefit-card h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.benefit-card p {
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.55;
}

.why-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.why-image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.why-image-accent {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  background: var(--gradient-brand);
  z-index: -1;
}

@media (min-width: 1024px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   13. HOW TO BUY (STEPS)
   ============================================================ */
.steps-section {
  background: var(--color-bg-alt);
  padding: 100px 0;
}

.steps-header {
  text-align: center;
  margin-bottom: 70px;
}

.steps-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px 40px;
  position: relative;
}

.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-accent), rgba(24,180,245,0.2));
}

.step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(24,180,245,0.35);
}

.step-emoji {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.step-item h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.step-item p {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.6;
  max-width: 220px;
}

@media (min-width: 768px) {
  .steps-row {
    grid-template-columns: repeat(4, 1fr);
  }

  .step-item {
    padding: 0 16px;
  }

  .step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(50% + 32px);
    right: calc(-50% + 32px);
    bottom: auto;
    width: auto;
    height: 2px;
    background: linear-gradient(to right, var(--color-accent), rgba(24,180,245,0.2));
    transform: none;
  }
}

/* ============================================================
   14. COMPLETED PROJECTS GALLERY
   ============================================================ */
.gallery-section {
  padding: 100px 0;
  background: var(--color-white);
}

.gallery-header {
  text-align: center;
  margin-bottom: 56px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,60,97,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 4px;
}

.gallery-overlay span {
  font-size: 0.8125rem;
  color: var(--color-accent);
}

.gallery-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: #fff;
  z-index: 1;
}
.gallery-card-info h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
}
.gallery-card-info span {
  font-size: 0.875rem;
  opacity: 0.9;
  color: var(--color-accent);
}
.view-btn {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #fff;
  border-radius: 4px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
}

.gallery-cta {
  text-align: center;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   15. TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--color-primary);
  padding: 100px 0;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-carousel {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.testimonial-slides {
  overflow: hidden;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-card {
  text-align: center;
  padding: 0 20px;
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 0.5;
  color: var(--color-accent);
  display: block;
  margin-bottom: 28px;
  opacity: 0.7;
}

.testimonial-text {
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: rgba(255,255,255,0.92);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-author {
  margin-bottom: 16px;
}

.testimonial-name {
  display: block;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 4px;
}

.testimonial-location {
  font-size: 0.875rem;
  color: var(--color-accent);
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  font-size: 1.1rem;
  color: var(--color-gold);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.testimonial-dot.active {
  background: var(--color-accent);
  transform: scale(1.3);
}

/* ============================================================
   16. FAQ SECTION
   ============================================================ */
.faq-section {
  padding: 100px 0;
  background: var(--color-white);
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: start;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-dark);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-item.open .faq-question {
  color: var(--color-accent);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--color-muted);
  transition: all var(--transition);
  font-style: normal;
}

.faq-item.open .faq-icon {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: var(--color-white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding-bottom: 20px;
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.7;
}

.faq-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.faq-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.faq-contact-box {
  background: var(--gradient-brand);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  color: var(--color-white);
}

.faq-contact-box h3 {
  font-size: 1.1875rem;
  color: var(--color-white);
  margin-bottom: 12px;
}

.faq-contact-box p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  line-height: 1.6;
}

.faq-contact-box .btn {
  background: var(--color-white);
  color: var(--color-primary);
  width: 100%;
  justify-content: center;
}

.faq-contact-box .btn:hover {
  background: var(--color-bg-alt);
}

@media (min-width: 1024px) {
  .faq-layout {
    grid-template-columns: 3fr 2fr;
  }
}

/* ============================================================
   17. TEAM SECTION
   ============================================================ */
.team-section {
  background: var(--color-bg-alt);
  padding: 100px 0;
}

.team-header {
  text-align: center;
  margin-bottom: 56px;
}

.team-grid {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.team-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  width: 100%;
  max-width: 280px;
  transition: all var(--transition);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.team-photo-wrap {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 4px solid var(--color-accent);
  box-shadow: 0 0 0 4px rgba(24,180,245,0.15);
}

.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.team-role {
  font-size: 0.875rem;
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: 18px;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.team-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  transition: all var(--transition);
}

.team-social-btn:hover {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: var(--color-white);
}

.team-social-btn svg {
  width: 15px;
  height: 15px;
}

/* ============================================================
   18. ENQUIRY / CONTACT
   ============================================================ */
.contact-section {
  padding: 100px 0;
  background: var(--color-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 600px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.contact-info {
  background: var(--color-primary);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.3;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-detail-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
}

.contact-detail-text {
  display: flex;
  flex-direction: column;
}

.contact-detail-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2px;
}

.contact-detail-value {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
}

.contact-detail-value a:hover {
  color: var(--color-accent);
}

.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  flex: 1;
  min-height: 220px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border: none;
  display: block;
}

.contact-form-wrap {
  background: var(--color-white);
  padding: 56px 48px;
}

.contact-form-wrap h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  font-size: 0.9375rem;
  color: var(--color-muted);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-dark);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  color: var(--color-dark);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(24,180,245,0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--color-accent-mid);
  box-shadow: 0 4px 20px rgba(24,180,245,0.35);
  transform: translateY(-1px);
}

.form-note {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-top: 12px;
  text-align: center;
}

@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   19. FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-black);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-col-1 .footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-size: 0.875rem;
  color: #9D9D9D;
  line-height: 1.65;
  max-width: 240px;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9D9D9D;
  transition: all var(--transition);
}

.footer-social:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(24,180,245,0.1);
}

.footer-social svg { width: 14px; height: 14px; }

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.875rem;
  color: #9D9D9D;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: #9D9D9D;
}

.footer-contact-item svg {
  width: 15px;
  height: 15px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a:hover {
  color: var(--color-accent);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.newsletter-input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  color: var(--color-white);
  font-size: 0.875rem;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-input::placeholder { color: rgba(255,255,255,0.35); }

.newsletter-input:focus {
  border-color: var(--color-accent);
}

.newsletter-btn {
  width: 100%;
  padding: 11px;
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}

.newsletter-btn:hover {
  background: var(--color-accent-mid);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.8125rem;
  color: #9D9D9D;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: #9D9D9D;
}

.footer-bottom-links a:hover {
  color: var(--color-accent);
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.3fr; }
}

/* ============================================================
   20. BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  border: none;
  z-index: 900;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-accent-mid);
  transform: translateY(-2px);
}

.back-to-top svg { width: 18px; height: 18px; }

/* ============================================================
   21. NOTIFICATION / TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: 84px;
  right: 28px;
  background: var(--color-dark);
  color: var(--color-white);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 2000;
  max-width: 300px;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.success { border-left: 4px solid #10B981; }
.toast.error   { border-left: 4px solid #EF4444; }

/* ============================================================
   22. RESPONSIVE â€” DESKTOP REFINEMENTS
   ============================================================ */
@media (min-width: 1024px) {
  .section-pad { padding: 100px 0; }
}

@media (min-width: 1280px) {
  .section-pad { padding: 120px 0; }

  .contact-info { padding: 64px 56px; }
  .contact-form-wrap { padding: 64px 56px; }
}

/* ============================================================
   23. PRINT STYLES
   ============================================================ */
@media print {
  .top-bar,
  .site-header,
  .hero-controls,
  .back-to-top,
  .site-footer,
  .contact-map {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  a { color: #000; }

  .section-pad { padding: 40px 0; }

  .hero {
    height: auto;
    min-height: 0;
  }
}

/* ============================================================
   24. ACCESSIBILITY
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}