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

:root {
  --primary-red: #D90429; /* Vibrant Red from BRICKONN logo */
  --text-dark: #1A1A1A;
  --text-grey: #6B7280;
  --bg-white: #FFFFFF;
  --bg-off: #F7F5F1; /* Premium Champagne Off-White */
  --border-light: #D4D4D6;
  --radius-lg: 12px;
  --shadow-premium: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -4px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

/* Progress Bar */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--primary-red);
  z-index: 10000;
  transition: width 0.1s ease;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 0;
  transition: padding 0.4s cubic-bezier(0.25, 1, 0.5, 1), background 0.4s ease;
  background: transparent;
}

header.scrolled {
  padding: 4px 0;
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-3d-wrapper {
  perspective: 1000px;
  display: inline-block;
  text-decoration: none;
  transform-style: preserve-3d;
}

.brand-logo-img {
  height: 150px;
  width: auto;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s ease, height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  filter: drop-shadow(0px 5px 8px rgba(0,0,0,0.12)) drop-shadow(0px 12px 24px rgba(0,0,0,0.08));
  transform-style: preserve-3d;
}

header.scrolled .brand-logo-img {
  height: 150px;
}

.logo-3d-wrapper:hover .brand-logo-img {
  transform: rotateX(15deg) rotateY(-15deg) translateZ(15px) scale(1.08);
  filter: drop-shadow(0px 10px 15px rgba(197, 22, 36, 0.2)) drop-shadow(0px 25px 35px rgba(0,0,0,0.15));
}

/* Footer Luxury Logo Card Style */
.footer-logo-card {
  background: white;
  padding: 18px 24px;
  border-radius: 12px;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  perspective: 1000px;
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease;
}

.footer-logo-card img {
  height: 95px;
  width: auto;
  display: block;
  filter: drop-shadow(0px 4px 6px rgba(0,0,0,0.08));
}

.footer-logo-card:hover {
  transform: rotateX(12deg) rotateY(-12deg) translateZ(15px) scale(1.05);
  box-shadow: 0 20px 40px rgba(197, 22, 36, 0.25), 0 15px 25px rgba(0,0,0,0.3);
}

.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
}

.nav-links a {
  text-decoration: none !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0.05em !important;
  color: #333 !important;
  border-bottom: 2px solid transparent !important;
  padding-bottom: 5px !important;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

header.scrolled .nav-links a {
  color: #111 !important;
}

.nav-links a:hover, .nav-links a.active {
  font-weight: 600 !important;
  color: var(--primary-red) !important;
  border-bottom: 2px solid var(--primary-red) !important;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: white;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
  z-index: -1;
}

/* Luxury Grid Pattern */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 72px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero p {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* Premium Shiny Text Effects */
.shiny-text-dark {
  background: linear-gradient(
    110deg,
    #111111 0%,
    #444444 15%,
    #111111 30%,
    #111111 100%
  );
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shine-text 5s linear infinite;
  display: inline-block;
  text-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05);
}

.shiny-text-red {
  background: linear-gradient(
    110deg,
    var(--primary-red) 0%,
    #ff4d4d 15%,
    var(--primary-red) 30%,
    var(--primary-red) 100%
  );
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shine-text 5s linear infinite;
  animation-delay: 2.5s; /* Offset for dynamic feel */
  display: inline-block;
  text-shadow: 0px 4px 20px rgba(217, 4, 41, 0.15);
}

@keyframes shine-text {
  0% { background-position: -100% center; }
  100% { background-position: 200% center; }
}

/* Section Spacing */
section {
  padding: 120px 0;
}


.section-title {
  text-align: center;
  margin-bottom: 80px;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-title p {
  color: var(--text-grey);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* Services Section (Premium Dark Theme) */
#services {
  background-color: #111111;
  color: white;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

#services .section-title h2 {
  color: white;
}

#services .section-title p {
  color: rgba(255,255,255,0.6);
}

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

.s-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 60px 40px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.s-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--primary-red);
  transform: translateY(-5px);
}

.s-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--primary-red);
  transition: height 0.4s ease;
}

.s-card:hover::before {
  height: 100%;
}

.s-icon {
  font-size: 40px;
  color: var(--primary-red);
  margin-bottom: 30px;
  transition: transform 0.4s ease;
}

.s-card:hover .s-icon {
  transform: scale(1.1);
}

.s-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: white;
}

.s-card p {
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  line-height: 1.8;
}

/* Premium Cards */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: var(--transition);
  box-shadow: var(--shadow-premium);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px rgba(0,0,0,0.08);
  border-color: var(--primary-red);
}

.card-icon {
  width: 64px;
  height: 64px;
  background: var(--bg-off);
  color: var(--primary-red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
}

.card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.card p {
  color: var(--text-grey);
  line-height: 1.6;
}

/* Project Cards (Sharp & Premium) */
.p-card {
  background: white;
  border: 1px solid #E5E5E5;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.p-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-color: var(--primary-red);
}

.p-img {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.p-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.p-tag {
  position: absolute;
  top: 0;
  left: 0;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 10;
}

.p-content {
  padding: 32px;
  flex-grow: 1;
}

.p-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-red);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.p-card:hover::after {
  transform: scaleX(1);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

.btn-red {
  background: var(--primary-red);
  color: white;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  animation: glow-pulse 2s infinite ease-in-out;
}

@keyframes glow-pulse {
  0% { box-shadow: 0 0 0px rgba(217, 4, 41, 0); }
  50% { box-shadow: 0 0 20px rgba(217, 4, 41, 0.4); }
  100% { box-shadow: 0 0 0px rgba(217, 4, 41, 0); }
}

.btn-red::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 20%;
  height: 200%;
  background: rgba(255, 255, 255, 0.4);
  transform: rotate(30deg);
  pointer-events: none;
  z-index: -1;
  filter: blur(5px);
  animation: shine-loop 3s infinite ease-in-out;
}

@keyframes shine-loop {
  0% { left: -100%; }
  20% { left: 140%; }
  100% { left: 140%; }
}

.btn-red:hover {
  background: #B3000E;
  box-shadow: 0 10px 20px rgba(217, 4, 41, 0.4);
  transform: scale(1.02);
}

.btn-outline {
  border: 1.5px solid var(--text-dark);
  color: var(--text-dark);
}

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

/* Footer */
footer {
  background: var(--text-dark);
  color: white;
  padding: 100px 0 40px;
}

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

footer a {
  color: #888888 !important;
  text-decoration: none !important;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 14px;
}

footer a:hover {
  color: var(--primary-red) !important;
  transform: translateX(8px);
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer li {
  margin-bottom: 12px;
}

.footer-bottom {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: var(--text-grey);
  font-size: 14px;
}

/* Premium WhatsApp Concierge */
.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background: #111;
  color: white;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 15px;
  text-decoration: none;
  z-index: 9999;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  border-left: 3px solid var(--primary-red);
  overflow: hidden;
  max-width: 55px;
}

.whatsapp-float:hover {
  max-width: 280px;
  gap: 15px;
  padding-right: 30px;
  background: var(--primary-red);
  border-left-color: white;
}

.whatsapp-float i {
  font-size: 24px;
  min-width: 25px;
  text-align: center;
}

.whatsapp-text {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.whatsapp-float:hover .whatsapp-text {
  opacity: 1;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  animation: shine-loop 3s infinite;
}

/* Testimonials Section */
#testimonials {
  padding: 160px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 80px;
}

.t-card {
  padding: 60px 40px;
  background: #F9F9F9;
  border: 1px solid #EEE;
  position: relative;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.t-card:hover {
  background: #111;
  color: white;
  transform: translateY(-10px);
  border-color: var(--primary-red);
}

.t-card i.quote-icon {
  font-size: 50px;
  color: var(--primary-red);
  opacity: 0.2;
  position: absolute;
  top: 40px;
  right: 40px;
}

.t-card p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.t-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.t-user img {
  width: 50px;
  height: 50px;
  border-radius: 0;
  object-fit: cover;
  border: 2px solid var(--primary-red);
}

.t-user h4 {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 1px;
  margin: 0;
}

.t-user span {
  display: block;
  font-size: 12px;
  color: var(--primary-red);
  font-weight: 700;
}

.t-card:hover .t-user h4 { color: white; }
.t-card:hover p { color: rgba(255,255,255,0.8); }


/* Testimonial Spotlight (Dome Style) */
.t-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.t-modal.active {
  display: flex;
  opacity: 1;
}

.t-scrim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(20px);
}

.t-spotlight {
  background: white;
  width: 90%;
  max-width: 1000px;
  padding: 100px 80px;
  position: relative;
  z-index: 2;
  transform: scale(0.8) translateY(50px);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 50px 100px rgba(0,0,0,0.5);
  border-left: 10px solid var(--primary-red);
}

.t-modal.active .t-spotlight {
  transform: scale(1) translateY(0);
}

.t-spotlight i.large-quote {
  font-size: 120px;
  color: var(--primary-red);
  position: absolute;
  top: -60px;
  right: 60px;
  opacity: 0.1;
}

.t-spotlight p {
  font-size: 32px;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 50px;
  color: #111;
}

.t-close {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 24px;
  cursor: pointer;
  color: #111;
  transition: transform 0.3s ease;
}

.t-close:hover {
  transform: rotate(90deg) scale(1.2);
  color: var(--primary-red);
}

.t-card {
  cursor: pointer;
}

@media (max-width: 768px) {
  .t-spotlight { padding: 60px 30px; }
  .t-spotlight p { font-size: 22px; }
}


/* === COMPREHENSIVE RESPONSIVE DESIGN === */
@media (max-width: 1200px) {
  .hero h1 span { font-size: 90px !important; }
}

@media (max-width: 1024px) {
  /* Grid Resets */
  .grid, .t-grid, .s-grid, .footer-grid { grid-template-columns: repeat(2, 1fr) !important; }
  [style*="grid-template-columns: repeat(3, 1fr)"] { grid-template-columns: repeat(2, 1fr) !important; }
  [style*="grid-template-columns: 1fr 1.2fr"], [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; gap: 40px !important; }
  [style*="grid-template-columns: 2fr 1fr 1fr 1fr"] { grid-template-columns: repeat(2, 1fr) !important; }
  .hero h1 span { font-size: 70px !important; }
  .navbar { flex-wrap: nowrap; justify-content: space-between !important; align-items: center; padding: 15px 20px !important; }
  .logo-container { width: auto; display: block; }
  .hamburger-menu { display: block !important; }
  .nav-links { display: none !important; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: rgba(255,255,255,0.98); padding: 20px 0 !important; box-shadow: 0 10px 30px rgba(0,0,0,0.1); gap: 15px !important; z-index: 99; }
  .nav-links.active { display: flex !important; }
  .nav-links li { white-space: normal; text-align: center; }
  .nav-links li[style*="color: #ccc"] { display: none !important; } /* Hide separators */
  .header-action { display: none !important; }
}

@media (max-width: 768px) {
  .brand-logo-img { height: 80px !important; }
  header.scrolled .brand-logo-img { height: 80px !important; }
  
  .grid, .t-grid, .s-grid, .footer-grid { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns: repeat(3, 1fr)"], [style*="grid-template-columns: repeat(2, 1fr)"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns: 2fr 1fr 1fr 1fr"] { grid-template-columns: 1fr !important; }
  
  section { padding: 60px 0 !important; }
  .hero h1 span { font-size: 46px !important; }
  .hero p { font-size: 16px !important; }
  h2[style*="font-size: 56px"], h2[style*="font-size: 50px"], h2[style*="font-size: 48px"] { font-size: 32px !important; }
  .container { padding: 0 20px !important; }
  
  .counter-box { text-align: center !important; border-left: none !important; border-top: 3px solid var(--primary-red); padding-left: 0 !important; padding-top: 20px !important; }
  [style*="display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 80px;"] { grid-template-columns: 1fr !important; gap: 30px !important; margin-top: 40px !important; }
  
  .footer-grid > div { text-align: center; }
  
  .t-spotlight { padding: 40px 20px; }
  .t-spotlight p { font-size: 18px; margin-bottom: 30px; }
  .t-spotlight i.large-quote { font-size: 60px; right: 20px; top: -30px; }
}

/* Cinematic Video Lightbox */
.video-modal {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 10000;
  display: none;
  align-items: center; justify-content: center;
  opacity: 0;
  transition: all 0.5s ease;
}
.video-modal.active {
  display: flex;
  opacity: 1;
}
.video-modal-scrim {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(10px);
}
.video-modal-container {
  position: relative;
  width: 90%; max-width: 1000px;
  z-index: 2;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
  transform: scale(0.9);
  transition: transform 0.5s ease;
}
.video-modal.active .video-modal-container {
  transform: scale(1);
}
.video-wrapper {
  position: relative;
  width: 100%; height: 100%;
}
.video-modal-close {
  position: absolute;
  top: -40px; right: 0;
  background: transparent;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
  z-index: 3;
}

/* Luxury Welcome Promo Banner */
.banner-modal {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 10000;
  display: none;
  align-items: center; justify-content: center;
  opacity: 0;
  transition: all 0.5s ease;
}
.banner-modal.active {
  display: flex;
  opacity: 1;
}
.banner-modal-scrim {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
}
.banner-modal-card {
  position: relative;
  width: 90%; max-width: 600px;
  z-index: 2;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
  transform: translateY(50px) scale(0.95);
  transition: all 0.5s ease;
}
.banner-modal.active .banner-modal-card {
  transform: translateY(0) scale(1);
}
.banner-modal-close {
  position: absolute;
  top: 15px; right: 15px;
  background: rgba(0,0,0,0.5);
  border: none;
  color: white;
  width: 35px; height: 35px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  transition: background 0.3s ease;
}
.banner-modal-close:hover {
  background: var(--primary-red);
}
.banner-flyer-img-container {
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
}
.banner-flyer-img {
  width: 100%;
  height: auto;
  display: block;
}
.banner-flyer-actions {
  display: flex;
  background: #111;
}
.banner-flyer-actions a {
  flex: 1;
  text-align: center;
  padding: 15px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background 0.3s ease;
}
.banner-flyer-actions a:hover {
  background: var(--primary-red);
}
.banner-flyer-actions a:last-child {
  border-right: none;
}
.banner-btn-wa i, .banner-btn-call i, .banner-btn-email i {
  margin-right: 5px;
}

/* Video Trigger Button (Hero Section) */
.btn-video {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 8px;
  padding: 22px 50px;
  font-size: 15px;
  background: transparent;
  color: white;
  border: 1.5px solid white;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.btn-video:hover {
  background: white;
  color: #111;
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-video i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.btn-video:hover i {
  transform: scale(1.1);
  color: var(--primary-red);
}

/* AGGRESSIVE MOBILE GRID OVERRIDES FOR INDEX.HTML INLINE STYLES */
@media (max-width: 1024px) {
    [style*="display: grid"] { grid-template-columns: 1fr !important; gap: 30px !important; }
    [style*="display: flex"] { flex-wrap: wrap !important; }
    [style*="padding: 140px 0"] { padding: 60px 0 !important; }
    [style*="padding: 100px 0"] { padding: 60px 0 !important; }
    [style*="padding: 60px"] { padding: 30px !important; }
    [style*="font-size: 56px"] { font-size: 36px !important; line-height: 1.2 !important; }
    [style*="font-size: 48px"] { font-size: 32px !important; line-height: 1.2 !important; }
    [style*="font-size: 24px"] { font-size: 20px !important; }
    
    /* Contact Section Fixes */
    #contact > .container > .reveal { grid-template-columns: 1fr !important; gap: 40px !important; }
    #contact div[style*="padding: 60px"] { padding: 30px !important; }
}
@media (max-width: 768px) {
    .hero-eyebrow { font-size: 11px !important; }
    .hero h1 { font-size: 40px !important; }
    .nav { padding: 15px !important; flex-wrap: wrap; }
}
