:root {
  --gold: #C8A15A;
  --gold-light: #D4B778;
  --gold-dark: #B8924A;
  --gold-glow: rgba(200, 161, 90, 0.3);
  --dark: #1a1a2e;
  --dark-2: #2d2d44;
  --dark-3: #3d3d5c;
  --text: #2c2c2c;
  --text-light: #5a5a5a;
  --text-lighter: #8a8a8a;
  --white: #ffffff;
  --off-white: #fafafa;
  --light-bg: #f8f7f4;
  --warm-gray: #f5f3ef;
  --border: rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 8px 30px rgba(200, 161, 90, 0.25);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 40px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.25s ease;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
button {
  border: none;
  outline: none;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
}
ul, ol {
  list-style: none;
}
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}
.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 80px);
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label::before,
.section-label::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}
.text-accent {
  color: var(--gold);
}
.section-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  z-index: 10000;
  width: 0%;
  transition: width 0.1s linear;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  white-space: nowrap;
}
.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
.btn:active::after {
  width: 300px;
  height: 300px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(200, 161, 90, 0.4);
}
.btn-secondary {
  background: var(--white);
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-secondary:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--gold);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  background: #20BD5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}
.btn-full {
  width: 100%;
}
.btn-lg {
  padding: 18px 42px;
  font-size: 1.05rem;
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}
.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.logo-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  transition: var(--transition);
}
.navbar.scrolled .logo-name {
  color: var(--text);
}
.logo-tagline {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
  padding: 4px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
  border-radius: 2px;
}
.nav-link:hover {
  color: var(--gold);
}
.nav-link:hover::after {
  width: 100%;
}
.navbar.scrolled .nav-link {
  color: var(--text-light);
}
.navbar.scrolled .nav-link:hover {
  color: var(--gold);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: var(--shadow-gold);
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 161, 90, 0.4);
}
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
  z-index: 1001;
}
.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .mobile-toggle span {
  background: var(--text);
}
.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--white);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  z-index: 999;
  padding: 100px 40px 40px;
  transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
}
.mobile-nav.active {
  right: 0;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-nav-links .nav-link {
  display: block;
  padding: 16px 0;
  font-size: 1.1rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-nav-links .nav-link::after {
  display: none;
}
.mobile-nav-links .nav-link:hover {
  color: var(--gold);
}
.mobile-contact-btn {
  display: block;
  width: 100%;
  margin-top: 30px;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-gold);
}
.mobile-contact-btn:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.92) 0%,
    rgba(26, 26, 46, 0.75) 50%,
    rgba(26, 26, 46, 0.6) 100%
  );
  z-index: 1;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 20% 50%, rgba(200, 161, 90, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(200, 161, 90, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(200, 161, 90, 0.06) 0%, transparent 45%);
}
.hero-floating-elements {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.floating-element {
  position: absolute;
  opacity: 0.15;
  animation: float 8s ease-in-out infinite;
}
.floating-element:nth-child(1) {
  top: 15%;
  left: 8%;
  width: 80px;
  height: 80px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-md);
  animation-delay: 0s;
}
.floating-element:nth-child(2) {
  top: 65%;
  right: 10%;
  width: 60px;
  height: 60px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  animation-delay: 2s;
}
.floating-element:nth-child(3) {
  bottom: 20%;
  left: 15%;
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: var(--radius-sm);
  transform: rotate(45deg);
  animation-delay: 4s;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 100px clamp(20px, 4vw, 60px) 0;
  max-width: 1280px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  margin-bottom: 28px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 800px;
}
.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 40px;
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 60px;
}
.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  min-width: 160px;
}
.trust-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 161, 90, 0.15);
  border-radius: var(--radius-sm);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.trust-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-number {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.trust-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  position: relative;
  display: flex;
  justify-content: center;
}
.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 3px;
  margin-top: 6px;
  animation: scrollAnim 2s ease-in-out infinite;
}
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity 1s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
  z-index: 1;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
}
.hero-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.92) 0%,
    rgba(26, 26, 46, 0.75) 50%,
    rgba(26, 26, 46, 0.6) 100%
  );
  z-index: 1;
}
.hero-slider-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 16px;
}
.slider-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: rgba(26, 26, 46, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  flex-shrink: 0;
}
.slider-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.1);
  box-shadow: var(--shadow-gold);
}
.slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.slider-dot:hover {
  background: rgba(200, 161, 90, 0.6);
}
.slider-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 5px;
}
.about {
  padding: clamp(80px, 10vw, 120px) 0;
  background: linear-gradient(135deg, #faf9f6 0%, #f3f0eb 100%);
  width: 130vw;
  margin-left: calc(-65vw + 50%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about-image-wrapper {
  position: relative;
}
.about-main-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.about-main-img:hover {
  transform: scale(1.03);
}
.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.5;
}
.about-experience-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  padding: 20px 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 2;
}
.about-experience-badge .number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.about-experience-badge .label {
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}
.about-timeline-mini {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.about-timeline-mini .dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.3;
}
.about-timeline-mini .dot.active {
  opacity: 1;
  background: var(--gold);
}
.about-content-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about-text {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}
.about-feature .icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(200, 161, 90, 0.12), rgba(200, 161, 90, 0.05));
  border-radius: 10px;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.9rem;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.stat-card {
  background: var(--light-bg);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border);
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.stat-card .stat-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(200, 161, 90, 0.12), rgba(200, 161, 90, 0.05));
  border-radius: 12px;
  margin: 0 auto 12px;
  font-size: 1.1rem;
  color: var(--gold);
}
.stat-card .stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
}
.stat-card .stat-suffix {
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 600;
}
.stat-card .stat-label {
  font-size: 0.78rem;
  color: var(--text-lighter);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.services {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--light-bg);
  width: 130vw;
  margin-left: calc(-65vw + 50%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
}
.service-card-inner {
  padding: 40px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.service-card:hover .service-glow {
  opacity: 1;
}
.service-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 161, 90, 0.06), rgba(200, 161, 90, 0.02));
  opacity: 0;
  transition: var(--transition);
  z-index: 0;
  border-radius: var(--radius-lg);
}
.service-icon-wrap {
  position: relative;
  width: 70px;
  height: 70px;
  margin-bottom: 24px;
}
.service-illustration {
  width: 100%;
  height: 100%;
}
.service-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.6rem;
  color: var(--gold);
}
.service-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.service-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  flex-grow: 1;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
}
.service-link .arrow {
  transition: transform 0.3s ease;
}
.service-link:hover .arrow {
  transform: translateX(6px);
}
.why-choose {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--white);
  width: 130vw;
  margin-left: calc(-65vw + 50%);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.feature-card {
  position: relative;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border);
}
.feature-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 161, 90, 0.04), rgba(200, 161, 90, 0.01));
  transition: var(--transition);
  z-index: 0;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200, 161, 90, 0.15);
}
.feature-card:hover .feature-card-bg {
  background: linear-gradient(135deg, rgba(200, 161, 90, 0.08), rgba(200, 161, 90, 0.03));
}
.feature-icon-large {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(200, 161, 90, 0.12), rgba(200, 161, 90, 0.05));
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.feature-card:hover .feature-icon-large {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.feature-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.process {
  padding: clamp(80px, 10vw, 120px) 0;
  background: linear-gradient(180deg, var(--dark) 0%, #0d0d1a 50%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
  width: 130vw;
  margin-left: calc(-65vw + 50%);
}
.process-bg-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.process-bg-line {
  position: absolute;
  background: linear-gradient(180deg, transparent, rgba(200, 161, 90, 0.03), transparent);
}
.process-bg-line-1 {
  left: 15%;
  width: 1px;
  height: 100%;
}
.process-bg-line-2 {
  left: 50%;
  width: 1px;
  height: 100%;
}
.process-bg-line-3 {
  left: 85%;
  width: 1px;
  height: 100%;
}
.process-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 161, 90, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 161, 90, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
}
.process .section-title {
  color: var(--white);
}
.process .section-subtitle {
  color: rgba(255, 255, 255, 0.55);
}
.premium-roadmap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 0 70px;
}
.roadmap-spine {
  position: absolute;
  top: 50px;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  z-index: 1;
}
.spine-track {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(200, 161, 90, 0.08) 5%,
    rgba(200, 161, 90, 0.08) 95%,
    transparent 100%
  );
}
.spine-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  transition: height 0.4s ease;
  box-shadow: 0 0 12px rgba(200, 161, 90, 0.4);
}
.rm-step {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.rm-step.visible {
  opacity: 1;
  transform: translateY(0);
}
.rm-step:nth-child(2) { transition-delay: 0.1s; }
.rm-step:nth-child(3) { transition-delay: 0.2s; }
.rm-step:nth-child(4) { transition-delay: 0.3s; }
.rm-step:nth-child(5) { transition-delay: 0.4s; }
.rm-step:nth-child(6) { transition-delay: 0.5s; }
.rm-step:nth-child(odd) {
  flex-direction: row;
  padding-right: calc(50% + 50px);
}
.rm-step:nth-child(even) {
  flex-direction: row-reverse;
  padding-left: calc(50% + 50px);
}
.rm-step-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.marker-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(200, 161, 90, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  position: relative;
  transition: var(--transition);
}
.marker-ring-inner {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.marker-number {
  position: absolute;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  z-index: 2;
}
.marker-pulse {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(200, 161, 90, 0.2);
  animation: markerPulse 3s ease-in-out infinite;
}
@keyframes markerPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.5); opacity: 0; }
}
.rm-step:hover .marker-ring {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(200, 161, 90, 0.3);
}
.rm-step:hover .marker-ring-inner {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(200, 161, 90, 0.4);
}
.rm-step-card {
  flex: 1;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.rm-card-border {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(200, 161, 90, 0.2), rgba(200, 161, 90, 0.05), rgba(200, 161, 90, 0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.rm-step:hover .rm-card-border {
  opacity: 1;
}
.rm-card-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(200, 161, 90, 0.03), transparent);
  transition: left 0.8s ease;
  pointer-events: none;
}
.rm-step:hover .rm-card-shine {
  left: 100%;
}
.rm-card-inner {
  padding: 32px;
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}
.rm-step:hover .rm-card-inner {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(200, 161, 90, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}
.rm-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.rm-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(200, 161, 90, 0.12), rgba(200, 161, 90, 0.04));
  border: 1px solid rgba(200, 161, 90, 0.15);
  border-radius: 14px;
  color: var(--gold);
  font-size: 1.2rem;
  transition: var(--transition);
}
.rm-step:hover .rm-card-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-color: transparent;
  transform: scale(1.05) rotate(-3deg);
}
.rm-card-badge {
  padding: 6px 16px;
  background: rgba(200, 161, 90, 0.08);
  border: 1px solid rgba(200, 161, 90, 0.15);
  border-radius: 60px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
}
.rm-card-inner h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.rm-card-inner p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  margin-bottom: 20px;
}
.rm-card-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rm-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rm-feature i {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 161, 90, 0.12);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.55rem;
  flex-shrink: 0;
}
.rm-feature span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}
.rm-step:hover .rm-feature i {
  background: rgba(200, 161, 90, 0.2);
}
.rm-finish {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
}
.rm-finish.visible {
  opacity: 1;
  transform: translateY(0);
}
.finish-diamond {
  position: relative;
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.finish-diamond-inner {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 40px rgba(200, 161, 90, 0.4);
}
.finish-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200, 161, 90, 0.15);
  animation: finishRingPulse 3s ease-in-out infinite;
}
.finish-ring-1 {
  width: 88px;
  height: 88px;
  animation-delay: 0s;
}
.finish-ring-2 {
  width: 110px;
  height: 110px;
  animation-delay: 0.5s;
}
.finish-ring-3 {
  width: 130px;
  height: 130px;
  animation-delay: 1s;
}
@keyframes finishRingPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0; }
}
.finish-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  text-align: center;
}
.projects {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--light-bg);
  width: 130vw;
  margin-left: calc(-65vw + 50%);
}
.projects .section-title {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  gap: 24px;
}
.projects-grid .project-card:nth-child(1) {
  grid-column: span 2;
}
.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.project-card:hover .project-image img {
  transform: scale(1.08);
}
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(10, 10, 25, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 1;
  transform: translateY(0);
  transition: var(--transition);
}
.project-card:hover .project-overlay {
  opacity: 1;
  transform: translateY(0);
  background: linear-gradient(180deg, transparent 10%, rgba(10, 10, 25, 0.9) 100%);
}
.project-overlay p {
  color: #ffffff;
  font-size: 0.9rem;
}
.project-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
  margin-bottom: 12px;
}
.project-status.completed {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}
.project-status.ongoing {
  background: rgba(234, 179, 8, 0.2);
  color: #eab308;
}
.project-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.project-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.project-meta span {
  color: #ffffff;
  font-size: 0.85rem;
}
.project-meta h3,
.project-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.01em;
}
.project-meta p {
  font-size: 0.85rem;
  color: #ffffff;
}
.quality {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--white);
  width: 130vw;
  margin-left: calc(-65vw + 50%);
}
.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.quality-checklist {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--light-bg);
  border-radius: var(--radius-md);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.check-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(200, 161, 90, 0.15);
}
.check-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 0.9rem;
}
.check-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.check-item p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}
.quality-visual {
  position: relative;
}
.quality-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.quality-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.quality-badge-float {
  position: absolute;
  top: 30px;
  right: -15px;
  padding: 16px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  animation: float 6s ease-in-out infinite;
  z-index: 2;
}
.quality-badge-float .badge-icon {
  font-size: 1.5rem;
  color: var(--gold);
}
.quality-badge-float .badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.locations {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--light-bg);
  width: 130vw;
  margin-left: calc(-65vw + 50%);
}
.locations-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: relative;
}
@media (min-width: 993px) {
  .map-container {
    position: sticky;
    top: 100px;
  }
}
.map-container iframe {
  width: 100%;
  height: 500px;
  border: none;
  display: block;
  transition: opacity 0.3s ease;
}
.map-loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}
.map-loading.active {
  opacity: 1;
  pointer-events: auto;
}
.map-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.map-loading span {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}
.map-current-label {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 60px;
  font-size: 0.82rem;
  color: var(--text);
  box-shadow: var(--shadow-md);
  z-index: 5;
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(-8px);
}
.map-current-label.active {
  opacity: 1;
  transform: translateY(0);
}
.map-current-label i {
  color: var(--gold);
  font-size: 0.9rem;
}
.map-current-label strong {
  color: var(--gold-dark);
  font-weight: 600;
}
.locations-note {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-light);
  padding: 24px 32px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.locations-note i {
  color: var(--gold);
  margin-right: 8px;
  font-size: 1.1rem;
}
.locations-note a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: var(--transition-fast);
}
.locations-note a:hover {
  color: var(--gold-dark);
}
.map-placeholder {
  padding: 40px;
  text-align: center;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--light-bg), var(--warm-gray));
}
.hyderabad-map svg,
.hydderabad-map svg {
  width: 100%;
  max-width: 300px;
  height: auto;
}
.map-dot {
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  position: absolute;
  animation: pulse 2s ease-in-out infinite;
}
.map-dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  opacity: 0.3;
  animation: pulse 2s ease-in-out infinite;
}
.locations-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.location-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.location-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform 0.3s ease;
  border-radius: 0 2px 2px 0;
}
.location-item:hover::before {
  transform: scaleY(1);
}
.location-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200, 161, 90, 0.25);
}
.location-item.active {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(200, 161, 90, 0.08), rgba(200, 161, 90, 0.02));
}
.location-item.active::before {
  transform: scaleY(1);
}
.location-item.active .location-pin {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
}
.location-item.active .location-info h4 {
  color: var(--gold);
}
.location-item.active .location-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--gold);
}
.location-item.hovered {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200, 161, 90, 0.25);
}
.location-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) translateX(-8px);
  color: var(--text-lighter);
  font-size: 0.8rem;
  opacity: 0;
  transition: var(--transition);
}
.location-item:hover .location-arrow {
  opacity: 0.5;
  transform: translateY(-50%) translateX(0);
}
.location-pin {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(200, 161, 90, 0.15), rgba(200, 161, 90, 0.05));
  border-radius: 12px;
  color: var(--gold);
  font-size: 1.1rem;
  transition: var(--transition);
}
.location-item:hover .location-pin {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  transform: scale(1.05);
}
.location-info {
  flex: 1;
}
.location-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  transition: var(--transition);
}
.location-item:hover .location-info h4 {
  color: var(--gold);
}
.location-info p {
  font-size: 0.82rem;
  color: var(--text-lighter);
  line-height: 1.5;
}
.testimonials {
  padding: clamp(80px, 10vw, 120px) 0;
  background: linear-gradient(180deg, var(--white) 0%, #f8f7f4 100%);
  overflow: hidden;
  width: 130vw;
  margin-left: calc(-65vw + 50%);
}
.testimonials-slider {
  position: relative;
  overflow: hidden;
  max-width: 850px;
  margin: 0 auto;
}
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.testimonial-card {
  min-width: 800px;
  max-width: 800px;
  height: 300px;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 34px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
  transition: var(--transition);
  position: relative;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  border-color: rgba(200, 161, 90, 0.2);
}
.testimonial-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: 60px;
  font-size: 0.65rem;
  font-weight: 600;
  color: #16a34a;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
  width: fit-content;
}
.testimonial-badge i {
  font-size: 0.6rem;
}
.testimonial-quote {
  display: none;
}
.testimonial-text {
  font-size: 0.88rem;
  color: #4a4a5a;
  line-height: 1.65;
  margin-bottom: 12px;
  font-style: normal;
  font-weight: 400;
}
.testimonial-rating {
  display: flex;
  gap: 3px;
  margin-bottom: 10px;
}
.testimonial-rating i {
  color: #f59e0b;
  font-size: 0.75rem;
}
.testimonial-project {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  background: rgba(200, 161, 90, 0.06);
  border: 1px solid rgba(200, 161, 90, 0.1);
  border-radius: 60px;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 12px;
  width: fit-content;
}
.testimonial-project i {
  font-size: 0.55rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(200, 161, 90, 0.2);
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-info h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1px;
}
.author-info span {
  font-size: 0.72rem;
  color: #888;
  font-weight: 500;
}
.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.testimonial-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  color: var(--text);
  font-size: 1rem;
  transition: var(--transition);
}
.testimonial-btn:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.testimonial-dots {
  display: flex;
  gap: 8px;
}
.testimonial-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d4d4d8;
  cursor: pointer;
  transition: var(--transition);
}
.testimonial-dots .dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 4px;
}
.faq {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--light-bg);
  width: 130vw;
  margin-left: calc(-65vw + 50%);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.active {
  border-color: rgba(200, 161, 90, 0.2);
  box-shadow: var(--shadow-md);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 28px;
  background: none;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  gap: 16px;
}
.faq-question:hover {
  color: var(--gold);
}
.faq-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-bg);
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--white);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease,
              padding 0.4s ease;
  padding: 0 28px;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 28px 24px;
}
.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
}
.contact {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--white);
  width: 130vw;
  margin-left: calc(-65vw + 50%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 60px);
  align-items: start;
}
.contact-form-wrapper {
  background: var(--white);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: var(--transition);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
  background: var(--white);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-lighter);
}
.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8a8a' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info-card {
  padding: 32px;
  background: var(--dark);
  border-radius: var(--radius-lg);
  color: var(--white);
}
.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--white);
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.info-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 161, 90, 0.15);
  border-radius: 12px;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 1rem;
}
.contact-info-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.contact-info-item p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 200px;
  border: 1px solid var(--border);
}
.contact-map iframe,
.contact-map .map-placeholder {
  width: 100%;
  height: 100%;
}
.final-cta {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0;
  overflow: hidden;
  width: 130vw;
  margin-left: calc(-65vw + 50%);
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.9) 0%,
    rgba(26, 26, 46, 0.85) 100%
  );
  z-index: 1;
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.cta-content p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: #ffffff;
  margin-bottom: 36px;
  line-height: 1.7;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}
.cta-next-steps {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: left;
}
.cta-next-steps h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 16px;
}
.cta-next-steps ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cta-next-steps li {
  color: #ffffff;
  font-size: 0.95rem;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cta-next-steps li i {
  color: var(--gold);
  font-size: 0.85rem;
}
.cta-steps {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 40px;
  text-align: left;
}
.cta-steps h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-align: center;
}
.cta-steps ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cta-steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}
.cta-steps li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(200, 161, 90, 0.2);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
}
.blog-section {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--light-bg);
  width: 130vw;
  margin-left: calc(-65vw + 50%);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-color: var(--gold);
}
.blog-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-image img {
  transform: scale(1.08);
}
.blog-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.blog-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-date {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog-card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 10px;
  transition: var(--transition);
}
.blog-card:hover .blog-card-content h3 {
  color: var(--gold);
}
.blog-card-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.blog-card-read {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.blog-card:hover .blog-card-read {
  gap: 12px;
}
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  width: 130vw;
  margin-left: calc(-65vw + 50%);
}
.footer-main {
  padding: clamp(60px, 8vw, 80px) 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
  color: rgba(255, 255, 255, 0.5);
}
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}
.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links li a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}
.footer-links li a:hover {
  color: var(--gold);
  padding-left: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
}
.footer-bottom a {
  color: var(--gold);
}
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-radius: 50%;
  font-size: 1.1rem;
  box-shadow: var(--shadow-gold);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  cursor: pointer;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(200, 161, 90, 0.4);
}
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 900;
  transition: var(--transition);
  cursor: pointer;
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.2);
  animation: pulse 2s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}
@keyframes scrollAnim {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.service-card,
.feature-card,
.project-card,
.check-item,
.location-item,
.faq-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.service-card.visible,
.feature-card.visible,
.project-card.visible,
.check-item.visible,
.location-item.visible,
.faq-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.service-card:nth-child(2),
.feature-card:nth-child(2),
.project-card:nth-child(2),
.check-item:nth-child(2),
.location-item:nth-child(2) {
  transition-delay: 0.1s;
}
.service-card:nth-child(3),
.feature-card:nth-child(3),
.project-card:nth-child(3),
.check-item:nth-child(3),
.location-item:nth-child(3) {
  transition-delay: 0.2s;
}
.service-card:nth-child(4),
.feature-card:nth-child(4),
.project-card:nth-child(4),
.check-item:nth-child(4),
.location-item:nth-child(4) {
  transition-delay: 0.3s;
}
.service-card:nth-child(5),
.feature-card:nth-child(5),
.project-card:nth-child(5),
.check-item:nth-child(5),
.location-item:nth-child(5) {
  transition-delay: 0.4s;
}
.service-card:nth-child(6),
.feature-card:nth-child(6),
.project-card:nth-child(6),
.check-item:nth-child(6),
.location-item:nth-child(6) {
  transition-delay: 0.5s;
}
.location-item:nth-child(7) {
  transition-delay: 0.05s;
}
.location-item:nth-child(8) {
  transition-delay: 0.1s;
}
.location-item:nth-child(9) {
  transition-delay: 0.15s;
}
.location-item:nth-child(10) {
  transition-delay: 0.2s;
}
.location-item:nth-child(11) {
  transition-delay: 0.25s;
}
.location-item:nth-child(12) {
  transition-delay: 0.3s;
}
.about-grid,
.quality-grid {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.about-grid.visible,
.quality-grid.visible {
  opacity: 1;
  transform: translateY(0);
}
.section-header {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.section-header.visible {
  opacity: 1;
  transform: translateY(0);
}
.project-image img,
.about-main-img,
.quality-image-wrapper img {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.project-image img.loaded,
.about-main-img.loaded,
.quality-image-wrapper img.loaded {
  opacity: 1;
}
body.loaded .hero-content {
  animation: fadeInUp 0.8s ease both;
}
.service-card-inner::before {
  content: '';
  position: absolute;
  top: var(--mouse-y, 50%);
  left: var(--mouse-x, 50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}
.service-card:hover .service-card-inner::before {
  opacity: 1;
}
@media (max-width: 1200px) {
  .about-grid,
  .quality-grid {
    gap: 40px;
  }
  .projects-grid {
    gap: 20px;
    grid-auto-rows: 280px;
  }
  .blog-grid {
    gap: 20px;
  }
  .features-grid,
  .services-grid {
    gap: 24px;
  }
  .footer-grid {
    gap: 30px;
  }
  .locations-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .about,
  .services,
  .why-choose,
  .process,
  .projects,
  .quality,
  .locations,
  .testimonials,
  .faq,
  .contact,
  .final-cta,
  .blog-section,
  .footer {
    width: 100%;
    margin-left: 0;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-image-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid,
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .premium-roadmap {
    padding: 40px 0 60px;
  }
  .roadmap-spine {
    left: 36px;
    transform: none;
  }
  .rm-step {
    flex-direction: row !important;
    padding-left: 90px !important;
    padding-right: 0 !important;
    margin-bottom: 50px;
  }
  .rm-step-marker {
    left: 36px;
    transform: translateX(-50%);
  }
  .marker-ring {
    width: 48px;
    height: 48px;
  }
  .marker-ring-inner {
    width: 30px;
    height: 30px;
  }
  .marker-pulse {
    width: 48px;
    height: 48px;
  }
  .rm-card-inner {
    padding: 26px;
  }
  .rm-card-inner h3 {
    font-size: 1.15rem;
  }
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 260px;
  }
  .projects-grid .project-card:nth-child(1) {
    grid-column: span 2;
  }
  .projects-grid .project-card:nth-child(4) {
    grid-row: span 1;
  }
  .quality-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .quality-image-wrapper img {
    height: 400px;
  }
  .locations-content {
    grid-template-columns: 1fr;
  }
  .map-container {
    position: static;
  }
  .map-container iframe {
    height: 400px;
  }
  .map-current-label {
    top: 12px;
    left: 12px;
    padding: 8px 14px;
    font-size: 0.78rem;
  }
  .locations-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-card {
    min-width: 100%;
    max-width: 100%;
  }
  .testimonial-slider {
    overflow: hidden;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-slider-controls {
    bottom: 30px;
  }
  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) {
  .hero-content {
    padding: 60px 20px 0;
  }
  .hero-title {
    font-size: clamp(2.2rem, 7vw, 3rem);
  }
  .hero-trust-badges {
    flex-direction: column;
  }
  .trust-badge {
    min-width: auto;
  }
  .hero-scroll-indicator {
    display: none;
  }
  .about-main-img {
    height: 350px;
  }
  .about-experience-badge {
    left: 20px;
    bottom: -10px;
  }
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .services-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .premium-roadmap {
    padding: 30px 0 50px;
  }
  .rm-step {
    margin-bottom: 40px;
  }
  .rm-card-inner {
    padding: 22px;
  }
  .rm-card-inner h3 {
    font-size: 1.05rem;
  }
  .rm-card-inner p {
    font-size: 0.85rem;
  }
  .rm-card-badge {
    font-size: 0.65rem;
    padding: 5px 12px;
  }
  .rm-card-icon {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
  .finish-diamond-inner {
    width: 54px;
    height: 54px;
    font-size: 1.2rem;
  }
  .finish-ring-1 { width: 72px; height: 72px; }
  .finish-ring-2 { width: 90px; height: 90px; }
  .finish-ring-3 { width: 108px; height: 108px; }
  .projects-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .projects-grid .project-card:nth-child(1) {
    grid-column: span 1;
  }
  .project-overlay {
    opacity: 1;
    transform: translateY(0);
  }
  .quality-badge-float {
    right: 10px;
  }
  .locations-list {
    grid-template-columns: 1fr;
  }
  .locations-note {
    padding: 20px;
    font-size: 0.9rem;
  }
  .map-container iframe {
    height: 300px;
  }
  .map-current-label {
    top: 10px;
    left: 10px;
    padding: 6px 12px;
    font-size: 0.75rem;
    border-radius: 20px;
  }
  .location-arrow {
    display: none;
  }
  .testimonial-card {
    min-width: 100%;
    max-width: 100%;
    height: auto;
  }
  .testimonial-slider {
    overflow: visible;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .cta-content h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
  .whatsapp-float {
    bottom: 76px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  .hero-slider-controls {
    bottom: 20px;
    gap: 12px;
  }
  .slider-btn {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }
  .slider-dot {
    width: 8px;
    height: 8px;
  }
  .slider-dot.active {
    width: 22px;
  }
  .map-container iframe {
    height: 350px;
  }
  .cta-steps {
    padding: 24px;
  }
  .cta-steps h3 {
    font-size: 1.15rem;
  }
  .cta-steps li {
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .section-container {
    padding: 0 20px;
  }
  .hero-content {
    padding: 50px 16px 0;
  }
  .hero-badge {
    padding: 8px 16px;
    font-size: 0.78rem;
  }
  .hero-cta-group {
    flex-direction: column;
  }
  .hero-cta-group .btn {
    width: 100%;
  }
  .btn-lg {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
  .about-main-img {
    height: 280px;
  }
  .about-experience-badge {
    padding: 14px 20px;
  }
  .about-experience-badge .number {
    font-size: 2rem;
  }
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }
  .stat-card {
    padding: 18px 12px;
  }
  .service-card-inner {
    padding: 28px 24px;
  }
  .feature-card {
    padding: 28px 24px;
  }
  .rm-step {
    padding-left: 70px !important;
    margin-bottom: 35px;
  }
  .roadmap-spine {
    left: 26px;
  }
  .rm-step-marker {
    left: 26px;
  }
  .marker-ring {
    width: 40px;
    height: 40px;
  }
  .marker-ring-inner {
    width: 26px;
    height: 26px;
  }
  .marker-number {
    font-size: 0.65rem;
  }
  .marker-pulse {
    width: 40px;
    height: 40px;
  }
  .rm-card-inner {
    padding: 18px;
  }
  .rm-card-head {
    margin-bottom: 14px;
  }
  .rm-card-icon {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
    border-radius: 10px;
  }
  .rm-card-badge {
    font-size: 0.6rem;
    padding: 4px 10px;
    letter-spacing: 1.5px;
  }
  .rm-card-inner h3 {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  .rm-card-inner p {
    font-size: 0.82rem;
    line-height: 1.65;
    margin-bottom: 14px;
  }
  .rm-feature span {
    font-size: 0.78rem;
  }
  .projects-grid {
    grid-auto-rows: 220px;
  }
  .quality-image-wrapper img {
    height: 280px;
  }
  .quality-badge-float {
    top: 16px;
    padding: 12px 16px;
  }
  .location-item {
    padding: 14px 16px;
  }
  .testimonial-card {
    padding: 20px 16px;
    height: auto;
  }
  .faq-question {
    padding: 18px 20px;
    font-size: 0.95rem;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
  }
  .contact-info-card {
    padding: 24px;
  }
  .final-cta {
    padding: 60px 0;
  }
  .mobile-nav {
    max-width: 100%;
    padding: 80px 24px 24px;
  }
  .hero-slider-controls {
    bottom: 16px;
    gap: 8px;
  }
  .slider-btn {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }
  .slider-dot {
    width: 6px;
    height: 6px;
  }
  .slider-dot.active {
    width: 18px;
  }
  .map-container iframe {
    height: 250px;
  }
  .map-spinner {
    width: 32px;
    height: 32px;
  }
  .cta-steps {
    padding: 20px;
    margin-top: 28px;
  }
  .cta-steps h3 {
    font-size: 1.05rem;
    margin-bottom: 16px;
  }
  .cta-steps ul {
    gap: 10px;
  }
  .cta-steps li {
    font-size: 0.85rem;
    gap: 10px;
  }
  .cta-steps li::before {
    width: 24px;
    height: 24px;
    font-size: 0.65rem;
  }
}