@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap");

:root {
  /* BL Builders Color Palette */
  --primary-dark: #021c24; /* Deep Teal - Navbar, Footer, Primary Headings */
  --primary: #29abe2; /* Bright Cyan - Icons, Borders, Hyperlinks */
  --primary-light: #5cc4ee; /* Lighter Cyan - Hover states */
  --primary-gradient: linear-gradient(
    135deg,
    #021c24 0%,
    #29abe2 50%,
    #5cc4ee 100%
  );

  --accent: #f15a24; /* Sunset Orange - Primary Buttons Start */
  --accent-light: #fbb03b; /* Golden Yellow - Highlights, Gradient End */
  --accent-gradient: linear-gradient(to right, #f15a24, #fbb03b);

  --bg: #f5f7f8; /* Off-White - Page Background */
  --surface: #fefdfb; /* Milk White - Warmer white for cards and surfaces */
  --text: #1a2332;
  --text-light: #64748b;
  --text-muted: #94a3b8;
  --border: rgba(41, 171, 226, 0.15); /* Subtle cyan tint */

  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;

  /* Enhanced Shadows */
  --shadow-xs: 0 1px 2px 0 rgba(2, 28, 36, 0.05);
  --shadow-sm: 0 2px 4px 0 rgba(2, 28, 36, 0.08);
  --shadow-md: 0 4px 12px -2px rgba(2, 28, 36, 0.12),
    0 2px 6px -1px rgba(2, 28, 36, 0.08);
  --shadow-lg: 0 10px 24px -4px rgba(2, 28, 36, 0.15),
    0 4px 12px -2px rgba(2, 28, 36, 0.1);
  --shadow-xl: 0 20px 40px -8px rgba(2, 28, 36, 0.18),
    0 8px 16px -4px rgba(2, 28, 36, 0.12);
  --shadow-2xl: 0 30px 60px -12px rgba(2, 28, 36, 0.25),
    0 12px 24px -6px rgba(2, 28, 36, 0.15);

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.3);

  /* Spacing */
  --container-width: 1200px;
  --header-height: 85px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  color: var(--primary-dark);
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1.0625rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-base);
}

/* Layout Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 7rem 0;
  position: relative;
}

.section-alt {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
}

/* Header & Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: var(--primary-dark);
  z-index: 1000;
  transition: all var(--transition-base);
  box-shadow: 0 4px 12px rgba(2, 28, 36, 0.15);
}

.site-header.scrolled {
  box-shadow: var(--shadow-xl);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.logo {
  height: 52px;
  width: auto;
  transition: all var(--transition-base);
}

.brand:hover .logo {
  transform: translateY(-1px);
}

.brand-text h1 {
  font-size: 1.375rem;
  color: white;
  margin: 0;
  font-weight: 700;
}

.hotline {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  margin: 0;
  margin-left: 0.5rem;
}

.site-nav {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.site-nav a {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
}

.site-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--accent-gradient);
  border-radius: 2px;
  transition: width var(--transition-base);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--accent-light);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: white;
  cursor: pointer;
  transition: transform var(--transition-base);
}

.nav-toggle:hover {
  transform: scale(1.1);
}

/* Hero Carousel */
.hero-carousel {
  height: 100vh;
  min-height: 650px;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.carousel-container,
.carousel-slides,
.carousel-slide {
  height: 100%;
  width: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(2, 28, 36, 0.85) 0%,
    rgba(41, 171, 226, 0.75) 50%,
    rgba(92, 196, 238, 0.65) 100%
  );
}

.carousel-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 0%,
    rgba(2, 28, 36, 0.3) 100%
  );
}

.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 3rem;
  color: white;
  transform: translateY(40px);
  opacity: 0;
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.carousel-slide.active .slide-content {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.3s;
}

.slide-content h2 {
  color: white;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1.75rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.slide-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  font-weight: 400;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1.125rem 3rem;
  background: var(--accent-gradient);
  color: #021c24;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.875rem;
  box-shadow: 0 8px 20px rgba(241, 90, 36, 0.4);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(241, 90, 36, 0.5);
}

.btn:active {
  transform: translateY(-1px);
}

/* Carousel Controls */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.carousel-btn:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-xl);
}

.carousel-btn.prev {
  left: 2.5rem;
}

.carousel-btn.next {
  right: 2.5rem;
}

.carousel-dots {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  border: 2px solid transparent;
}

.dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: white;
  border-radius: 50%;
  transition: all var(--transition-base);
}

.dot.active {
  background: transparent;
  border-color: white;
  transform: scale(1.3);
}

.dot.active::after {
  width: 8px;
  height: 8px;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-content h3 {
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.about-content h3::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--accent-gradient);
  border-radius: 2px;
}

.about-content p {
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-item {
  background: var(--primary-gradient);
  padding: 2rem 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  color: white;
}

.value-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.value-item:hover::before {
  transform: scaleX(1);
}

.value-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.value-item img {
  height: 56px;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 2px 8px rgba(15, 76, 117, 0.2));
}

.value-item h4 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  color: white;
}

.value-item p {
  font-size: 0.9375rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

/* Services Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.card {
  background: var(--primary-gradient);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  color: white;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: var(--primary-gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-2xl);
}

.card-image {
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(10, 35, 66, 0.5) 100%
  );
  opacity: 0;
  transition: opacity var(--transition-base);
}

.card:hover .card-image::after {
  opacity: 1;
}

.card-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card h4 {
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
  transition: color var(--transition-base);
  color: white;
}

.card:hover h4 {
  color: var(--accent-light);
}

.service-location {
  color: var(--accent-light);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-location::before {
  content: "📍";
}

.service-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 25px;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-top: auto;
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.gallery-item {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
  cursor: pointer;
  transition: all var(--transition-slow);
  box-shadow: var(--shadow-md);
  position: relative;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(241, 90, 36, 0.3),
    rgba(41, 171, 226, 0.3)
  );
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-item:hover {
  transform: scale(1.05) rotate(1deg);
  box-shadow: var(--shadow-2xl);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Contact Section */
.contact-panel {
  background: linear-gradient(180deg, var(--bg) 0%, #f0f9ff 100%);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3.5rem;
}

.contact-form-section {
  background: var(--primary-gradient);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  color: white;
}

.contact-form-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: pulse 4s ease-in-out infinite;
}

.contact-form-section h3 {
  color: white;
  margin-bottom: 2rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  position: relative;
  z-index: 1;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  font-weight: 600;
  color: white;
  font-size: 0.9375rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 1rem 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  transition: all var(--transition-base);
  background: rgba(255, 255, 255, 0.15);
  color: white;
  backdrop-filter: blur(10px);
}

.contact-form select {
  cursor: pointer;
}

.contact-form select option {
  background: var(--primary-dark);
  color: white;
  padding: 0.5rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: white;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.2);
}

.contact-card {
  background: var(--primary-gradient);
  color: white;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.contact-card h3 {
  color: white;
  margin-bottom: 2.5rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.contact-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.contact-icon {
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all var(--transition-base);
}

.contact-item:hover .contact-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.contact-item p,
.contact-item a {
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  font-size: 0.9375rem;
}

.contact-item a:hover {
  color: var(--accent);
}

/* Footer */
.site-footer {
  background: linear-gradient(135deg, #021c24 0%, #043847 50%, #056177 100%);
  color: white;
  padding: 5rem 0 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3.5rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 1;
}

.footer-logo {
  height: 70px;
  width: auto;
  margin-bottom: 1.75rem;
  background: white;
  padding: 8px;
  border-radius: 12px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.footer-address {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

.footer-col h4 {
  color: white;
  margin-bottom: 2rem;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.75);
  transition: all var(--transition-base);
  position: relative;
  padding-left: 0;
  display: inline-block;
}

.footer-nav a::before {
  content: "→";
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all var(--transition-base);
}

.footer-nav a:hover {
  color: var(--accent);
  padding-left: 20px;
}

.footer-nav a:hover::before {
  left: 0;
  opacity: 1;
}

.footer-social {
  display: flex;
  gap: 1.25rem;
  margin-top: 2rem;
}

.footer-social a {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition-base);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-social a:hover {
  background: var(--accent-gradient);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
  border-color: transparent;
}

.footer-bottom {
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  position: relative;
  z-index: 1;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* Floating Chat */
.floating-chat {
  position: fixed;
  right: 2.5rem;
  bottom: 2.5rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.25rem;
}

.chat-toggle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: white;
  border: none;
  box-shadow: 0 8px 24px rgba(241, 90, 36, 0.5);
  cursor: pointer;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.chat-toggle:hover {
  transform: scale(1.15) rotate(15deg);
  box-shadow: 0 12px 32px rgba(241, 90, 36, 0.6);
}

.chat-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
}

.floating-chat.open .chat-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.chat-option {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
  border: 3px solid white;
}

.chat-option:hover {
  transform: scale(1.15);
  box-shadow: var(--shadow-2xl);
}

.chat-option.whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.chat-option.messenger-opt {
  background: linear-gradient(135deg, #0084ff 0%, #0066cc 100%);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(2, 28, 36, 0.95);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.lightbox:not(.hidden) {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  animation: zoomIn 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lb-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 2rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.lb-close:hover {
  background: var(--accent-gradient);
  transform: rotate(90deg);
  border-color: transparent;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
}

.team-card {
  background: var(--primary-gradient);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  text-align: center;
  color: white;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

.team-image {
  height: 280px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.team-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, var(--primary-dark) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.team-card:hover .team-image::after {
  opacity: 0.5;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-info {
  padding: 2rem;
}

.team-info h4 {
  margin-bottom: 0.5rem;
  color: white;
  font-size: 1.375rem;
}

.team-designation {
  color: var(--accent-light);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.team-details {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Clients Section */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
}

.client-card {
  background: var(--primary-gradient);
  padding: 2rem 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all var(--transition-base);
  color: white;
}

.client-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.client-image {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.25rem;
  border: 3px solid transparent;
  background: var(--accent-gradient);
  padding: 3px;
  transition: all var(--transition-base);
}

.client-card:hover .client-image {
  transform: scale(1.1);
}

.client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: white;
}

.client-info h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: white;
  font-weight: 700;
}

.client-designation {
  font-size: 1rem;
  color: white;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.client-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}

/* Features Grid (Why Choose Us) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
}

.feature {
  background: var(--primary-gradient);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  color: white;
}

.feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: var(--primary-gradient);
  transition: width var(--transition-base);
}

.feature:hover::before {
  width: 100%;
}

.feature:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.75rem;
  display: inline-block;
  transition: transform var(--transition-slow);
}

.feature:hover .feature-icon {
  transform: scale(1.2) rotate(10deg);
}

.feature h4 {
  margin-bottom: 1rem;
  font-size: 1.375rem;
  color: white;
}

/* Property Grid (Land & Apartments) */
.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
  gap: 2.5rem;
}

.property-card {
  background: var(--primary-gradient);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
  color: white;
}

.property-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2xl);
}

.property-image {
  height: 240px;
  position: relative;
  overflow: hidden;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.property-card:hover .property-image img {
  transform: scale(1.15);
}

.property-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  padding: 0.625rem 1.25rem;
  border-radius: 25px;
  background: var(--primary-dark);
  color: white;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 2;
  border: 2px solid white;
}

.property-badge.sold {
  background: var(--error);
}

.property-badge.upcoming {
  background: var(--accent-gradient);
}

.property-info {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.property-info h4 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: white;
}

.property-location {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.property-location::before {
  content: "📍";
  font-size: 1.125rem;
}

.property-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.property-features li {
  background: rgba(255, 255, 255, 0.95);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--primary-dark);
  font-weight: 600;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.property-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 2px solid var(--border);
}

.property-price {
  font-weight: 700;
  font-size: 1.375rem;
  color: white;
}

.property-price.sold {
  color: var(--error);
}

/* Gallery Page Styles */
.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  margin-bottom: 3.5rem;
}

.gallery-tab {
  background: transparent;
  border: 2px solid var(--border);
  padding: 1rem 2rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all var(--transition-base);
  color: var(--text-light);
  font-size: 0.9375rem;
  letter-spacing: 0.5px;
}

.gallery-tab:hover,
.gallery-tab.active {
  background: var(--primary-gradient);
  border-color: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.gallery-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  height: 280px;
  transition: all var(--transition-base);
}

.gallery-card:hover {
  box-shadow: var(--shadow-2xl);
  transform: translateY(-5px);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-card:hover img {
  transform: scale(1.15);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(2, 28, 36, 0.9),
    rgba(41, 171, 226, 0.85)
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
  color: white;
  padding: 1.5rem;
  text-align: center;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-family: "Playfair Display", serif;
}

.video-card iframe {
  width: 100%;
  height: 100%;
}

/* Responsive */
/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .values {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem !important;
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .section {
    padding: 5rem 0;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: var(--primary-dark);
    flex-direction: column;
    padding: 2.5rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-xl);
    transform: translateY(-150%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 999;
  }

  .site-nav.show {
    transform: translateY(0);
  }

  .slide-content h2 {
    font-size: 2.25rem;
  }

  .slide-content p {
    font-size: 1.125rem;
  }

  .carousel-btn {
    width: 50px;
    height: 50px;
  }

  .carousel-btn.prev {
    left: 1rem;
  }

  .carousel-btn.next {
    right: 1rem;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .values {
    grid-template-columns: 1fr !important;
  }

  .value-item {
    text-align: center;
  }

  .value-item img {
    max-width: 200px;
    margin: 0 auto;
  }

  .property-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .section {
    padding: 4rem 0;
  }

  .floating-chat {
    right: 1.5rem;
    bottom: 1.5rem;
  }

  .chat-toggle {
    width: 60px;
    height: 60px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-carousel {
    min-height: 500px;
  }

  .slide-content h2 {
    font-size: 1.75rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .btn {
    padding: 1rem 2rem;
    font-size: 0.8125rem;
  }

  .container {
    padding: 0 1rem;
  }

  h2 {
    font-size: 1.875rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .value-item img {
    max-width: 150px;
  }

  .value-item h4 {
    font-size: 1.125rem;
  }

  .section {
    padding: 3rem 0;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .carousel-btn.prev {
    left: 0.5rem;
  }

  .carousel-btn.next {
    right: 0.5rem;
  }

  .floating-chat {
    right: 1rem;
    bottom: 1rem;
  }

  .chat-toggle {
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
  }

  .contact-form-section {
    padding: 2rem 1.5rem;
  }

  .contact-card {
    padding: 2rem 1.5rem;
  }
}
