/* ==========================================================================
   KONARK BUILDERS - Luxury Real Estate Stylesheet
   Designed for High Trust, Elegance, & Lead Generation
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES & DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand Colors */
  --primary: #0D3B66;
  --primary-dark: #082544;
  --primary-light: #164e83;
  --orange: #F26A21;
  --orange-hover: #D85510;
  --orange-glow: rgba(242, 106, 33, 0.25);
  
  --bg-main: #FAFAFA;
  --dark: #111111;
  --light-gray: #F5F5F5;
  --text-muted: #5A6A7D;
  --text-light: #E0E8F0;
  
  --white: #FFFFFF;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.25);
  --navy-glass: rgba(13, 59, 102, 0.85);
  
  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Architectural Sharp Radii */
  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;
  --radius-xl: 0px;
  --radius-pill: 0px;
  
  /* Shadows & Effects */
  --shadow-sm: 0 4px 12px rgba(13, 59, 102, 0.06);
  --shadow-md: 0 12px 32px rgba(13, 59, 102, 0.10);
  --shadow-lg: 0 24px 48px rgba(13, 59, 102, 0.16);
  --shadow-orange: 0 10px 24px rgba(242, 106, 33, 0.35);
  --shadow-glow: 0 0 40px rgba(13, 59, 102, 0.15);
  
  /* Transitions & Hardware Acceleration (UI UX Pro Max 60fps) */
  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* GPU Hardware Acceleration Helpers */
.transition-zoom,
.card,
.btn,
.dropdown-menu-luxury,
.trust-feature-box,
.completed-project-card-luxury {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform, opacity;
}

/* --------------------------------------------------------------------------
   2. GLOBAL RESETS & TYPOGRAPHY
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Mobile Badge Horizontal Overflow Protection */
@media (max-width: 575.98px) {
  .project-glass-badge {
    max-width: 100%;
    font-size: 0.685rem;
    padding: 0.35rem 0.75rem;
    white-space: normal;
  }
}

/* Master Harmonized Typography System */
h1, .h1, .display-4, .display-5 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  letter-spacing: -0.015em;
}

h2, .h2, .display-6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

h3, .h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

h4, .h4, .completed-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.35;
}

h5, .h5, h6, .h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.4;
}

p, body, .lead-text, span, button, input, select, textarea, label, div {
  font-family: var(--font-body);
}

.lead-text {
  font-size: 1.075rem;
  line-height: 1.65;
  font-weight: 400;
}

.section-label {
  font-family: var(--font-body) !important;
  font-size: 0.775rem !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: var(--orange) !important;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label-line {
  display: inline-block;
  width: 28px;
  height: 2px;
  background-color: var(--orange);
}

.btn {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.5px;
}

a {
  text-decoration: none;
  transition: var(--transition-fast);
  color: inherit;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--light-gray);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Accessible Focus States & Interaction Rules (UI UX Pro Max) */
a:focus-visible, 
button:focus-visible, 
input:focus-visible, 
select:focus-visible, 
textarea:focus-visible {
  outline: 3px solid var(--orange) !important;
  outline-offset: 3px !important;
}

/* Reduced Motion Preference (UI UX Pro Max) */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Utility Helpers */
.text-orange {
  color: var(--orange) !important;
}
.text-primary-navy {
  color: var(--primary) !important;
}
.max-w-700 {
  max-width: 700px;
}
.bg-primary-navy {
  background-color: var(--primary) !important;
}
.bg-light-gray {
  background-color: var(--light-gray) !important;
}

/* --------------------------------------------------------------------------
   3. STICKY NAVIGATION BAR
   -------------------------------------------------------------------------- */
.navbar-konark {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  padding: 0.65rem 0;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(13, 59, 102, 0.08);
}

.navbar-konark.scrolled {
  padding: 0.45rem 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 30px rgba(13, 59, 102, 0.12);
  border-bottom: 1px solid rgba(13, 59, 102, 0.12);
}

.navbar-brand img {
  height: 58px;
  width: auto;
  transition: var(--transition-fast);
}

.navbar-konark.scrolled .navbar-brand img {
  height: 50px;
}

.nav-link-custom {
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--primary);
  padding: 0.5rem 1rem !important;
  position: relative;
  letter-spacing: 0.3px;
  transition: var(--transition-fast);
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--orange);
  transition: var(--transition-fast);
  border-radius: 2px;
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--orange);
}

.nav-link-custom.dropdown-toggle::after {
  display: none !important;
}

/* Dropdown Navigation Menu & Hover Bridge (100% Hover Stability) */
.dropdown-menu-luxury {
  border-radius: 8px;
  border: 1px solid rgba(13, 59, 102, 0.12);
  border-top: 3px solid var(--orange);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 15px 35px rgba(13, 59, 102, 0.15);
  padding: 0.5rem 0;
  margin-top: 0 !important;
  min-width: 210px;
}

/* Invisible Hover Bridge between Nav Link and Dropdown Menu */
.dropdown-menu-luxury::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
  background: transparent;
}

.dropdown-menu-luxury .dropdown-item {
  font-size: 0.885rem;
  font-weight: 600;
  color: var(--primary);
  padding: 0.65rem 1.35rem;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown-menu-luxury .dropdown-item:hover,
.dropdown-menu-luxury .dropdown-item:focus {
  background: rgba(242, 106, 33, 0.08);
  color: var(--orange);
  padding-left: 1.6rem;
}

/* Submenu on Hover */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-submenu-menu {
  top: -5px;
  left: 100%;
  margin-top: 0 !important;
  border-radius: 8px;
  border: 1px solid rgba(13, 59, 102, 0.12);
  border-left: 3px solid var(--orange);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 15px 35px rgba(13, 59, 102, 0.15);
  min-width: 210px;
  padding: 0.5rem 0;
}

/* Invisible Hover Bridge for Submenu */
.dropdown-submenu-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: -15px;
  width: 15px;
  height: 100%;
  background: transparent;
}

/* Smooth Desktop Hover Animations & Persistent Open */
@media (min-width: 992px) {
  .nav-item.dropdown .dropdown-menu-luxury {
    display: block !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
  }

  .nav-item.dropdown:hover > .dropdown-menu-luxury {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .dropdown-submenu .dropdown-submenu-menu {
    display: block !important;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
  }

  .dropdown-submenu:hover > .dropdown-submenu-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
  }
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  width: 60%;
}

/* Header Direct Call Pill (Sharp Architectural) */
.header-phone-widget {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.25rem 0.85rem;
  background: var(--light-gray);
  border-radius: 0px;
  border: 1px solid var(--border-color);
  transition: var(--transition-fast);
}

.header-phone-widget:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border-color: var(--orange);
}

.phone-icon-box {
  width: 28px;
  height: 28px;
  border-radius: 0px;
  background: var(--orange-glow);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.785rem;
}

.phone-meta {
  display: flex;
  flex-direction: column;
}

.phone-meta .phone-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  font-weight: 600;
}

.phone-meta .phone-number {
  font-size: 0.775rem;
  font-weight: 700;
  color: var(--primary);
}

/* Header Specific Button Size */
.navbar-konark .btn-orange-primary {
  padding: 0.55rem 1.4rem;
  font-size: 0.8rem;
}

/* Buttons (Sharp Architectural Edges) */
.btn-orange-primary {
  background: linear-gradient(135deg, #F26A21 0%, #E0580E 100%);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 0px;
  border: none;
  box-shadow: var(--shadow-orange);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-orange-primary::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: 0.5s;
}

.btn-orange-primary:hover::before {
  left: 100%;
}

.btn-orange-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(242, 106, 33, 0.45);
}

.btn-navy-outline {
  background: rgba(13, 59, 102, 0.05);
  color: var(--primary) !important;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 0px;
  border: 1.5px solid var(--primary);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
}

.btn-navy-outline:hover {
  background: var(--primary);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-white-outline {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 0px;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  text-decoration: none;
}

.btn-white-outline span {
  color: #ffffff !important;
}

.btn-white-outline:hover {
  background: #ffffff;
  color: var(--primary) !important;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.btn-white-outline:hover span {
  color: var(--primary) !important;
}

.btn-white-outline:hover i {
  color: var(--primary) !important;
}

/* --------------------------------------------------------------------------
   4. LUXURY HERO SECTION (CINEMATIC FULL-WIDTH VIDEO & GLASS CARDS)
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 160px;
  padding-bottom: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background-color: #061528;
  color: var(--white);
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% center;
  z-index: 1;
}

/* Gradient Overlay - Dark Blue on Left 60%, Transparent on Right 40% for Building Visibility */
.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, 
    rgba(6, 21, 40, 0.96) 0%, 
    rgba(6, 21, 40, 0.90) 45%, 
    rgba(6, 21, 40, 0.40) 70%, 
    rgba(6, 21, 40, 0.15) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Soft Architectural Background Pattern Overlay */
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.6;
  pointer-events: none;
}

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

/* Tagline Badge (Sharp Architectural Edge) */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.45rem 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 3px solid var(--orange);
  border-radius: 0px;
  font-size: 0.775rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.credai-badge-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 0.3rem 0.85rem;
  border-radius: 0px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
}

.credai-badge-card img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.hero-badge-line {
  display: none;
}

/* H1 Main Headline */
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.hero-subheading {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-subheading span.dot-separator {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 0px;
  background-color: rgba(255, 255, 255, 0.4);
}

/* Hero Subheading Luxury Badges */
.hero-subheading-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.65rem;
  margin-bottom: 1.35rem;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(243, 112, 33, 0.45);
  color: #ffffff;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.825rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: all 0.25s ease;
}

.hero-badge-pill:hover {
  background: rgba(243, 112, 33, 0.2);
  border-color: var(--orange);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(243, 112, 33, 0.3);
}

.hero-badge-pill i {
  color: var(--orange);
  font-size: 0.75rem;
}

/* Hero Bullet Points List */
.hero-bullets-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(max-content, 1fr));
  gap: 0.7rem 2.2rem;
  width: fit-content;
  margin-bottom: 1.5rem;
  background: rgba(10, 25, 47, 0.4);
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-bullet-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.885rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: transform 0.2s ease, color 0.2s ease;
}

.hero-bullet-item:hover {
  color: var(--orange);
  transform: translateX(3px);
}

.hero-bullet-item .bullet-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(243, 112, 33, 0.9), 0 0 4px rgba(243, 112, 33, 0.6);
  position: relative;
}

.hero-bullet-item .bullet-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(243, 112, 33, 0.25);
}

.hero-description {
  font-size: 1.075rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-hero-contact {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 0px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-hero-contact:hover {
  background: var(--white);
  color: var(--primary) !important;
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* --------------------------------------------------------------------------
   5. HERO VISUAL CAROUSEL / RENDER DISPLAY (Sharp Architectural Container)
   -------------------------------------------------------------------------- */
.hero-image-wrapper {
  position: relative;
  z-index: 2;
  border-radius: 0px;
  padding: 0;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.hero-image-box {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 0px;
  overflow: hidden;
}

.hero-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
}

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

/* Floating Luxury Badge on Image (Sharp Rectangle) */
.hero-floating-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(13, 37, 69, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 4px solid var(--orange);
  border-radius: 0px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  max-width: 300px;
  z-index: 5;
}

.floating-icon {
  width: 42px;
  height: 42px;
  border-radius: 0px;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.floating-text h6 {
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 2px;
  font-weight: 700;
}

.floating-text p {
  font-size: 0.75rem;
  color: var(--text-light);
  margin: 0;
}

/* Carousel Control Arrows */
.hero-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 4;
}

.hero-nav-arrow:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-50%) scale(1.1);
}

.hero-nav-arrow.left-arrow {
  left: 20px;
}

.hero-nav-arrow.right-arrow {
  right: 20px;
}

/* --------------------------------------------------------------------------
   6. ELEGANT GLASS CARDS STATISTICS STRIP (UI UX Pro Max Refined)
   -------------------------------------------------------------------------- */
.stats-strip-container {
  margin-top: 3.5rem;
  position: relative;
  z-index: 3;
}

.glass-stat-card {
  background: rgba(13, 37, 69, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 3px solid var(--orange);
  border-radius: 0px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transition: var(--transition-fast);
  text-decoration: none;
  color: inherit;
}

a.glass-stat-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.glass-stat-card:hover {
  transform: translateY(-4px);
  background: rgba(13, 37, 69, 0.9);
  border-color: rgba(242, 106, 33, 0.5);
  border-left-color: var(--orange);
  color: inherit;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.5rem 1rem;
  transition: var(--transition-fast);
}

.stat-item:hover {
  transform: translateY(-3px);
}

.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 0px;
  background: rgba(242, 106, 33, 0.15);
  border: 1px solid rgba(242, 106, 33, 0.3);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

.stat-label {
  font-size: 0.825rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.3px;
  line-height: 1.3;
}

.stat-divider {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

/* --------------------------------------------------------------------------
   7. SCROLL INDICATOR ANIMATION
   -------------------------------------------------------------------------- */
.scroll-indicator-wrapper {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.8;
  transition: var(--transition-fast);
}

.scroll-indicator-wrapper:hover {
  opacity: 1;
}

.mouse-icon {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 0px;
  position: relative;
  display: flex;
  justify-content: center;
}

.mouse-wheel {
  width: 4px;
  height: 8px;
  background-color: var(--orange);
  border-radius: 0px;
  position: absolute;
  top: 6px;
  animation: scrollWheel 2s infinite ease-in-out;
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.3; transform: translateY(12px); }
  100% { opacity: 0; transform: translateY(16px); }
}

.scroll-text {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   8. ENQUIRE MODAL / QUICK FORM
   -------------------------------------------------------------------------- */
.modal-luxury .modal-content {
  border-radius: 0px;
  border: 2px solid rgba(13, 59, 102, 0.2);
  border-top: 4px solid var(--orange);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.modal-luxury .modal-header {
  background: var(--primary);
  color: var(--white);
  border-bottom: none;
  padding: 1.5rem 2rem;
  border-radius: 0px;
}

.modal-luxury .modal-header .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.modal-luxury .modal-body {
  padding: 2rem;
  background: var(--bg-main);
}

.form-control-luxury {
  border-radius: 0px;
  border: 1.5px solid rgba(13, 59, 102, 0.2);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: var(--transition-fast);
}

.form-control-luxury:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px var(--orange-glow);
  outline: none;
}

/* Mobile Navigation Drawer & Toggler Optimization */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.25rem 1.5rem;
    margin-top: 0.75rem;
    border: 1px solid rgba(13, 59, 102, 0.12);
    border-top: 3px solid var(--orange);
    box-shadow: 0 15px 35px rgba(13, 59, 102, 0.15);
  }
  
  .navbar-nav .nav-link-custom {
    padding: 0.75rem 0 !important;
    border-bottom: 1px solid rgba(13, 59, 102, 0.06);
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  
  .navbar-brand img {
    height: 52px;
  }
  
  .navbar-toggler {
    border: 1px solid var(--primary);
    padding: 0.5rem 0.75rem;
    border-radius: 0px;
    min-height: 44px;
    min-width: 44px;
  }
  
  .navbar-toggler:focus {
    box-shadow: 0 0 0 3px var(--orange-glow);
  }
}

/* --------------------------------------------------------------------------
   9. RESPONSIVE BREAKPOINTS (UI UX Pro Max Cross-Device Optimization)
   -------------------------------------------------------------------------- */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: clamp(2.25rem, 5vw, 3.25rem);
  }
}

@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 130px;
    padding-bottom: 50px;
  }
  
  .hero-bg-video {
    object-position: center center;
  }
  
  .hero-gradient-overlay {
    background: linear-gradient(to bottom, 
      rgba(6, 21, 40, 0.92) 0%, 
      rgba(6, 21, 40, 0.85) 60%, 
      rgba(6, 21, 40, 0.75) 100%);
  }

  .glass-stat-card {
    padding: 1rem 1.15rem;
    gap: 0.75rem;
  }
  
  .stat-icon {
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
  }
  
  .stat-number {
    font-size: 1.75rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
  
  .trust-feature-box {
    padding: 0.9rem 1rem;
    gap: 0.75rem;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding-top: 115px;
    padding-bottom: 45px;
  }

  .hero-title {
    font-size: clamp(1.9rem, 7vw, 2.5rem);
  }
  
  .hero-subheading {
    font-size: 0.825rem;
    flex-wrap: wrap;
    gap: 0.4rem 0.6rem;
  }
  
  .hero-subheading-badges {
    gap: 0.4rem 0.5rem;
    margin-bottom: 1.15rem;
  }
  
  .hero-badge-pill {
    font-size: 0.75rem;
    padding: 0.28rem 0.65rem;
    letter-spacing: 0.4px;
  }
  
  .hero-badge-pill i {
    font-size: 0.7rem;
  }
  
  .hero-bullets-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 0.75rem;
    padding: 0.6rem 0.85rem;
    margin-bottom: 1.25rem;
    width: 100%;
  }

  .hero-bullet-item {
    font-size: 0.75rem;
    letter-spacing: 0.4px;
    gap: 0.45rem;
  }
  
  .hero-description {
    font-size: 0.925rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.85rem;
  }

  .hero-actions .btn-orange-primary,
  .hero-actions .btn-hero-contact {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
  
  .trust-feature-bar {
    padding: 1.5rem 0;
  }
  
  .trust-feature-box {
    margin-bottom: 0.25rem;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.85rem;
  }

  .glass-stat-card {
    padding: 0.85rem 0.9rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 0.7rem;
  }
  
  .floating-contact-dock {
    bottom: 18px;
    right: 18px;
  }
  
  .dock-btn {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
}

/* --------------------------------------------------------------------------
   10. TOP CORPORATE TRUST RIBBON
   -------------------------------------------------------------------------- */
.top-header-ribbon {
  background: #081B33;
  color: #D9E4EE;
  font-size: 0.775rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(242, 106, 33, 0.2);
  letter-spacing: 0.4px;
}

.top-header-ribbon a {
  color: #F26A21;
  font-weight: 600;
}

.top-header-ribbon a:hover {
  color: #FFFFFF;
}

.credai-badge-sm {
  background: rgba(242, 106, 33, 0.15);
  color: var(--orange);
  padding: 0.15rem 0.6rem;
  border-radius: 4px;
  border: 1px solid rgba(242, 106, 33, 0.3);
  font-weight: 700;
  font-size: 0.7rem;
}

/* --------------------------------------------------------------------------
   11. LUXURY GOLD GRADIENT TYPOGRAPHY & TRUST BULLETS
   -------------------------------------------------------------------------- */
.text-gold-gradient {
  background: linear-gradient(135deg, #F26A21 0%, #FFB03A 50%, #F26A21 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-trust-pills {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.trust-pill-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-pill-item i {
  color: var(--orange);
}

.live-status-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(13, 37, 69, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(242, 106, 33, 0.5);
  color: var(--white);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.725rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 6;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.live-dot {
  width: 8px;
  height: 8px;
  background-color: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--orange);
  animation: pulseLive 1.5s infinite;
}

@keyframes pulseLive {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
  100% { opacity: 1; transform: scale(1); }
}

/* --------------------------------------------------------------------------
   12. TRUST BAR FEATURE RIBBON (Directly below hero - Ultra High Contrast & Readable)
   -------------------------------------------------------------------------- */
.trust-feature-bar {
  background: #F4F7FA;
  padding: 2.25rem 0;
  border-top: 1px solid rgba(13, 59, 102, 0.08);
  border-bottom: 1px solid rgba(13, 59, 102, 0.12);
  position: relative;
  z-index: 5;
}

.trust-feature-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border: 1px solid rgba(13, 59, 102, 0.12);
  border-left: 3px solid var(--orange);
  border-radius: 0px;
  box-shadow: 0 4px 15px rgba(13, 59, 102, 0.06);
  transition: var(--transition-fast);
}

.trust-feature-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(13, 59, 102, 0.14);
  border-color: rgba(13, 59, 102, 0.25);
  border-left-color: var(--orange);
}

.trust-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 0px;
  background: rgba(13, 59, 102, 0.06);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.trust-feature-box:hover .trust-feature-icon {
  background: var(--orange);
  color: var(--white);
}

.trust-feature-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0D3B66 !important;
  margin-bottom: 2px;
  line-height: 1.2;
}

.trust-feature-sub {
  font-size: 0.8rem;
  font-weight: 600;
  color: #475569 !important;
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 575.98px) {
  .trust-feature-bar {
    padding: 1.5rem 0;
  }

  .trust-feature-box {
    padding: 0.9rem 1rem;
    gap: 0.85rem;
  }

  .trust-feature-icon {
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
  }

  .trust-feature-title {
    font-size: 0.9rem;
  }

  .trust-feature-sub {
    font-size: 0.775rem;
  }
}

/* --------------------------------------------------------------------------
   13. STICKY FLOATING QUICK CONTACT DOCK (Lodha / Godrej / Prestige Style)
   -------------------------------------------------------------------------- */
.floating-contact-dock {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1040;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}

.dock-btn {
  width: 52px;
  height: 52px;
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.35rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
  position: relative;
  text-decoration: none;
}

.dock-btn-whatsapp {
  background: #25D366;
}

.dock-btn-whatsapp:hover {
  background: #1EBE57;
  transform: scale(1.1);
  color: var(--white);
}

.dock-btn-call {
  background: var(--orange);
}

.dock-btn-call:hover {
  background: var(--orange-hover);
  transform: scale(1.1);
  color: var(--white);
}

.dock-btn .dock-tooltip {
  position: absolute;
  right: 64px;
  background: var(--dark);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
}

.dock-btn:hover .dock-tooltip {
  opacity: 1;
  transform: translateX(-4px);
}

/* --------------------------------------------------------------------------
   14. ABOUT KONARK BUILDERS SECTION (FOUNDER SHOWCASE)
   -------------------------------------------------------------------------- */
.about-section {
  padding: 100px 0;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(13, 59, 102, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.founder-image-wrapper {
  position: relative;
  z-index: 2;
}

.founder-image-card {
  position: relative;
  width: 100%;
  border: 1px solid rgba(13, 59, 102, 0.12);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  border-radius: 0px;
  overflow: hidden;
}

.founder-image-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.founder-image-card:hover img {
  transform: scale(1.03);
}

.founder-experience-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(13, 59, 102, 0.15);
  border-left: 4px solid var(--orange);
  border-radius: 0px;
  padding: 1rem 1.4rem;
  box-shadow: 0 15px 35px rgba(13, 59, 102, 0.18);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.badge-exp-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.badge-exp-text {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.section-label-line {
  width: 24px;
  height: 2px;
  background-color: var(--orange);
  display: inline-block;
}

.about-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.about-intro-lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-intro-body {
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.founder-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem 1.25rem;
  margin-bottom: 2.25rem;
}

.highlight-check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition-fast);
}

.highlight-check-item:hover {
  transform: translateX(4px);
}

/* ==========================================================================
   FOUNDER EDITORIAL PROFILE CARD ("The Man Behind Konark")
   ========================================================================== */
.founder-profile-card {
  position: relative;
  max-width: 840px;
  background: var(--white);
  border: 1px solid rgba(13, 59, 102, 0.08);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 5vw, 4rem);
  overflow: hidden;
}

.founder-profile-quote-mark {
  position: absolute;
  top: 1.25rem;
  right: 1.75rem;
  font-size: 5.5rem;
  color: rgba(242, 106, 33, 0.07);
  line-height: 1;
  pointer-events: none;
}

.founder-pull-quote {
  position: relative;
  margin: 2.5rem 0;
  padding: 2rem clamp(1.5rem, 4vw, 2.75rem);
  background: rgba(242, 106, 33, 0.06);
  border-left: 4px solid var(--orange);
  border-radius: 4px;
}

.founder-pull-quote i {
  display: block;
  color: var(--orange);
  font-size: 1.4rem;
  margin-bottom: 0.65rem;
  opacity: 0.7;
}

.founder-pull-quote p {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 700;
  font-style: italic;
  color: var(--primary);
  line-height: 1.5;
  margin: 0;
}

.founder-recognition-strip {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(13, 59, 102, 0.1);
}

.founder-recognition-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.founder-recognition-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.recognition-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: var(--primary);
  background: rgba(13, 59, 102, 0.05);
  border: 1px solid rgba(13, 59, 102, 0.12);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.recognition-chip i {
  color: var(--orange);
  font-size: 0.85rem;
  transition: color 0.25s ease;
}

.recognition-chip:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}

.recognition-chip:hover i {
  color: #fff;
}

@media (max-width: 767.98px) {
  .founder-profile-quote-mark {
    font-size: 3.5rem;
  }
}

.highlight-check-item i {
  color: var(--orange);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Animations for Scroll Reveal */
.reveal-fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-in-view {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* --------------------------------------------------------------------------
   15. FEATURED PROJECTS SECTION (LODHA / SOBHA / PRESTIGE STYLE)
   -------------------------------------------------------------------------- */
.projects-section {
  padding: 100px 0;
  background-color: #FAFCFF;
  position: relative;
  overflow: hidden;
}

.projects-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(13, 59, 102, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.project-card-luxury {
  background: var(--white);
  border-radius: 24px;
  border: 1px solid rgba(13, 59, 102, 0.08);
  border-left: 5px solid var(--orange);
  box-shadow: 0 20px 50px rgba(13, 59, 102, 0.08);
  padding: 2.5rem;
  margin-bottom: 3.5rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.project-card-luxury:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 65px rgba(13, 59, 102, 0.14);
}

.project-image-box {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.project-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card-luxury:hover .project-image-box img {
  transform: scale(1.06);
}

/* Floating Glassmorphism Status Badge */
.project-glass-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(13, 59, 102, 0.12);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  z-index: 3;
}

.status-dot-pulse {
  width: 8px;
  height: 8px;
  background-color: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--orange);
  display: inline-block;
  animation: pulseLive 1.5s infinite;
}

.project-category-tag {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.project-name-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.project-description-text {
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.project-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1rem;
  margin-bottom: 2rem;
}

.project-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

.project-highlight-item i {
  color: var(--orange);
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* Interactive Project Filter Tabs */
.project-filter-btn {
  background: var(--white);
  color: var(--primary);
  border: 1px solid rgba(13, 59, 102, 0.15);
  padding: 0.65rem 1.6rem;
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 0px;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: 0 4px 12px rgba(13, 59, 102, 0.04);
}

.project-filter-btn:hover,
.project-filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 8px 22px rgba(13, 59, 102, 0.2);
}

/* Spec Strip Bar on Project Card */
.project-spec-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  background: rgba(13, 59, 102, 0.04);
  border: 1px solid rgba(13, 59, 102, 0.08);
  border-left: 3px solid var(--orange);
  padding: 0.85rem 1rem;
  margin-bottom: 1.5rem;
}

.spec-item-label {
  font-size: 0.675rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  display: block;
}

.spec-item-value {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

/* Completed Project Luxury Cards UI */
.completed-project-card-luxury {
  background: var(--white);
  border: 1px solid rgba(13, 59, 102, 0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(13, 59, 102, 0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}

.completed-project-card-luxury:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(13, 59, 102, 0.14);
  border-color: rgba(242, 106, 33, 0.4);
}

.completed-card-img-box {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
}

.completed-card-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.completed-project-card-luxury:hover .completed-card-img-box img {
  transform: scale(1.07);
}

.completed-badge-luxury {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(13, 59, 102, 0.12);
  color: var(--primary);
  font-size: 0.725rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

.completed-badge-dot {
  width: 8px;
  height: 8px;
  background-color: #10B981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

.completed-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: calc(100% - 230px);
}

.completed-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.completed-card-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.completed-card-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.3s ease;
  margin-top: auto;
}

.completed-project-card-luxury:hover .completed-card-link {
  gap: 0.7rem;
}

/* Fancybox Gallery Hover Overlay */
.transition-zoom {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.group-hover-box:hover .transition-zoom {
  transform: scale(1.08);
}

.gallery-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 59, 102, 0.45);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.group-hover-box:hover .gallery-hover-overlay {
  opacity: 1;
}

@media (max-width: 991.98px) {
  .about-section, .projects-section {
    padding: 70px 0;
  }
  
  .founder-image-card img {
    height: 420px;
  }
  
  .project-card-luxury {
    padding: 1.75rem;
    border-radius: 20px;
    margin-bottom: 2.5rem;
  }
  
  .project-image-box {
    height: 320px;
    border-radius: 16px;
    margin-bottom: 1.5rem;
  }
  
  .project-name-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 575.98px) {
  .projects-section {
    padding: 60px 0;
  }
  
  .founder-highlights-grid {
    grid-template-columns: 1fr;
  }
  
  .founder-image-card img {
    height: 340px;
  }
  
  .founder-experience-badge {
    bottom: 16px;
    left: 16px;
    padding: 0.75rem 1rem;
  }
  
  .badge-exp-number {
    font-size: 1.75rem;
  }
  
  .project-card-luxury {
    padding: 1.25rem;
  }
  
  .project-image-box {
    height: 240px;
  }
  
  .project-highlights-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile-First Touch Targets & Responsiveness Optimization (UI UX Pro Max & Accessibility) */
@media (max-width: 991.98px) {
  .navbar-konark .navbar-collapse {
    background: #061528;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.5rem;
    margin-top: 0.75rem;
    border-top: 2px solid var(--orange);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  }

  .navbar-konark .nav-link-custom {
    color: var(--white) !important;
    padding: 0.85rem 1rem !important;
    min-height: 44px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .navbar-toggler {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .project-filter-btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    font-size: 0.75rem;
  }

  .btn {
    min-height: 44px;
  }

  .floating-contact-dock .dock-btn {
    width: 52px;
    height: 52px;
    font-size: 1.35rem;
  }

  /* Mobile Drawer Dropdown Menu Integration (UI UX Pro Max) */
  .dropdown-menu-luxury {
    position: static !important;
    float: none !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: none !important;
    border-left: 2px solid var(--orange) !important;
    box-shadow: none !important;
    margin: 0.5rem 0 0.5rem 0.75rem !important;
    padding: 0.25rem 0 !important;
    border-radius: 4px !important;
  }

  .dropdown-menu-luxury::before {
    display: none !important;
  }

  .dropdown-menu-luxury .dropdown-item {
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.875rem;
    min-height: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .dropdown-menu-luxury .dropdown-item:hover,
  .dropdown-menu-luxury .dropdown-item:focus,
  .dropdown-menu-luxury .dropdown-item.active {
    background: rgba(242, 106, 33, 0.18) !important;
    color: var(--orange) !important;
    padding-left: 1.35rem !important;
  }

  .dropdown-submenu .dropdown-submenu-menu {
    position: static !important;
    float: none !important;
    background: rgba(0, 0, 0, 0.25) !important;
    border: none !important;
    border-left: 2px solid rgba(242, 106, 33, 0.6) !important;
    box-shadow: none !important;
    margin: 0.4rem 0 0.4rem 0.75rem !important;
    padding: 0.25rem 0 !important;
    border-radius: 4px !important;
  }

  .dropdown-submenu-menu::before {
    display: none !important;
  }

  /* Mobile Footer Bottom Clearance for Floating Contact Dock */
  footer.bg-primary-navy {
    padding-bottom: 95px !important;
  }

  .floating-contact-dock {
    bottom: 20px !important;
    right: 20px !important;
    z-index: 1060 !important;
  }
}

/* ==========================================================================
   MEDIA & PRESS RECOGNITION CAROUSEL / SLIDER
   ========================================================================== */
.media-carousel-section {
  position: relative;
  overflow: hidden;
}

.media-swiper-slider {
  padding: 15px 5px 45px 5px !important;
  overflow: hidden;
}

.media-slide-card {
  height: 100%;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(13, 59, 102, 0.08);
  box-shadow: 0 8px 25px rgba(13, 59, 102, 0.06);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.media-slide-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(13, 59, 102, 0.12);
  border-color: rgba(242, 106, 33, 0.3);
}

.media-slide-img-wrapper {
  position: relative;
  width: 100%;
  height: 380px;
  background: #f8fafc;
  overflow: hidden;
  display: block;
}

.media-slide-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.media-slide-card:hover .media-slide-img-wrapper img {
  transform: scale(1.05);
}

.media-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 26, 48, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.media-slide-card:hover .media-slide-overlay {
  opacity: 1;
}

.media-slide-overlay i {
  color: #ffffff;
  font-size: 1.75rem;
  background: rgba(242, 106, 33, 0.9);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.media-slide-card:hover .media-slide-overlay i {
  transform: scale(1);
}

.media-slide-body {
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.media-slide-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  margin-bottom: 0.6rem;
}

.media-slide-badge.badge-press {
  background: rgba(242, 106, 33, 0.12);
  color: var(--color-orange);
  border: 1px solid rgba(242, 106, 33, 0.25);
}

.media-slide-badge.badge-event {
  background: rgba(13, 59, 102, 0.1);
  color: var(--color-navy);
  border: 1px solid rgba(13, 59, 102, 0.2);
}

.media-slide-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.35;
  margin-bottom: 0.35rem;
  font-family: var(--font-heading);
}

.media-slide-desc {
  font-size: 0.835rem;
  color: #6c757d;
  margin-bottom: 0;
  line-height: 1.45;
}

/* Slider Controls */
.media-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.media-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--color-navy);
  background: #ffffff;
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.media-nav-btn:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: #ffffff;
  transform: scale(1.08);
}

.media-swiper-pagination {
  position: static !important;
  width: auto !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.media-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #cbd5e1;
  opacity: 1;
  transition: all 0.3s ease;
  border-radius: 50%;
  margin: 0 !important;
  cursor: pointer;
}

.media-swiper-pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 6px;
  background: var(--color-orange);
}

@media (max-width: 768px) {
  .media-slide-img-wrapper {
    height: 320px;
  }
  .media-slide-title {
    font-size: 0.98rem;
  }
}

@media (max-width: 480px) {
  .media-slide-img-wrapper {
    height: 280px;
  }
}

/* ==========================================================================
   MASTER 100% MOBILE RESPONSIVE DESIGN SYSTEM (ALL DEVICES)
   ========================================================================== */

/* 1. FLOATING QUICK CONTACT DOCK (WHATSAPP & DIRECT CALL FAB) */
.floating-contact-dock {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 1040;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.dock-btn {
  width: 52px;
  height: 52px;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  font-size: 1.35rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  text-decoration: none !important;
}

.dock-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  color: #ffffff !important;
}

.dock-btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.dock-btn-call {
  background: linear-gradient(135deg, #f26a21, #d85510);
}

.dock-tooltip {
  position: absolute;
  right: 62px;
  background: rgba(13, 59, 102, 0.95);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
  font-size: 0.775rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.25s ease;
  pointer-events: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.dock-btn:hover .dock-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* 2. TABLET & MOBILE NAVBAR BREAKPOINT (max-width: 991.98px) */
@media (max-width: 991.98px) {
  .navbar-konark {
    padding: 0.5rem 0 !important;
  }

  .navbar-brand img {
    height: 44px !important;
    width: auto !important;
  }

  .navbar-collapse {
    background: #ffffff;
    border-radius: 12px;
    margin-top: 0.75rem;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 16px 40px rgba(13, 59, 102, 0.16);
    border: 1px solid rgba(13, 59, 102, 0.1);
    max-height: 80vh;
    overflow-y: auto;
  }

  .nav-link-custom {
    padding: 0.75rem 0 !important;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--primary) !important;
  }

  .nav-link-custom.active {
    color: var(--orange) !important;
    font-weight: 700;
  }

  .dropdown-menu-luxury {
    border: none;
    box-shadow: none;
    background: rgba(13, 59, 102, 0.03);
    border-radius: 8px;
    padding: 0.5rem;
    margin: 0.5rem 0 !important;
  }

  .dropdown-submenu .dropdown-submenu-menu {
    position: static;
    border: none;
    box-shadow: none;
    background: rgba(242, 106, 33, 0.05);
    padding-left: 1rem;
    margin-top: 0.25rem;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .dropdown-menu-luxury .dropdown-item {
    padding: 0.6rem 0.85rem !important;
    font-size: 0.885rem;
  }
}

/* 3. MOBILE SCREENS (max-width: 767.98px) */
@media (max-width: 767.98px) {
  /* Global Typography */
  h1, .display-4, .display-5 {
    font-size: 1.85rem !important;
    line-height: 1.25 !important;
  }

  h2, .display-6 {
    font-size: 1.6rem !important;
    line-height: 1.3 !important;
  }

  h3, .h3 {
    font-size: 1.35rem !important;
  }

  .lead-text {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
  }

  .section-label {
    font-size: 0.7rem !important;
    letter-spacing: 1.5px !important;
  }

  .section-label-line {
    width: 20px !important;
  }

  /* Page Banners Top Safe Padding */
  .page-banner-section {
    padding-top: 90px !important;
    padding-bottom: 2rem !important;
    margin-top: 0 !important;
  }

  /* Hero Section */
  .hero-section {
    min-height: 100svh;
    padding-top: 90px !important;
    padding-bottom: 45px !important;
  }

  .hero-title {
    font-size: 2.2rem !important;
    line-height: 1.2 !important;
  }

  .hero-subheading {
    font-size: 0.85rem !important;
    gap: 0.35rem !important;
    flex-wrap: wrap !important;
  }

  .hero-badge {
    font-size: 0.685rem !important;
    padding: 0.35rem 0.75rem !important;
  }

  /* Project Spec Strips & Highlights */
  .project-spec-strip {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.5rem !important;
    padding: 0.75rem !important;
  }

  .spec-item-label {
    font-size: 0.675rem !important;
  }

  .spec-item-value {
    font-size: 0.825rem !important;
  }

  .project-highlights-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.5rem !important;
    margin-bottom: 1.25rem !important;
  }

  .project-highlight-item {
    font-size: 0.775rem !important;
    padding: 0.35rem 0.5rem !important;
  }

  /* Project Cards Image */
  .project-image-box img,
  .project-item-card img.card-img-top {
    height: 220px !important;
    object-fit: cover !important;
  }

  /* Gallery Filter Buttons */
  .project-filter-btn {
    font-size: 0.75rem !important;
    padding: 0.4rem 0.85rem !important;
  }

  /* Footer Padding */
  footer {
    padding-bottom: 80px !important; /* Safe clearance for floating contact dock */
  }
}

/* 4. EXTRA SMALL MOBILE SCREENS (max-width: 575.98px) */
@media (max-width: 575.98px) {
  /* Floating Contact Dock */
  .floating-contact-dock {
    bottom: 16px;
    right: 14px;
    gap: 10px;
  }

  .dock-btn {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .dock-tooltip {
    display: none !important;
  }

  /* Buttons & Action Containers */
  .btn-orange-primary,
  .btn-navy-outline,
  .btn-white-outline,
  .btn-secondary {
    width: 100% !important;
    padding: 0.8rem 1.25rem !important;
    font-size: 0.825rem !important;
    letter-spacing: 0.5px !important;
    text-align: center !important;
    justify-content: center !important;
  }

  .d-flex.flex-wrap.gap-3,
  .d-flex.align-items-center.gap-3.flex-wrap,
  .d-flex.align-items-center.gap-3 {
    flex-direction: column !important;
    width: 100% !important;
    gap: 0.75rem !important;
  }

  .d-flex.flex-wrap.gap-3 > *,
  .d-flex.align-items-center.gap-3.flex-wrap > *,
  .d-flex.align-items-center.gap-3 > * {
    width: 100% !important;
  }

  /* Modal Enquire */
  .modal-dialog {
    margin: 0.75rem !important;
  }

  .modal-content {
    border-radius: 12px !important;
  }

  .modal-header {
    padding: 1rem 1.25rem !important;
  }

  .modal-body {
    padding: 1.25rem !important;
  }

  .form-control-luxury {
    font-size: 0.885rem !important;
    padding: 0.65rem 0.85rem !important;
  }

  /* Key Metrics 4-Box Grid on Project Pages */
  .row.g-3 > .col-6.col-sm-3 {
    width: 50% !important;
  }
}

/* ==========================================================================
   VIDEO REELS & CINEMATIC WALKTHROUGH CARDS (Mobile Optimized & Responsive)
   ========================================================================== */
.reel-card-wrapper {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  background: #0a192f;
  aspect-ratio: 9 / 16;
  max-height: 480px;
  display: block;
  text-decoration: none !important;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.reel-card-wrapper:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 107, 0, 0.25);
}

.reel-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.reel-card-wrapper:hover .reel-card-img {
  transform: scale(1.08);
}

.reel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 45%,
    rgba(10, 25, 47, 0.45) 70%,
    rgba(10, 25, 47, 0.95) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  z-index: 2;
  transition: background 0.3s ease;
}

.reel-card-wrapper:hover .reel-overlay {
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 40%,
    rgba(10, 25, 47, 0.55) 65%,
    rgba(10, 25, 47, 0.98) 100%
  );
}

.reel-play-btn {
  width: 54px;
  height: 54px;
  background: rgba(255, 107, 0, 0.9);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin: auto auto 1rem auto;
  box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7);
  transition: all 0.3s ease;
  position: relative;
}

.reel-play-btn i {
  margin-left: 3px;
}

.reel-card-wrapper:hover .reel-play-btn {
  background: var(--primary-orange, #ff6b00);
  transform: scale(1.12);
  animation: reelPulse 1.5s infinite;
  box-shadow: 0 0 25px rgba(255, 107, 0, 0.8);
}

@keyframes reelPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(255, 107, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
  }
}

.reel-content-bottom {
  text-align: left;
}

.reel-tag-small {
  color: #ff6b00;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
  display: block;
}

.reel-title {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  line-height: 1.3;
  font-family: var(--font-heading, 'Playfair Display', serif);
}

.reel-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  margin-bottom: 0;
  line-height: 1.3;
}

.reel-cta-hint {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.45rem;
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.3s ease;
}

.reel-card-wrapper:hover .reel-cta-hint {
  opacity: 1;
  transform: translateY(0);
  color: #ff6b00;
}

/* Tablet & Mobile Breakpoints (max-width: 991px) */
@media (max-width: 991px) {
  .reel-card-wrapper {
    border-radius: 14px;
    max-height: 420px;
  }
  .reel-overlay {
    padding: 0.95rem 0.85rem;
  }
  .reel-play-btn {
    width: 46px;
    height: 46px;
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
  }
  .reel-tag-small {
    font-size: 0.65rem;
    letter-spacing: 0.5px;
  }
  .reel-title {
    font-size: 0.885rem;
    line-height: 1.25;
  }
  .reel-desc {
    font-size: 0.725rem;
  }
  .reel-cta-hint {
    opacity: 0.9;
    transform: none;
    font-size: 0.7rem;
    color: #ff6b00;
  }
}

/* Small Smartphone Breakpoints (max-width: 575px) */
@media (max-width: 575px) {
  .reel-card-wrapper {
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  }
  .reel-overlay {
    padding: 0.75rem 0.65rem;
  }
  .reel-play-btn {
    width: 38px;
    height: 38px;
    font-size: 0.885rem;
    margin-bottom: 0.5rem;
  }
  .reel-tag-small {
    font-size: 0.6rem;
    margin-bottom: 0.15rem;
  }
  .reel-title {
    font-size: 0.785rem;
    line-height: 1.2;
    margin-bottom: 0.15rem;
  }
  .reel-desc {
    font-size: 0.685rem;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .reel-cta-hint {
    font-size: 0.65rem;
    margin-top: 0.25rem;
  }
}

/* ==========================================================================
   CUSTOMER TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  position: relative;
}

.testimonial-card-luxury {
  background: #FFFFFF;
  border: 1px solid rgba(13, 59, 102, 0.08);
  box-shadow: 0 10px 30px rgba(13, 59, 102, 0.05);
  border-radius: 4px;
  padding: 2rem 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  border-top: 3px solid transparent;
}

.testimonial-card-luxury:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(13, 59, 102, 0.12);
  border-top-color: var(--orange);
}

.testimonial-quote-icon {
  font-size: 2.25rem;
  color: var(--orange);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.testimonial-author-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(13, 59, 102, 0.06);
}

.testimonial-avatar-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange);
  box-shadow: 0 4px 10px rgba(242, 106, 33, 0.2);
  flex-shrink: 0;
}

.testimonial-avatar-initial {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  border: 2px solid var(--orange);
  box-shadow: 0 4px 10px rgba(242, 106, 33, 0.2);
  flex-shrink: 0;
}

.testimonial-author-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.15rem;
  line-height: 1.3;
}

.testimonial-author-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.3;
}

.testimonial-stars {
  color: #F59E0B;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  display: flex;
  gap: 3px;
}

.testimonial-badge-tag {
  display: inline-block;
  font-size: 0.725rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.25rem 0.6rem;
  background: rgba(242, 106, 33, 0.08);
  color: var(--orange);
  border-radius: 2px;
  margin-bottom: 1rem;
}

/* Testimonial Swiper Slider & Controls */
.testimonial-swiper-slider {
  width: 100%;
  padding: 10px 5px 25px 5px;
}

.testimonial-slider-controls {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 15px !important;
  margin-top: 1.5rem !important;
  width: 100% !important;
}

.testimonial-nav-btn {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  max-width: 44px !important;
  min-height: 44px !important;
  max-height: 44px !important;
  flex: 0 0 44px !important;
  flex-shrink: 0 !important;
  border-radius: 50% !important;
  border: 1px solid rgba(13, 59, 102, 0.15) !important;
  background: #ffffff !important;
  color: var(--primary-navy, #0d3b66) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.95rem !important;
  padding: 0 !important;
  line-height: 1 !important;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(13, 59, 102, 0.08);
}

.testimonial-nav-btn:hover {
  background: var(--orange, #f26a21) !important;
  border-color: var(--orange, #f26a21) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(242, 106, 33, 0.3);
}

.testimonial-swiper-pagination {
  position: static !important;
  width: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  margin: 0 8px !important;
}

.testimonial-swiper-pagination .swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background: #cbd5e1 !important;
  opacity: 1 !important;
  transition: all 0.3s ease;
  border-radius: 50% !important;
  margin: 0 !important;
  cursor: pointer;
}

.testimonial-swiper-pagination .swiper-pagination-bullet-active {
  width: 28px !important;
  border-radius: 6px !important;
  background: var(--orange, #f26a21) !important;
}

@media (max-width: 576px) {
  .testimonial-trust-bar {
    border-radius: 8px;
    padding: 1rem !important;
    text-align: center;
  }
}

/* ==========================================================================
   CONTENT PROTECTION (Disable Text Selection, Dragging, & Copying)
   ========================================================================== */
html, body {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
  -webkit-touch-callout: none !important;
}

/* Allow text selection inside inputs and textareas */
input, textarea, select, [contenteditable="true"] {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
}

/* Prevent image dragging */
img, svg {
  -webkit-user-drag: none !important;
  -khtml-user-drag: none !important;
  -moz-user-drag: none !important;
  -o-user-drag: none !important;
  user-drag: none !important;
  pointer-events: none;
}

/* Preserve pointer events for interactive elements */
a, button, input, select, textarea, .btn, [role="button"], .swiper-button-next, .swiper-button-prev, .swiper-pagination-bullet {
  pointer-events: auto !important;
}


