/*
Theme Name: Dreams Infra
Theme URI: https://dreamsinfra.in
Author: Dreams Infra Team
Author URI: https://dreamsinfra.in
Description: Custom architecture & construction theme for Dreams Infra.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dreams-infra
*/

/* ==========================================================================
   CSS Variables & Design System
   ========================================================================== */

@font-face {
    font-family: 'Rockybilly';
    src: url('./fonts/Rockybilly.ttf') format('truetype'),
         url('./fonts/Rockybilly.otf') format('opentype'),
         url('./fonts/rockybilly.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Vonique 64';
    src: url('./fonts/Vonique64.ttf') format('truetype'),
         url('./fonts/vonique64.ttf') format('truetype'),
         url('./fonts/Vonique 64.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

:root {
  /* Colors */
  --bg-page: #F8F8F6;
  --bg-warm: #F2EDE6;
  
  --pista-primary: #7EC89A;
  --pista-light: #B8D9C0;
  --pista-faint: #EEF7EF;
  
  --amber: #E8922A;
  --amber-light: #F4B942;
  
  --navy: #1E2030;
  --navy-dark: #252836;
  
  --text-muted: #6B6B7A;
  --border: #E4E4E0;
  --white: #FFFFFF;
  
  /* Typography System */
  --font-main: 'Vonique 64', 'Outfit', sans-serif;
  --font-display: 'Vonique 64', 'Outfit', sans-serif;
  --font-body: 'Outfit', 'Inter', sans-serif;
  --font-accent: 'Rockybilly', cursive;
  
  --font-serif: var(--font-main);
  --font-sans: var(--font-body);
  --font-script: var(--font-accent);
  
  /* Radii */
  --radius-card: 16px;
  --radius-button: 8px;
  --radius-image: 20px;
  --radius-chip: 12px;
  --radius-icon: 12px;
  
  /* Shadows */
  --shadow-card: 0 2px 20px rgba(0,0,0,0.06);
  --shadow-hover: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-nav: 0 1px 0 #E4E4E0;
  
  --section-padding: 100px 0;
  --container-width: min(92vw, 1360px);
}

/* ==========================================================================
   Global Resets & Base Styles
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--navy);
  line-height: 1.8;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: 64px;
}

h1, h2, h3 {
  font-family: var(--font-main);
  font-weight: normal;
  margin-bottom: 0.5em;
  color: var(--navy);
  letter-spacing: 1px;
}

h4, h5, h6,
.pill-label,
.section-label,
.btn,
.nav-links a,
.wordmark {
  font-family: var(--font-display) !important;
  letter-spacing: 1px;
}

.script-accent,
.font-script,
h1 span.italic,
h2 span.italic {
  font-family: var(--font-script) !important;
  font-style: normal !important;
  font-weight: normal !important;
  letter-spacing: 0 !important;
  display: inline-block;
  padding: 4px 8px;
  margin: 8px 2px;
}

h1 {
  font-size: 60px;
  line-height: 1.45;
}

h2 {
  font-size: 42px;
  line-height: 1.4;
}

p {
  color: var(--text-muted);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography Utilities */
.text-muted { color: var(--text-muted); }
.text-navy { color: var(--navy); }
.text-amber { color: var(--amber); }
.text-white { color: var(--white); }

.italic { font-style: italic; }

.section-label {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--amber);
  margin-bottom: 16px;
  display: block;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-button);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

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

.btn-amber:hover {
  background-color: #d18224;
}

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

.btn-navy:hover {
  background-color: #121420;
}

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

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

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

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

/* Utilities */
.flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.text-center { text-align: center; }
.grid { display: grid; }

/* Sections */
section {
  padding: var(--section-padding);
}

.bg-white { background-color: var(--white); }
.bg-warm { background-color: var(--bg-warm); }
.bg-navy { background-color: var(--navy); color: var(--white); }
.bg-pista-faint { background-color: var(--pista-faint); }

/* ==========================================================================
   Section 1: Navbar
   ========================================================================== */
.navbar {
  background-color: var(--white);
  box-shadow: var(--shadow-nav);
  height: 64px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.admin-bar .navbar {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .navbar {
    top: 46px;
  }
}
@media screen and (max-width: 600px) {
  .admin-bar .navbar {
    top: 0;
  }
}
.navbar .container { height: 100%; }
.logo-mark { margin-right: 8px; }
.wordmark { font-family: var(--font-display) !important; font-size: 22px; letter-spacing: 2px; color: var(--navy); font-weight: 600; }
.nav-menu-wrapper { gap: 40px; }
.nav-links { gap: 32px; font-weight: 500; font-size: 13px; margin: 0; padding: 0; }
.nav-links a:hover { color: var(--amber); }
.nav-cta { gap: 24px; font-weight: 500; font-size: 13px; }

/* ==========================================================================
   Section 2: Hero
   ========================================================================== */
.hero { display: flex; min-height: calc(100vh - 64px); background-color: var(--navy-dark); overflow: hidden; position: relative; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; animation: kenBurnsZoom 8s infinite alternate ease-in-out; }
@keyframes kenBurnsZoom { 0% { transform: scale(1); } 100% { transform: scale(1.18); } }
.hero-overlay { position: absolute; inset: 0; background: rgba(11, 17, 32, 0.6); z-index: 1; }
.hero-container { position: relative; z-index: 2; width: 100%; height: 100%; min-height: calc(100vh - 64px); padding: 80px 24px; display: flex; align-items: center; justify-content: flex-start; }

@keyframes slideInLeft { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes cinematicReveal { from { opacity: 0; transform: translateY(40px) scale(0.98); filter: blur(8px); } to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); } }

.hero-content { max-width: 680px; width: 100%; }
.hero-content > * { opacity: 0; }
.hero-content.play-animations > * { animation: cinematicReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

.hero-content .pill-label { background-color: var(--pista-primary); color: var(--navy); padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; display: inline-block; margin-bottom: 24px; }
.hero-content h1 { margin-bottom: 24px; color: var(--white); font-size: 64px; text-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.hero-content p { max-width: 520px; margin-bottom: 40px; color: var(--white); font-size: 18px; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }

.hero-content.play-animations .pill-label { animation-delay: 0.2s; }
.hero-content.play-animations h1 { animation-delay: 0.4s; }
.hero-content.play-animations p { animation-delay: 0.6s; }
.hero-content.play-animations .cta-row { animation-delay: 0.8s; }

.cta-row { gap: 16px; margin-bottom: 60px; }

/* Stats Row Restored */
.stats-row { gap: 24px; }
.stat-card { background: var(--white); border-radius: var(--radius-card); padding: 24px 32px; box-shadow: var(--shadow-card); min-width: 160px; flex: 1; text-align: center; opacity: 0; transform: translateY(30px) scale(0.95); transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease; }
.stat-card.visible { opacity: 1; transform: translateY(0) scale(1); }
.stat-card:nth-child(1).visible { transition-delay: 0s; }
.stat-card:nth-child(2).visible { transition-delay: 0.15s; }
.stat-card:nth-child(3).visible { transition-delay: 0.3s; }
.stat-card:nth-child(4).visible { transition-delay: 0.45s; }
.stat-card.visible:hover { transform: translateY(-5px); box-shadow: 0 12px 24px rgba(0,0,0,0.1); transition-delay: 0s !important; }
.stat-num { font-family: var(--font-serif); font-size: 40px; color: var(--amber); display: block; line-height: 1; margin-bottom: 8px; font-weight: 600; }
.stat-label { font-size: 14px; font-family: var(--font-body); color: var(--text-muted); text-transform: none; font-weight: 600; line-height: 1.3; }

.btn-outline-white { border: 2px solid var(--white); color: var(--white); background: transparent; }
.btn-outline-white:hover { background: var(--white); color: var(--navy); }
.btn-primary { background-color: var(--pista-primary); color: var(--navy); }
.btn-primary:hover { background-color: var(--pista-light); color: var(--navy); }

.service-btn {
  min-width: 240px !important;
  width: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 18px 28px !important;
  text-align: center !important;
  box-sizing: border-box !important;
  font-weight: 600;
  white-space: nowrap !important;
}
@media (max-width: 992px) {
  .service-btn { width: 100% !important; min-width: 0 !important; }
}


.hero-bottom-badge { position: absolute; bottom: 40px; right: 24px; background: var(--amber); color: var(--white); padding: 12px 24px; border-radius: var(--radius-chip); display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 13px; box-shadow: var(--shadow-hover); z-index: 10; opacity: 0; animation: slideInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards; }

/* ==========================================================================
   Section 2.5: Trust Badge Bar (Below Hero)
   ========================================================================== */
.trust-badge-bar {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 2px solid rgba(245, 158, 11, 0.35);
  padding: 32px 0;
  position: relative;
  z-index: 5;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.trust-badge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.trust-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 158, 11, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.trust-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: rgba(245, 158, 11, 0.18);
  color: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.3);
}
.trust-text {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
  letter-spacing: 0.2px;
}

@media (max-width: 1024px) {
  .trust-badge-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .trust-badge-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .trust-item {
    padding: 14px 18px;
  }
}

/* ==========================================================================
   Section 3: About
   ========================================================================== */
.flex-col { flex-direction: column; }
.dark-card { background-color: var(--navy-dark); border-radius: var(--radius-card); padding: 24px; display: flex; align-items: center; gap: 20px; border-left: 2px solid var(--pista-primary); color: var(--white); transition: box-shadow 0.3s; }
.dark-card:hover { box-shadow: var(--shadow-hover); }
.feature-thumb { width: 72px; height: 72px; border-radius: 10px; object-fit: cover; }
.feature-text h4 { font-family: var(--font-sans); font-size: 14px; font-weight: 600; margin-bottom: 4px; color: var(--white); }
.feature-text p { font-size: 13px; color: rgba(255,255,255,0.55); margin: 0; }

/* ==========================================================================
   Section 4: Services
   ========================================================================== */
.services-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { 
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    background: var(--white); 
    border-radius: var(--radius-card); 
    padding: 32px 24px; 
    box-shadow: var(--shadow-card); 
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); 
    transform-style: preserve-3d;
}
.service-card.is-revealed:hover,
.service-card:hover { 
    box-shadow: var(--shadow-hover); 
    transform: perspective(1000px) translateY(-8px) scale(1.02) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) !important; 
}
.service-card.is-tracking {
    transition: transform 0.1s ease-out, box-shadow 0.5s ease;
}
.service-thumb { width: 100%; height: 160px; border-radius: var(--radius-image); overflow: hidden; margin-bottom: 20px; box-shadow: 0 4px 16px rgba(0,0,0,0.12); background-color: var(--navy-dark); }
.service-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); }
.service-card:hover .service-thumb img { transform: scale(1.15); }
.service-card h4 { font-family: var(--font-sans); font-weight: 700; font-size: 17px; margin-bottom: 8px; color: var(--navy); }
.service-card p { font-size: 13px; line-height: 1.6; margin: 0; }

/* ==========================================================================
   Section 5: Latest Projects
   ========================================================================== */
.filter-tabs { background: var(--white); padding: 4px; border-radius: 30px; border: 1px solid var(--border); }
.tab-btn { padding: 8px 20px; border-radius: 20px; border: none; background: transparent; color: var(--text-muted); font-size: 13px; font-weight: 500; cursor: pointer; transition: all 0.3s; }
.tab-btn.active { background: var(--amber); color: var(--white); }
.tab-btn:hover:not(.active) { color: var(--navy); }

.projects-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.project-card { position: relative; border-radius: var(--radius-image); overflow: hidden; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.project-card.large { grid-column: span 7; height: 360px; }
.project-card.tall { grid-column: span 5; height: 360px; }
.project-card.standard { grid-column: span 4; height: 260px; }

.project-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(30,32,48,0.9) 0%, transparent 60%); display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; padding: 28px; transition: all 0.3s ease; }
.project-card:hover .project-overlay { background: linear-gradient(to top, rgba(30,32,48,0.95) 0%, rgba(30,32,48,0.4) 100%); }
.project-card:hover img { transform: scale(1.05); }

.project-info { flex: 1 1 auto; min-width: 0; }
.project-info h3 { color: var(--white); font-size: 18px; margin-bottom: 4px; white-space: normal; word-break: break-word; }
.project-info span { color: var(--amber); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.project-btn { opacity: 0; transform: translateY(10px); transition: all 0.3s ease; flex: 0 0 auto !important; width: 145px !important; height: 42px !important; display: inline-flex !important; align-items: center; justify-content: center; padding: 0 !important; font-size: 12.5px !important; white-space: nowrap !important; letter-spacing: 0.05em; }
.project-card:hover .project-btn { opacity: 1; transform: translateY(0); }

/* Mobile Touch Animation Support */
.project-card.is-touched img,
.project-card:active img { transform: scale(1.1) !important; }
.project-card.is-touched .project-overlay,
.project-card:active .project-overlay { background: linear-gradient(to top, rgba(15,23,42,0.95) 0%, rgba(15,23,42,0.4) 100%) !important; }
.project-card.is-touched .project-btn,
.project-card:active .project-btn { background: var(--amber) !important; border-color: var(--amber) !important; color: var(--white) !important; transform: scale(0.96) !important; box-shadow: 0 0 20px rgba(245, 158, 11, 0.6) !important; opacity: 1 !important; }

.service-card.is-touched,
.service-card:active { transform: scale(0.98) translateY(-4px) !important; box-shadow: var(--shadow-hover) !important; border: 1px solid var(--amber) !important; }
.service-card.is-touched .service-thumb img,
.service-card:active .service-thumb img { transform: scale(1.15) !important; }
/* ==========================================================================
   Section 6: Video Section
   ========================================================================== */
.video-section { padding: 0; }
.video-bg { width: 100%; height: 500px; position: relative; overflow: hidden; }
@keyframes slowZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.18); }
}
.video-bg img { width: 100%; height: 100%; object-fit: cover; animation: slowZoom 8s infinite alternate ease-in-out; }
.video-overlay { position: absolute; inset: 0; background: rgba(30,32,48,0.35); }
.h-100 { height: 100%; }
.relative { position: relative; }
.z-10 { z-index: 10; }
.play-btn { width: 80px; height: 80px; border-radius: 50%; background: var(--white); border: none; box-shadow: var(--shadow-hover); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: transform 0.3s; z-index: 2; }
.play-btn:hover { transform: scale(1.05); }
.video-text-left { position: absolute; bottom: 40px; left: 40px; z-index: 2; }
.video-text-left h2 { font-size: 28px; margin: 0; }
.video-text-right { position: absolute; bottom: 40px; right: 40px; z-index: 2; }
.pill-amber { background: var(--amber); color: var(--white); padding: 8px 20px; border-radius: 20px; font-size: 13px; font-weight: 600; display: inline-block; }

/* ==========================================================================
   Section 7: Why Choose Us
   ========================================================================== */
.strengths-grid { grid-template-columns: repeat(3, 1fr); margin-top: 60px; border-top: 1px solid rgba(255,255,255,0.08); }
.strength-col { position: relative; padding: 40px 32px; border-right: 1px solid rgba(255,255,255,0.08); text-align: left; transition: all 0.3s; overflow: hidden; }
.border-right-0 { border-right: none !important; }
@keyframes floatGhost {
  0%, 100% { transform: translateY(0); opacity: 0.18; color: var(--pista-primary); }
  50% { transform: translateY(-6px); opacity: 0.38; color: var(--amber); }
}

@keyframes laserShimmer {
  0%, 100% { width: 20%; opacity: 0.4; }
  50% { width: 55%; opacity: 1; box-shadow: 0 0 12px var(--pista-primary); }
}

.ghost-num { position: absolute; top: 12px; right: 28px; font-family: var(--font-main); font-size: 60px; font-weight: 700; color: var(--pista-primary); opacity: 0.25; line-height: 1; pointer-events: none; animation: floatGhost 4s infinite ease-in-out; }
.strength-col h4 { font-family: var(--font-sans); font-size: 15px; font-weight: 600; text-transform: uppercase; margin-bottom: 12px; transition: color 0.3s; }
.strength-col p { font-size: 13px; color: rgba(255,255,255,0.5); }
.hover-line { position: absolute; bottom: 0; left: 0; height: 2px; width: 0; background: var(--pista-primary); transition: all 0.4s ease; }
.strength-col:hover .hover-line { width: 100%; background: var(--amber); box-shadow: 0 0 15px rgba(217,119,6,0.5); }

@media (max-width: 992px) {
  .strength-col .hover-line { width: 35%; animation: laserShimmer 3.5s infinite ease-in-out; }
  .strength-col:active { background: rgba(255,255,255,0.04); }
  .strength-col:active .hover-line { width: 100%; background: var(--amber); }
}

/* ==========================================================================
   Section 8: Stats Bar
   ========================================================================== */
.stats-bar { padding: 60px 0; border-bottom: 1px solid var(--border); }
.stats-bar-grid { grid-template-columns: repeat(3, 1fr); }
.stat-item { flex: 1; border-right: 1px solid var(--border); padding: 0 16px; }
.stat-item:last-child { border-right: none; }
.stat-item .stat-num { font-size: 48px; color: var(--navy); font-family: var(--font-serif); margin-bottom: 8px; }
.stat-item .stat-label { color: var(--text-muted); font-size: 16px; margin: 0; font-weight: 500; }
.stat-val { margin-bottom: 8px; }
.stat-val .num { font-family: var(--font-serif); font-size: 48px; }
.stat-val .suffix { font-family: var(--font-serif); font-size: 32px; }
.stat-item .stat-name { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); }
.about { padding: 100px 0; }
.about-left { position: relative; }
/* 3D Holographic Blueprint */
.hologram-wrapper { perspective: 1000px; width: 100%; display: flex; justify-content: center; align-items: center; }
.hologram-card { position: relative; width: 100%; transform-style: preserve-3d; transition: transform 0.1s ease-out; border-radius: var(--radius-image); border: 1px solid rgba(58, 203, 142, 0.3); background: rgba(11, 17, 32, 0.4); overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.wireframe-hologram { width: 100%; height: auto; display: block; opacity: 0.9; transform: translateZ(30px); position: relative; z-index: 2; mix-blend-mode: screen; filter: drop-shadow(0 0 10px rgba(58, 203, 142, 0.5)); }
.hologram-glow { position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at center, rgba(58, 203, 142, 0.15) 0%, transparent 60%); transform: translateZ(0); pointer-events: none; z-index: 1; transition: opacity 0.3s; opacity: 0; }
.hologram-card:hover .hologram-glow { opacity: 1; }
.hologram-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(58, 203, 142, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(58, 203, 142, 0.1) 1px, transparent 1px); background-size: 20px 20px; transform: translateZ(10px); z-index: 0; pointer-events: none; opacity: 0.3; }
.about-right .section-label { color: var(--navy); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; display: inline-block; margin-bottom: 12px; }

/* ==========================================================================
   Section 9: Process
   ========================================================================== */
.bg-page { background-color: var(--bg-page); }
.process-line { position: absolute; top: 28px; left: 10%; right: 10%; height: 1.5px; border-top: 1.5px dashed var(--pista-light); z-index: 1; }
.step { position: relative; width: 30%; z-index: 2; padding: 0 20px; }
.step-num-bg { position: absolute; top: -30px; left: 50%; transform: translateX(-50%); font-family: var(--font-serif); font-size: 100px; color: var(--navy); opacity: 0.08; z-index: 0; line-height: 1.2; overflow: visible; }
.step-icon { width: 56px; height: 56px; background: var(--pista-faint); border-radius: var(--radius-card); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px auto; border: 2px solid var(--bg-page); }
.step h4 { font-family: var(--font-sans); font-size: 16px; font-weight: 600; margin-bottom: 12px; }
.step p { font-size: 14px; }

/* ==========================================================================
   Section 10: Testimonials
   ========================================================================== */
.test-grid { display: flex !important; flex-direction: row; flex-wrap: nowrap; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 10px 4px 30px 4px; scrollbar-width: none; }
.test-grid::-webkit-scrollbar { display: none; }
.test-card { flex: 0 0 calc(33.333% - 16px); min-width: 320px; scroll-snap-align: start; background: var(--white); border-radius: var(--radius-image); padding: 40px; box-shadow: var(--shadow-card); position: relative; text-align: left; opacity: 1 !important; transform: none !important; transition: box-shadow 0.3s ease, transform 0.3s ease; }
.test-card:hover { transform: translateY(-8px) !important; box-shadow: 0 16px 32px rgba(0,0,0,0.1); }
.quote-mark { position: absolute; top: 20px; right: 24px; font-family: var(--font-serif); font-size: 60px; color: var(--amber); opacity: 0.3; line-height: 1; }
.stars { color: var(--amber); font-size: 18px; margin-bottom: 20px; letter-spacing: 2px; }
.quote { font-size: 15px; color: var(--navy); margin-bottom: 32px; font-style: italic; }
.client-info { justify-content: flex-start; gap: 16px; }
.avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--pista-light); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--navy); }
.text-left { text-align: left; }
.client-name { font-weight: 600; font-size: 14px; color: var(--navy); margin-bottom: 2px; }
.client-role { font-size: 12px; color: var(--text-muted); }
.nav-arrow { width: 48px; height: 48px; border-radius: 50%; background: var(--amber); color: var(--white); border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.3s; font-size: 18px; }
.nav-arrow:hover { background: var(--navy); }

/* ==========================================================================
   Section 11: Options
   ========================================================================== */
.options-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
.option-card { border-radius: var(--radius-image); padding: 48px 32px; background: var(--bg-page); text-align: center; position: relative; overflow: hidden; transition: box-shadow 0.3s; box-shadow: var(--shadow-card); border: 1px solid transparent; }
.option-card:hover { box-shadow: var(--shadow-hover); border-color: var(--border); }
.option-card.dark-featured { background: var(--navy); color: var(--white); }
.option-card.dark-featured h4 { color: var(--white); }
.opt-icon { margin-bottom: 24px; }
@keyframes radarPulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(84, 180, 133, 0.6); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 12px rgba(84, 180, 133, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(84, 180, 133, 0); }
}

@keyframes indicatorHop {
  0%, 100% { transform: translate(-50%, 0); background: var(--border); }
  50% { transform: translate(-50%, -5px); background: var(--amber); box-shadow: 0 4px 10px rgba(217, 119, 6, 0.4); }
}

@keyframes radarPulseAmber {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.6); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 12px rgba(217, 119, 6, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(217, 119, 6, 0); }
}

.pista-dot { display: inline-block; width: 12px; height: 12px; border-radius: 50%; background: var(--pista-primary); animation: radarPulse 2.5s infinite ease-in-out; }
.amber-dot { display: inline-block; width: 12px; height: 12px; border-radius: 50%; background: var(--amber); animation: radarPulseAmber 2.5s infinite ease-in-out; }
.option-card h4 { font-family: var(--font-sans); font-size: 16px; font-weight: 600; margin-bottom: 12px; transition: color 0.3s; }
.option-card p { font-size: 13px; color: var(--text-muted); }
.option-card.dark-featured p { color: rgba(255,255,255,0.7); }
.indicator { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); width: 6px; height: 6px; border-radius: 50%; background: var(--border); transition: all 0.3s; animation: indicatorHop 3s infinite ease-in-out; }
.option-card:hover .indicator, .option-card:active .indicator { background: var(--amber); }

.value-card { transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); position: relative; }
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: var(--pista-primary); }
.value-card .icon-wrap { transition: all 0.4s ease; }
.value-card:hover .icon-wrap { transform: scale(1.15) rotate(6deg); background: var(--pista-primary) !important; color: var(--white); }

@media (max-width: 992px) {
  .option-card, .value-card, .dark-card { transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, border-color 0.25s ease; }
  .option-card:active { transform: scale(0.96) translateY(-2px); border-color: var(--pista-primary); box-shadow: 0 12px 25px rgba(84, 180, 133, 0.15); }
  .value-card:active, .dark-card:active { transform: scale(0.97); border-color: var(--amber); box-shadow: 0 10px 20px rgba(0,0,0,0.08); }
}

/* ==========================================================================
   Section 12: CTA
   ========================================================================== */
.cta-section { overflow: hidden; padding: 120px 0; }
.ghost-triangle { position: absolute; width: 200px; height: 200px; border-left: 100px solid transparent; border-right: 100px solid transparent; border-bottom: 173px solid; }
.ghost-triangle.top-left { top: -50px; left: -50px; border-bottom-color: var(--pista-primary); opacity: 0.04; transform: rotate(-15deg); }
.ghost-triangle.bottom-right { bottom: -50px; right: -50px; border-bottom-color: var(--amber); opacity: 0.05; transform: rotate(15deg) scale(1.5); }

/* ==========================================================================
   Section 13: Footer
   ========================================================================== */
.footer { padding: 80px 0 32px 0; color: rgba(255,255,255,0.7); }
.footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.social-icon { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.2); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; color: var(--white); transition: all 0.3s; }
.social-icon:hover { background: var(--amber); border-color: var(--amber); }
.footer-links li { margin-bottom: 12px; font-size: 14px; }
.footer-links a:hover { color: var(--amber); padding-left: 4px; }
.contact-box { padding-left: 16px; border-left: 2px solid var(--pista-primary); font-size: 14px; }
.contact-box p { margin-bottom: 12px; color: rgba(255,255,255,0.7); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 32px; font-size: 13px; }
.legal-links a:hover { color: var(--white); }

/* ==========================================================================
   Responsive Design / Mobile Optimization
   ========================================================================== */

/* Extracted from template files */
.page-hero {
  height: auto !important;
  min-height: 45vh !important;
  padding: 180px 0 100px 0;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: linear-gradient(rgba(10, 25, 47, 0.75), rgba(10, 25, 47, 0.95)), url('images/hero.png') !important;
  background-size: cover !important;
  background-position: center !important;
  color: var(--white);
  display: flex;
}

.page-hero-title {
  font-family: var(--font-serif);
  font-size: 64px;
  margin-bottom: 16px;
  color: var(--white);
}

.section-title {
  font-size: 40px;
  line-height: 1.2;
}

.cta-title {
  font-size: 56px;
  margin-bottom: 16px;
  line-height: 1.2;
}

/* Mobile Menu Base State */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1000;
  background: none;
  border: none;
  padding: 8px;
  -webkit-appearance: none;
  appearance: none;
}

.mobile-menu-toggle span {
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--navy);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Tablet and Mobile Screens */
@media (max-width: 992px) {
  /* Navigation */
  .nav-menu-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 100px 40px;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 999;
  }

  .nav-menu-wrapper.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 40px;
  }

  .nav-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Typography Scaling */
  h1 { font-size: 42px; line-height: 1.25; margin-bottom: 14px; }
  h2 { font-size: 32px; line-height: 1.3; }
  h3 { font-size: 24px; line-height: 1.3; }
  
  .page-hero-title { font-size: 42px; line-height: 1.25; }
  .section-title { font-size: 30px; line-height: 1.3; }
  .cta-title { font-size: 36px; line-height: 1.35; }

  /* Grid Collapsing */
  .services-grid, 
  .stats-bar-grid, 
  .options-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .strengths-grid {
    grid-template-columns: 1fr;
  }
  .strength-col {
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .strength-col:last-child {
    border-bottom: none !important;
  }
  
  .projects-grid {
    display: flex;
    flex-direction: column;
  }
  
  .project-card, .project-card.large, .project-card.tall, .project-card.standard {
    height: 300px !important;
  }
  .project-btn {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
  .project-card:active img {
    transform: scale(1.08);
  }
  .project-card:active .project-overlay {
    background: rgba(30,32,48,0.85);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  /* Padding and Wrapping Adjustments */
  .hero-left, .hero-right {
    width: 100%;
    padding: 40px 24px;
  }
  
  .hero {
    flex-direction: column;
  }

  .page-hero { padding: 120px 0 60px 0; }
  
  .cta-row.flex,
  .footer-bottom.flex {
    flex-direction: column;
    align-items: flex-start;
    width: 100% !important;
  }

  .about .container.flex,
  .contact .container.flex,
  .process-steps.flex,
  .values-grid.flex {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 40px !important;
  }

  .cta-row.flex button, .cta-row.flex a {
    width: 100%;
    text-align: center;
  }
  
  .stats-row.flex {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 16px !important;
  }
  
  .stats-row .stat-card {
    flex: 0 0 calc(50% - 8px) !important;
    max-width: calc(50% - 8px) !important;
    width: calc(50% - 8px) !important;
    padding: 24px 16px !important;
    min-width: 140px !important;
    box-sizing: border-box !important;
  }
  
  .stats-row .stat-num {
    font-size: 32px !important;
    margin-bottom: 6px !important;
  }
  
  .stats-row .stat-label {
    font-size: 13px !important;
    font-family: var(--font-body) !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    line-height: 1.3 !important;
    display: block !important;
    white-space: normal !important;
    word-wrap: normal !important;
  }

  .contact-info.flex {
    flex-direction: column;
    gap: 16px !important;
  }
  .contact-info.flex span { text-align: center; }
  .contact-info.flex span:nth-child(even) { display: none; }

  .about-left, .about-right, .step,
  .contact-left, .contact-right {
    width: 100% !important;
  }

  .contact form .flex {
    flex-direction: column !important;
  }
  
  .contact form input {
    width: 100% !important;
  }

  .process-line {
    display: none;
  }

  .services > .container > .flex,
  .projects .container > .flex,
  .filter-tabs.flex {
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .quick-stats, .home-stats {
    padding-bottom: 80px !important;
  }
  .quick-stats .container.flex {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 32px 0 !important;
  }
  
  .stat-item {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    width: 50% !important;
    padding: 20px 10px !important;
    box-sizing: border-box !important;
    border-bottom: 1px solid var(--border);
  }
  
  .stat-item .stat-num {
    font-size: 32px !important;
    margin-bottom: 6px !important;
  }
  
  .stat-item .stat-label {
    font-size: 13px !important;
    line-height: 1.3 !important;
    word-wrap: break-word !important;
  }
  
  .stat-item:nth-child(odd) {
    border-right: 1px solid var(--border) !important;
  }
  
  .stat-item:nth-child(even) {
    border-right: none !important;
  }
  
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-bottom: none;
    padding-bottom: 10px !important;
  }
  
  .footer-bottom.flex {
    align-items: center;
    gap: 24px;
    text-align: center;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100% !important;
  }
}

/* Small Mobile Screens */
@media (max-width: 576px) {
  h1 { font-size: 40px; }
  h2 { font-size: 30px; }
  .page-hero-title { font-size: 40px; }
  .cta-title { font-size: 32px; }

  .services-grid, 
  .strengths-grid, 
  .stats-bar-grid, 
  .options-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }
  
  .hero-left, .hero-right {
    padding: 20px 12px;
  }
}

/* ==========================================================================
   Global Animations
   ========================================================================== */
.animated-logo {
    animation: logoHover 4s ease-in-out infinite;
    transform-origin: center;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05));
    transition: filter 0.3s ease;
}
.animated-logo:hover {
    filter: drop-shadow(0 8px 12px rgba(232, 146, 42, 0.4));
}
@keyframes logoHover {
    0% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
    100% { transform: translateY(0); }
}

/* ==========================================================================
   Preloader Splash Screen
   ========================================================================== */
body.preloader-active { overflow: hidden; }

.preloader {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.15) 100%);
    background-size: 200% 200%;
    animation: glassShimmer 3s ease-in-out infinite;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
.preloader.fade-out {
    transform: translateY(-100%);
}

.preloader-logo img {
    height: 100px;
    width: auto;
    animation: logoSettle 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes logoSettle {
    0% { opacity: 0; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes glassShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ==========================================================================
   Scroll Reveal Utility Classes
   ========================================================================== */
.reveal-on-scroll { opacity: 0; transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-scale { transform: scale(0.9); }
.reveal-bounce { transform: translateY(50px) scale(0.9); transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); }

.reveal-on-scroll.is-revealed { opacity: 1; transform: translate(0) scale(1); }
.reveal-on-scroll.reveal-bounce.is-revealed { opacity: 1; transform: translate(0) scale(1); }

.reveal-stagger-1 { transition-delay: 0.05s; }
.reveal-stagger-2 { transition-delay: 0.1s; }
.reveal-stagger-3 { transition-delay: 0.15s; }
.reveal-stagger-4 { transition-delay: 0.2s; }
.reveal-stagger-5 { transition-delay: 0.25s; }
.reveal-stagger-6 { transition-delay: 0.3s; }
.reveal-stagger-7 { transition-delay: 0.35s; }
.reveal-stagger-8 { transition-delay: 0.4s; }

/* Floating Animated WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  animation: whatsappFloat 3.5s infinite ease-in-out;
  text-decoration: none;
}
.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.65);
}
.whatsapp-ping {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 3px solid #25d366;
  opacity: 0;
  animation: whatsappRadar 2.2s infinite ease-out;
}
@keyframes whatsappFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes whatsappRadar {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

@media (max-width: 768px) {
  .floating-whatsapp {
    width: 48px !important;
    height: 48px !important;
    bottom: 16px !important;
    right: 16px !important;
  }
  .bird-sound-btn {
    bottom: 16px !important;
    left: 16px !important;
    padding: 6px 10px !important;
    font-size: 11px !important;
  }
}

/* ========================================================
   PROJECT GALLERY POPUP LIGHTBOX MODAL
   ======================================================== */
.project-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.project-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.modal-content-box {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 960px;
  background: #ffffff;
  border-radius: var(--radius-card);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.65);
  overflow: hidden;
  transform: scale(0.9) translateY(24px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.project-modal.active .modal-content-box {
  transform: scale(1) translateY(0);
}
.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 25;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.2);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.modal-close-btn:hover {
  background: var(--amber);
  color: var(--navy);
  transform: rotate(90deg) scale(1.1);
}
.modal-header {
  padding: 24px 32px 18px 32px;
  border-bottom: 1px solid var(--border);
  background: #f8fafc;
  text-align: left;
}
.modal-header h3 {
  font-family: var(--font-serif);
  font-size: 30px;
  color: var(--navy);
  margin: 0 0 4px 0;
}
.modal-header span {
  font-size: 13px;
  color: var(--amber);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.carousel-container {
  position: relative;
  width: 100%;
  height: 520px;
  background: #0f172a;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.carousel-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  border: none;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  transition: all 0.25s ease;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-nav-btn:hover {
  background: var(--amber);
  color: var(--navy);
  transform: translateY(-50%) scale(1.15);
}
.prev-btn { left: 20px; }
.next-btn { right: 20px; }
.carousel-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 15;
  background: rgba(15, 23, 42, 0.5);
  padding: 8px 16px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}
.carousel-dot.active {
  width: 28px;
  border-radius: 6px;
  background: var(--amber);
  box-shadow: 0 0 10px var(--amber);
}
.carousel-controls {
  padding: 18px 32px;
  background: #f8fafc;
  border-top: 1px solid var(--border);
}

/* Luxury Toggle Switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 26px;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #cbd5e1;
  transition: .3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 26px;
}
.toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}
input:checked + .toggle-slider { background-color: var(--amber); }
input:checked + .toggle-slider:before { transform: translateX(20px); }

@media (max-width: 768px) {
  .carousel-container { height: 320px; }
  .modal-header { padding: 18px 20px 14px 20px; }
  .modal-header h3 { font-size: 22px; }
  .carousel-controls { padding: 14px 20px; flex-direction: column; gap: 12px; }
  .carousel-nav-btn { width: 42px; height: 42px; font-size: 18px; }
  .prev-btn { left: 10px; }
  .next-btn { right: 10px; }
}

/* ==========================================================================
   Ultra-Wide & Large Displays (32" Monitors / 2K & 4K Screens)
   ========================================================================== */
@media screen and (min-width: 1600px) {
  :root {
    --container-width: min(90vw, 1820px);
  }
  .hero-content {
    max-width: 860px;
  }
  .hero-content h1 {
    font-size: 76px;
  }
  .hero-content p {
    max-width: 660px;
    font-size: 22px;
  }
  .project-card.large, .project-card.tall {
    height: 440px;
  }
  .project-card.standard {
    height: 330px;
  }
  .service-thumb {
    height: 200px;
  }
  .section-title {
    font-size: 50px;
  }
}
