/* ==================== IMPORTS & RESET ==================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #18445C;
  --navy-dark: #0f2d3d;
  --navy-light: #1e5575;
  --orange: #D15A3A;
  --orange-light: #e8734f;
  --orange-dark: #b84a2e;
  --cream: #F7F1E2;
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --shadow-premium: 0 25px 60px rgba(0, 0, 0, 0.15);
  --shadow-card: 0 15px 40px rgba(0, 0, 0, 0.1);
  --shadow-glow-orange: 0 0 40px rgba(209, 90, 58, 0.3);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  color: #333;
  background: var(--white);
  overflow-x: hidden;
  cursor: default;
}

/* ==================== LOADING SCREEN ==================== */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-logo {
  text-align: center;
}

.loading-logo img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  animation: loadingPulse 1.5s ease-in-out infinite;
  border-radius: 20px;
}

.loading-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  margin-top: 30px;
  overflow: hidden;
}

.loading-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 3px;
  animation: loadingProgress 2s ease-in-out forwards;
}

@keyframes loadingPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.05); opacity: 1; }
}

@keyframes loadingProgress {
  0% { width: 0; }
  100% { width: 100%; }
}

/* ==================== CUSTOM CURSOR ==================== */
.custom-cursor {
  width: 20px;
  height: 20px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.15s ease, background 0.15s ease;
  mix-blend-mode: difference;
}

.custom-cursor.hover {
  transform: scale(2);
  background: rgba(209, 90, 58, 0.2);
}

.cursor-dot {
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.08s ease;
}

/* ==================== SCROLL PROGRESS ==================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light), var(--orange));
  z-index: 10001;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(209, 90, 58, 0.5);
}

/* ==================== BACK TO TOP ==================== */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border: none;
  border-radius: 15px;
  color: white;
  font-size: 20px;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(209, 90, 58, 0.3);
}

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

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(209, 90, 58, 0.5);
}

/* ==================== FLOATING SHAPES ==================== */
.floating-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.03;
  animation: floatShape 20s infinite ease-in-out;
}

.floating-shape:nth-child(1) {
  width: 300px; height: 300px;
  background: var(--orange);
  top: 10%; left: -5%;
  animation-duration: 25s;
}

.floating-shape:nth-child(2) {
  width: 200px; height: 200px;
  background: var(--navy);
  top: 60%; right: -3%;
  animation-delay: -5s; animation-duration: 20s;
}

.floating-shape:nth-child(3) {
  width: 400px; height: 400px;
  background: var(--orange);
  bottom: -10%; left: 40%;
  animation-delay: -10s; animation-duration: 30s;
}

.floating-shape:nth-child(4) {
  width: 150px; height: 150px;
  background: var(--navy);
  top: 30%; right: 20%;
  animation-delay: -7s;
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(30px, -30px) rotate(90deg); }
  50% { transform: translate(-20px, 20px) rotate(180deg); }
  75% { transform: translate(20px, 10px) rotate(270deg); }
}

/* ==================== TOP BAR ==================== */
.top-bar {
  background: var(--navy-dark);
  padding: 10px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  position: relative;
  z-index: 1001;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.top-bar-item:hover { color: var(--orange); }

.top-bar-item a {
  color: inherit;
  text-decoration: none;
}

/* ==================== CONTAINER ==================== */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ==================== HEADER ==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  transition: all 0.5s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  max-width: 1400px;
  margin: 0 auto;
  transition: all 0.5s ease;
}

.header.transparent { background: transparent; }

.header.scrolled {
  background: rgba(24, 68, 92, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.header-logo img {
  height: 55px;
  object-fit: contain;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.header-logo img:hover { transform: scale(1.05); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 35px;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a:hover,
.nav-links a.active { color: var(--orange-light); }

.btn-quote {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white;
  padding: 12px 28px;
  border: none;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 5px 20px rgba(209, 90, 58, 0.3);
}

.btn-quote:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-orange);
}

.btn-quote .ripple,
.btn-primary .ripple,
.btn-secondary .ripple,
.cta-btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: scale(0);
  animation: rippleEffect 0.6s linear;
  pointer-events: none;
}

@keyframes rippleEffect {
  to { transform: scale(4); opacity: 0; }
}

/* ==================== MOBILE MENU ==================== */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 10002;
  background: none;
  border: none;
  padding: 5px;
}

.mobile-toggle span {
  width: 28px;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
  border-radius: 2px;
  display: block;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) { opacity: 0; }

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(15, 45, 61, 0.98);
  backdrop-filter: blur(20px);
  z-index: 10001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  transition: right 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.mobile-menu.active { right: 0; }

.mobile-menu a {
  color: white;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.mobile-menu a:hover { color: var(--orange); }

/* ==================== HERO SECTION ==================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(15, 45, 61, 0.92) 0%, rgba(24, 68, 92, 0.8) 50%, rgba(15, 45, 61, 0.9) 100%);
  z-index: 1;
}

.hero-gradient-glow {
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(209, 90, 58, 0.15), transparent 70%);
  z-index: 1;
  animation: glowPulse 5s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.hero-particles {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 2;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 750px;
  padding-left: 30px;
}

.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeUp 1s ease forwards 0.5s;
}

.hero-content h1 span {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeUp 1s ease forwards 0.7s;
}

.hero-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 35px;
  max-width: 600px;
  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeUp 1s ease forwards 0.9s;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeUp 1s ease forwards 1.1s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white;
  padding: 16px 36px;
  border: none;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(209, 90, 58, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(209, 90, 58, 0.5);
}

.btn-secondary {
  background: transparent;
  color: white;
  padding: 16px 36px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--orange);
  transform: translateY(-3px);
}

.btn-outline-white {
  background: transparent;
  color: white;
  padding: 16px 36px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-block;
}

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

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ==================== PAGE HERO (inner pages) ==================== */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.page-hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

.page-hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(15, 45, 61, 0.93), rgba(24, 68, 92, 0.88));
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.8s ease forwards 0.3s;
}

.page-hero-content h1 span {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s ease forwards 0.5s;
}

.page-hero-breadcrumb a {
  color: var(--orange);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-hero-breadcrumb a:hover { color: var(--orange-light); }

/* ==================== MARQUEE ==================== */
.marquee-section {
  background: var(--navy-dark);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-item {
  color: rgba(255,255,255,0.5);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0 30px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 30px;
}

.marquee-item::after {
  content: '•';
  color: var(--orange);
  font-size: 20px;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==================== STATS SECTION ==================== */
.stats-section {
  padding: 100px 0;
  background: var(--light-gray);
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-card {
  background: var(--white);
  border-radius: 24px;
  padding: 45px 30px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.stat-card:hover::before { transform: scaleX(1); }

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 15px;
  color: #777;
  font-weight: 500;
}

/* ==================== SECTION STYLES ==================== */
.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-tag {
  display: inline-block;
  background: rgba(209, 90, 58, 0.1);
  color: var(--orange);
  padding: 8px 20px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 17px;
  color: #777;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ==================== SERVICES SECTION ==================== */
.services-section {
  padding: 120px 0;
  background: var(--white);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.service-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid rgba(0,0,0,0.06);
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, transparent, var(--orange), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card:hover::before { opacity: 1; }

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 30px;
  background: linear-gradient(135deg, rgba(209, 90, 58, 0.1), rgba(209, 90, 58, 0.05));
  color: var(--orange);
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(209, 90, 58, 0.3);
}

.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
}

/* Service Detail Card (Services Page) */
.service-detail-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid rgba(0,0,0,0.06);
  cursor: pointer;
}

.service-detail-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.service-detail-img {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.service-detail-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.service-detail-img .service-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 45, 61, 0.7));
}

.service-detail-body {
  padding: 30px;
}

.service-detail-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-detail-body p {
  font-size: 15px;
  color: #777;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-detail-features {
  list-style: none;
  margin-bottom: 20px;
}

.service-detail-features li {
  padding: 6px 0;
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-detail-features li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
}

/* ==================== LANDLORD SECTION ==================== */
.landlord-section {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.landlord-glow-1 {
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(209, 90, 58, 0.15), transparent 70%);
  animation: glowPulse 6s ease-in-out infinite;
}

.landlord-glow-2 {
  position: absolute;
  bottom: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(209, 90, 58, 0.1), transparent 70%);
  animation: glowPulse 6s ease-in-out infinite 3s;
}

.landlord-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.landlord-content .section-tag {
  background: rgba(209, 90, 58, 0.2);
}

.landlord-content .section-title { color: var(--white); }

.landlord-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ==================== WHY CHOOSE US ==================== */
.why-section {
  padding: 120px 0;
  background: var(--light-gray);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-image { position: relative; }

.why-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.why-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 8s ease;
}

.why-image-wrapper:hover img { transform: scale(1.05); }

.why-image-glass {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 200px;
  padding: 25px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  z-index: 2;
}

.why-image-glass .glass-stat {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--orange);
}

.why-image-glass .glass-text {
  font-size: 13px;
  color: var(--navy);
  font-weight: 600;
  margin-top: 5px;
}

.why-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 30px;
}

.why-list {
  list-style: none;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 0;
  font-size: 16px;
  color: #555;
  font-weight: 500;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease;
}

.why-list li.visible {
  opacity: 1;
  transform: translateX(0);
}

.why-check {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  font-weight: 700;
}

/* ==================== PROJECTS GALLERY ==================== */
.gallery-section {
  padding: 120px 0;
  background: var(--white);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.gallery-filter-btn {
  padding: 10px 24px;
  border: 2px solid rgba(24, 68, 92, 0.15);
  border-radius: 50px;
  background: transparent;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.4s ease;
  letter-spacing: 0.5px;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-color: var(--orange);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(209, 90, 58, 0.3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 280px;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-item.tall { grid-row: span 2; height: 580px; }
.gallery-item.wide { grid-column: span 2; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.gallery-item:hover img { transform: scale(1.1); }

.gallery-item:hover { box-shadow: 0 20px 50px rgba(0,0,0,0.2); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 45, 61, 0.9));
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
}

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

.gallery-item-overlay h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 5px;
}

.gallery-item-overlay p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.gallery-item-overlay .gallery-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  transition: transform 0.4s ease;
  border: 1px solid rgba(255,255,255,0.2);
}

.gallery-item:hover .gallery-item-overlay .gallery-icon {
  transform: translate(-50%, -50%) scale(1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 100001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  transform: scale(0.9);
  transition: transform 0.4s ease;
}

.lightbox.active img { transform: scale(1); }

.lightbox-close {
  position: absolute;
  top: 30px; right: 30px;
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: white;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.lightbox-nav:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

.lightbox-caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  text-align: center;
  background: rgba(0,0,0,0.5);
  padding: 10px 25px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

/* ==================== BEFORE AFTER SHOWCASE ==================== */
.before-after-section {
  padding: 120px 0;
  background: var(--white);
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ba-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  height: 350px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  transition: all 0.5s ease;
  cursor: pointer;
  perspective: 1000px;
}

.ba-card:hover {
  transform: translateY(-10px) rotateX(2deg) rotateY(2deg);
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.ba-card-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
  color: white;
}

.ba-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}

.ba-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.ba-card p {
  font-size: 14px;
  opacity: 0.7;
  line-height: 1.6;
}

.ba-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(209,90,58,0.5), transparent, rgba(209,90,58,0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.ba-card:hover::after { opacity: 1; }

/* ==================== PROCESS SECTION ==================== */
.process-section {
  padding: 120px 0;
  background: var(--light-gray);
}

.process-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  width: 3px;
  height: 100%;
  background: rgba(24, 68, 92, 0.1);
  border-radius: 3px;
}

.process-line-fill {
  position: absolute;
  left: 30px;
  top: 0;
  width: 3px;
  height: 0%;
  background: linear-gradient(180deg, var(--orange), var(--orange-light));
  border-radius: 3px;
  transition: height 0.5s ease;
  z-index: 1;
}

.process-step {
  display: flex;
  gap: 30px;
  padding: 30px 0;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.process-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.process-dot {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid rgba(24, 68, 92, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--navy);
  position: relative;
  z-index: 2;
  transition: all 0.5s ease;
}

.process-step.visible .process-dot {
  border-color: var(--orange);
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white;
  box-shadow: 0 5px 20px rgba(209, 90, 58, 0.3);
}

.process-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.process-content p {
  font-size: 15px;
  color: #777;
  line-height: 1.6;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-section {
  padding: 120px 0;
  background: var(--cream);
  overflow: hidden;
}

.testimonials-carousel { position: relative; overflow: hidden; }

.testimonials-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.testimonial-card {
  min-width: 100%;
  padding: 0 30px;
}

.testimonial-inner {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 50px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  transition: transform 0.5s ease;
}

.testimonial-inner:hover { transform: translateY(-5px); }

.testimonial-stars {
  color: #FFB800;
  font-size: 22px;
  margin-bottom: 25px;
  letter-spacing: 3px;
}

.testimonial-text {
  font-size: 20px;
  color: var(--navy);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 25px;
}

.testimonial-author {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--orange);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  background: var(--orange);
  transform: scale(1.2);
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-glow {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(209, 90, 58, 0.2), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: ctaGlow 4s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
}

.cta-particles {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.3;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-btn {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white;
  padding: 20px 50px;
  border: none;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(209, 90, 58, 0.4);
  animation: ctaBtnPulse 3s ease-in-out infinite;
}

@keyframes ctaBtnPulse {
  0%, 100% { box-shadow: 0 10px 40px rgba(209, 90, 58, 0.4); }
  50% { box-shadow: 0 10px 60px rgba(209, 90, 58, 0.7); }
}

.cta-btn:hover {
  transform: translateY(-5px) scale(1.02);
}

/* ==================== ABOUT PAGE SECTIONS ==================== */
.about-story-section {
  padding: 120px 0;
  background: var(--white);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-story-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 25px;
  line-height: 1.3;
}

.about-story-text p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-story-image {
  position: relative;
}

.about-story-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-premium);
}

.about-values {
  padding: 120px 0;
  background: var(--light-gray);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  background: var(--white);
  border-radius: 24px;
  padding: 45px 30px;
  text-align: center;
  transition: all 0.5s ease;
  border: 1px solid rgba(0,0,0,0.04);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.value-icon {
  width: 75px;
  height: 75px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(209, 90, 58, 0.1), rgba(209, 90, 58, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
  transition: all 0.4s ease;
}

.value-card:hover .value-icon {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(209, 90, 58, 0.3);
}

.value-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14px;
  color: #777;
  line-height: 1.7;
}

/* Team Section */
.team-section {
  padding: 120px 0;
  background: var(--white);
}

.team-image-container {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.team-image-container img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 8s ease;
}

.team-image-container:hover img { transform: scale(1.03); }

.team-glass-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  background: linear-gradient(180deg, transparent, rgba(15, 45, 61, 0.9));
}

.team-glass-overlay h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.team-glass-overlay p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* ==================== CONTACT PAGE ==================== */
.contact-section {
  padding: 120px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.3;
}

.contact-info > p {
  font-size: 16px;
  color: #777;
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding: 25px;
  background: var(--light-gray);
  border-radius: 20px;
  transition: all 0.4s ease;
}

.contact-detail:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.contact-detail-icon {
  width: 55px;
  height: 55px;
  min-width: 55px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
}

.contact-detail-text h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}

.contact-detail-text p,
.contact-detail-text a {
  font-size: 15px;
  color: #777;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-detail-text a:hover { color: var(--orange); }

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.04);
}

.contact-form-wrapper h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid rgba(24, 68, 92, 0.1);
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--navy);
  background: var(--light-gray);
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(209, 90, 58, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white;
  border: none;
  border-radius: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(209, 90, 58, 0.3);
  margin-top: 10px;
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(209, 90, 58, 0.5);
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--navy-dark);
  padding: 80px 0 30px;
  color: rgba(255,255,255,0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand img {
  height: 60px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
}

.footer h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 3px;
  background: var(--orange);
  border-radius: 3px;
}

.footer-links {
  list-style: none;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--orange);
  transform: translateX(5px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 14px;
}

.footer-contact-icon {
  color: var(--orange);
  font-size: 16px;
  margin-top: 2px;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 30px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ==================== REVEAL ANIMATIONS ==================== */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }
.reveal-delay-8 { transition-delay: 0.8s; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 50px; }
  .ba-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-story-grid { grid-template-columns: 1fr; gap: 50px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item.tall { height: 400px; }
}

@media (max-width: 768px) {
  .custom-cursor, .cursor-dot { display: none !important; }

  .top-bar .container {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }

  .top-bar-left, .top-bar-right {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .header .btn-quote { display: none; }

  .hero-content { text-align: center; padding: 0 20px; }
  .hero-buttons { justify-content: center; }

  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .ba-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .values-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; height: 250px; }
  .gallery-item.wide { grid-column: span 1; }

  .why-image-glass {
    bottom: 10px; right: 10px;
    width: 150px; padding: 15px;
  }

  .testimonial-inner { padding: 30px 20px; }
  .testimonial-text { font-size: 17px; }

  .container { padding: 0 20px; }

  .back-to-top {
    bottom: 20px; right: 20px;
    width: 45px; height: 45px;
  }

  .form-row { grid-template-columns: 1fr; }

  .contact-form-wrapper { padding: 30px 20px; }

  .page-hero { min-height: 350px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-card { padding: 30px 15px; }
  .stat-number { font-size: 36px; }
  .gallery-grid { grid-template-columns: 1fr; }
}