/* style.css - Minimal & Modern (Apple Style) */
:root {
  /* Restrained Colors */
  --color-primary: #1F2269; /* Used for text primarily */
  --color-accent: #FFD500;
  --color-gold: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
  
  /* Extremely Clean Neutrals */
  --color-white: #ffffff;
  --color-bg-main: #ffffff;
  --color-bg-light: #f5f5f7; /* Apple style soft grey */
  --color-text-main: #1d1d1f;
  --color-text-muted: #86868b;
  --color-border: #d2d2d7;
  
  /* Lighter Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Subtle Utilities */
  --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 4px 14px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.06);
}

/* Base Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background-color: var(--color-bg-main);
  color: var(--color-text-main);
  line-height: 1.5;
  overflow-x: hidden;
  font-weight: 400;
}
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-bg-light { background-color: var(--color-bg-light); }

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 500; letter-spacing: -0.02em; color: var(--color-text-main); }
.section-title { font-size: clamp(2.5rem, 4vw, 3.5rem); margin-bottom: 1rem; }
.lead-text { font-size: 1.25rem; color: var(--color-text-main); margin-bottom: 1rem; font-weight: 500; }
.body-text { font-size: 1.125rem; color: var(--color-text-muted); }
.text-center { text-align: center; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.8rem 1.8rem; border-radius: 30px; font-weight: 500;
  cursor: pointer; transition: var(--transition); text-decoration: none; border: none; font-size: 1rem;
}
.btn-sm { padding: 0.6rem 1.5rem; font-size: 0.95rem; }
.btn-primary { background-color: var(--color-primary); color: var(--color-white); position: relative; overflow: hidden; }
.btn-primary::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: all 0.6s ease; transform: skewX(-20deg);
}
.btn-primary:hover::after { left: 150%; }
.btn-primary:hover { transform: scale(1.02); box-shadow: var(--shadow-sm); }
.btn-text { background: none; color: var(--color-primary); padding: 0; font-weight: 500; }
.btn-text span { transition: transform 0.3s ease; display: inline-block; }
.btn-text:hover span { transform: translateX(5px); }

/* Navbar */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; padding: 1.5rem 0;
  background-color: rgba(255,255,255,0.8); backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px);
  z-index: 1000; transition: var(--transition); border-bottom: 1px solid transparent;
}
.navbar.scrolled { padding: 1rem 0; border-bottom: 1px solid var(--color-border); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo-img { height: 85px; width: auto; object-fit: contain; transform: scale(1.2); mix-blend-mode: multiply; margin: -10px 0; }
.nav-links { display: flex; gap: 3rem; list-style: none; }
.nav-links a { font-size: 0.9rem; color: var(--color-text-main); text-decoration: none; font-weight: 400; transition: var(--transition); opacity: 0.8; }
.nav-links a:hover { opacity: 1; }

/* Floating Action Button */
.floating-btn {
  position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px;
  background-color: var(--color-primary); color: var(--color-white);
  border-radius: 50%; display: flex; justify-content: center; align-items: center;
  box-shadow: var(--shadow-lg); z-index: 999;
  transition: var(--transition); opacity: 0; pointer-events: none; transform: translateY(20px);
}
.floating-btn.visible { opacity: 1; pointer-events: auto; transform: translateY(0); animation: floatBtnPulse 3s infinite; }
.floating-btn:hover { transform: scale(1.05); animation: none; }
@keyframes floatBtnPulse { 0% { box-shadow: 0 0 0 0 rgba(31,34,105,0.4); } 70% { box-shadow: 0 0 0 15px rgba(31,34,105,0); } 100% { box-shadow: 0 0 0 0 rgba(31,34,105,0); } }

/* Split Hero */
.hero { position: relative; padding: 12rem 0 6rem; min-height: 90vh; display: flex; align-items: center; overflow: hidden; }
.ambient-orbs { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5; mix-blend-mode: multiply; }
.orb-1 { width: 400px; height: 400px; background: rgba(255, 213, 0, 0.4); top: -100px; left: -100px; animation: drift 15s infinite alternate ease-in-out; }
.orb-2 { width: 500px; height: 500px; background: rgba(31, 34, 105, 0.2); bottom: 10%; right: 10%; animation: drift2 20s infinite alternate-reverse ease-in-out; }
@keyframes drift { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(150px, 100px) scale(1.2); } }
@keyframes drift2 { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(-100px, -150px) scale(1.1); } }
.hero-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-kicker { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-text-muted); margin-bottom: 1rem; font-weight: 500; }
.hero-title { font-size: clamp(3.5rem, 5vw, 4.5rem); line-height: 1.05; margin-bottom: 1.5rem; }
.hero-subtitle { font-size: 1.25rem; color: var(--color-text-muted); margin-bottom: 2.5rem; max-width: 400px; }
.hero-actions { display: flex; gap: 2rem; align-items: center; }
.visual-wrapper { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; }
.hero-img { width: 100%; height: 100%; object-fit: cover; animation: kenBurns 20s infinite alternate linear; }
@keyframes kenBurns { 0% { transform: scale(1.02); } 100% { transform: scale(1.15); } }

/* Tracking Bar (Minimal) */
.tracking-bar { padding: 2rem 0; margin-top: -3rem; position: relative; z-index: 10; }
.tracking-content { background: var(--color-white); border-radius: 100px; padding: 0.5rem 0.5rem 0.5rem 2rem; display: flex; align-items: center; justify-content: space-between; box-shadow: var(--shadow-sm); max-width: 600px; margin: 0 auto; border: 1px solid var(--color-border); }
.tracking-label { font-size: 0.9rem; font-weight: 500; color: var(--color-text-muted); }
.tracking-form { display: flex; gap: 0.5rem; flex: 1; margin-left: 1rem; }
.tracking-form input { flex: 1; border: none; outline: none; font-family: var(--font-body); font-size: 1rem; background: transparent; }
.tracking-form button { background: var(--color-primary); color: var(--color-white); border: none; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.tracking-form button:hover { transform: scale(1.05); }

/* About Section */
.about { padding: 5rem 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-img { width: 100%; border-radius: 24px; box-shadow: var(--shadow-sm); aspect-ratio: 1/1; object-fit: cover; }
.stats-row { display: flex; gap: 3rem; margin-top: 3rem; }
.stat-number { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 400; color: var(--color-text-main); display: block; }
.stat-label { color: var(--color-text-muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }

/* Clean Services */
.services { padding: 5rem 0; }
.section-header { margin-bottom: 5rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.service-card { background: var(--color-bg-light); padding: 3rem; border-radius: 24px; transition: var(--transition); border: 1px solid transparent; overflow: hidden; position: relative; }
.service-card:hover { border-color: rgba(255, 213, 0, 0.3); background: var(--color-white); box-shadow: 0 10px 40px rgba(255, 213, 0, 0.05); transform: translateY(-5px); }
.icon-box { margin-bottom: 2rem; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 1rem; transition: color 0.3s ease; }
.service-card:hover h3 { color: var(--color-primary); }
.service-card > p { color: var(--color-text-main); font-size: 1.05rem; line-height: 1.6; transition: color 0.3s ease; }
.seo-drawer { max-height: 0; opacity: 0; overflow: hidden; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); margin-top: 0; }
.seo-drawer p { font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.5; padding-top: 1.5rem; border-top: 1px solid var(--color-border); }
.service-card:hover .seo-drawer { max-height: 300px; opacity: 1; margin-top: 1rem; }

/* Minimal Timeline */
.process { padding: 5rem 0; }
.minimal-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; max-width: 1000px; margin: 0 auto; }
.timeline-step { position: relative; padding-top: 2rem; border-top: 1px solid var(--color-border); }
.step-num { position: absolute; top: -12px; left: 0; background: var(--color-bg-light); padding-right: 1rem; font-family: var(--font-heading); font-size: 1.5rem; color: var(--color-text-muted); font-weight: 300; }
.timeline-step h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.timeline-step p { color: var(--color-text-muted); font-size: 0.95rem; }

/* Trust Badges & Clean Testimonials */
.trust-section { padding: 8rem 0; overflow: hidden; background: var(--color-white); }
.badges-row { display: flex; justify-content: center; gap: 3rem; margin-bottom: 5rem; flex-wrap: wrap; }
.clean-badge { font-size: 0.95rem; color: var(--color-text-muted); display: flex; align-items: center; gap: 0.5rem; }
.badge-icon { color: var(--color-text-main); font-weight: bold; }
.testimonial-slider-container { width: 100%; overflow: hidden; position: relative; padding: 2rem 0; }
.testimonial-track { display: flex; gap: 2rem; width: max-content; animation: scrollLeft 40s linear infinite; }
.testimonial-track:hover { animation-play-state: paused; }
.testimonial-card { width: 450px; padding: 3rem; background: var(--color-bg-light); border-radius: 24px; }
.testimonial-card p { font-size: 1.25rem; line-height: 1.4; color: var(--color-text-main); margin-bottom: 2rem; font-weight: 300; }
.testimonial-card h4 { font-size: 0.95rem; color: var(--color-text-muted); font-weight: 400; }
@keyframes scrollLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Clean Form Wizard */
.contact { padding: 5rem 0; }
.clean-wizard-card { background: var(--color-white); border-radius: 32px; padding: 4rem; max-width: 700px; margin: 0 auto; box-shadow: var(--shadow-sm); border: 1px solid var(--color-border); }
.wizard-header { margin-bottom: 3rem; text-align: center; }
.wizard-header p { color: var(--color-text-muted); }
.wizard-progress { height: 4px; background: var(--color-bg-light); border-radius: 2px; margin-bottom: 3rem; overflow: hidden; }
.progress-bar { height: 100%; background: var(--color-primary); transition: var(--transition); }
.wizard-step { display: none; animation: fadeIn 0.4s ease; }
.wizard-step.active { display: block; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.85rem; color: var(--color-text-muted); margin-bottom: 0.5rem; }
.form-group input, .clean-select { width: 100%; padding: 1rem; border: 1px solid var(--color-border); border-radius: 12px; font-family: var(--font-body); font-size: 1rem; background: transparent; outline: none; transition: var(--transition); }
.form-group input:focus, .clean-select:focus { border-color: var(--color-text-main); }
.form-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 2rem; }

/* SEO Service Drawer */
.seo-drawer { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--color-border); }
.seo-drawer p { font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.6; }
.seo-drawer strong { color: var(--color-text-main); font-weight: 500; }

/* FAQ Section */
.faq-section { padding: 8rem 0; background-color: var(--color-white); }
.faq-accordion { max-width: 800px; margin: 3rem auto 0; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-question { width: 100%; text-align: left; padding: 1.5rem 0; background: none; border: none; font-size: 1.15rem; font-family: var(--font-heading); color: var(--color-text-main); cursor: pointer; display: flex; justify-content: space-between; align-items: center; outline: none; }
.faq-question::after { content: '+'; font-size: 1.5rem; font-weight: 300; transition: var(--transition); color: var(--color-text-muted); }
.faq-question.active::after { transform: rotate(45deg); color: var(--color-text-main); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.faq-answer p { padding-bottom: 1.5rem; color: var(--color-text-muted); font-size: 1rem; line-height: 1.6; }
.faq-answer strong { color: var(--color-text-main); font-weight: 500; }

/* Areas We Serve */
.areas-section { padding: 6rem 0; }
.areas-title { text-align: center; font-size: 1.5rem; margin-bottom: 3rem; color: var(--color-text-main); }
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; max-width: 1000px; margin: 0 auto; }
.area-column h4 { font-size: 1.1rem; margin-bottom: 1.5rem; color: var(--color-text-main); }
.area-column a { display: block; color: var(--color-text-muted); text-decoration: none; font-size: 0.9rem; margin-bottom: 0.8rem; transition: var(--transition); }
.area-column a:hover { color: var(--color-primary); transform: translateX(3px); }

/* Footer */
.footer { padding: 4rem 0; background: var(--color-white); border-top: 1px solid var(--color-border); }
.footer-container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 2rem; }
.footer-logo { height: 60px; object-fit: contain; margin-bottom: 0.5rem; }
.footer-desc { font-size: 0.85rem; color: var(--color-text-muted); }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { color: var(--color-text-muted); text-decoration: none; font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--color-text-main); }
.footer-copy { font-size: 0.85rem; color: var(--color-text-muted); }

/* Ultra-Premium Reveal Animations */
.scroll-reveal { 
  opacity: 0; 
  filter: blur(12px);
  transform: translateY(40px); 
  transition: all 1.4s cubic-bezier(0.16, 1, 0.3, 1); 
}
.scroll-reveal.active { 
  opacity: 1; 
  filter: blur(0);
  transform: translateY(0); 
}
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* Commercial Clients Grid */
.commercial-clients { padding: 8rem 0; background-color: var(--color-bg-main); }
.clients-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 2rem; margin-top: 4rem; }
.client-logo {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
}
.client-logo img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.4s ease;
  transform: scale(1.2);
}
.client-logo:hover {
  background: var(--color-white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transform: translateY(-5px);
}
.client-logo:hover img {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.35);
}

/* Custom Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}
.float-anim {
  animation: float 6s ease-in-out infinite;
}
@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(0,0,0, 0.1); transform: scale(1); }
  70% { box-shadow: 0 0 0 15px rgba(0,0,0, 0); transform: scale(1.1); }
  100% { box-shadow: 0 0 0 0 rgba(0,0,0, 0); transform: scale(1); }
}
.pulse-anim {
  animation: pulseGlow 2.5s infinite cubic-bezier(0.66, 0, 0, 1);
}

/* Story & Timeline */
.legacy-story { padding: 8rem 0; background: var(--color-bg-main); overflow: hidden; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; margin-bottom: 8rem; }
/* Timeline Section */
.timeline-container { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 1000px; margin: 0 auto; padding: 2rem 0; }
.timeline-item { position: relative; width: 100%; perspective: 1000px; }
.timeline-content { 
  background: var(--color-bg-light); 
  padding: 2rem; 
  border-radius: 16px; 
  border: 1px solid var(--color-border); 
  box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
  animation: floatCard 6s ease-in-out infinite; 
  will-change: transform;
}
.timeline-item:nth-child(odd) .timeline-content { animation-delay: 0s; }
.timeline-item:nth-child(even) .timeline-content { animation-delay: 3s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0px) rotateX(0deg) rotateY(0deg); }
  50% { transform: translateY(-12px) rotateX(2deg) rotateY(-2deg); box-shadow: 0 15px 35px rgba(0,0,0,0.08); }
}
.timeline-content h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 0.5rem; }
.timeline-content p { color: var(--color-text-light); line-height: 1.6; }
.timeline-container::after { content: ''; display: table; clear: both; }

/* Responsive */
@media (max-width: 992px) {
  .hero-container, .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .minimal-timeline { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  /* Mobile Spacing Overhaul */
  .about, .services, .process, .contact, .premium-bento, .areas-section { padding: 3rem 0; }
  
  .hero-title { font-size: 2.5rem; }
  .nav-links { display: none; }
  .services-grid, .minimal-timeline { grid-template-columns: 1fr; }
  .clean-wizard-card { padding: 2rem; }
  .footer-container { flex-direction: column; align-items: flex-start; }
  
  /* Fix Mobile Stats & Image */
  .stats-row { flex-wrap: wrap; gap: 1.5rem; }
  .stat-item { flex: 1 1 45%; }
  .about-img { aspect-ratio: auto; height: 300px; }
  
  /* Bento Grid Mobile Height Fix */
  .bento-grid { grid-auto-rows: minmax(180px, auto); gap: 1rem; }
  .bento-card { padding: 2rem; }
}

/* Global Premium Animations */
.mini-info { width: 100%; height: 120px; background: rgba(0,0,0,0.02); border-radius: 12px; margin-bottom: 1.5rem; display: flex; justify-content: center; align-items: center; position: relative; overflow: hidden; border: 1px solid rgba(0,0,0,0.05); }

/* The Origin Point */
.anim-origin { position: relative; width: 60px; height: 60px; display: flex; justify-content: center; align-items: center; }
.origin-core { width: 12px; height: 12px; background: var(--color-accent); border-radius: 50%; box-shadow: 0 0 15px var(--color-accent); position: relative; z-index: 2; }
.origin-ripple { position: absolute; width: 100%; height: 100%; border: 1px solid var(--color-accent); border-radius: 50%; opacity: 0; animation: rippleOut 3s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
.origin-ripple:nth-child(2) { animation-delay: 1s; }
.origin-ripple:nth-child(3) { animation-delay: 2s; }
@keyframes rippleOut { 0% { transform: scale(0.2); opacity: 0.8; border-width: 2px; } 100% { transform: scale(1.5); opacity: 0; border-width: 0px; } }

/* Thematic SVG Animations */
.anim-svg {
  width: 60px;
  height: 60px;
  stroke: #BF953F;
  filter: drop-shadow(0 0 8px rgba(191, 149, 63, 0.4));
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: drawIcon 4s ease-in-out infinite alternate;
}
.anim-house { stroke-dasharray: 150; stroke-dashoffset: 150; }
.anim-building { stroke-dasharray: 200; stroke-dashoffset: 200; }
.anim-car { stroke-dasharray: 180; stroke-dashoffset: 180; }

@keyframes drawIcon {
  0% { stroke-dashoffset: 150; fill: transparent; }
  50% { stroke-dashoffset: 0; fill: transparent; }
  100% { stroke-dashoffset: 0; fill: rgba(191, 149, 63, 0.1); }
}

/* Premium Bento Grid */
.premium-bento { padding: 5rem 0; background: var(--color-bg-main); }
.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 2rem; }
.bento-card { background: var(--color-white); border-radius: 32px; padding: 3rem; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; position: relative; border: 1px solid var(--color-border); transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1); box-shadow: var(--shadow-sm); }
.bento-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 30px 60px rgba(0,0,0,0.08); border-color: rgba(255, 213, 0, 0.4); }
.bento-card h3 { font-size: 1.8rem; margin-bottom: 1rem; color: var(--color-text-main); }
.bento-card p { font-size: 1.1rem; color: var(--color-text-muted); line-height: 1.6; max-width: 90%; }
.card-large { grid-column: span 2; grid-row: span 2; background: linear-gradient(135deg, var(--color-white) 0%, var(--color-bg-light) 100%); }
.card-tall { grid-column: span 2; grid-row: span 2; }
.card-wide { grid-column: span 4; grid-row: span 1; flex-direction: row; align-items: center; }
.card-wide .bento-content { width: 50%; }
.card-wide .bento-visual { width: 50%; display: flex; justify-content: flex-end; }

/* Bento Visuals & Animations */
.bento-visual { display: flex; justify-content: center; align-items: center; height: 100%; flex-grow: 1; }
/* Shield Animation */
/* Premium Glassmorphic Icons */
.glass-icon {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(191, 149, 63, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 32px rgba(191, 149, 63, 0.15);
  animation: floatIcon 4s ease-in-out infinite alternate;
  position: relative;
  z-index: 2;
}
.glass-icon svg {
  width: 36px;
  height: 36px;
  stroke: #BF953F;
  filter: drop-shadow(0 4px 8px rgba(191, 149, 63, 0.4));
}
@keyframes floatIcon {
  0% { transform: translateY(0px); box-shadow: 0 8px 32px rgba(191, 149, 63, 0.15); }
  100% { transform: translateY(-10px); box-shadow: 0 16px 40px rgba(191, 149, 63, 0.25); }
}

/* Linear-Style Mouse-Tracking Spotlight */
.bento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(
    800px circle at var(--mouse-x, 0) var(--mouse-y, 0),
    rgba(191, 149, 63, 0.5),
    transparent 40%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 10;
  pointer-events: none;
}
.bento-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px circle at var(--mouse-x, 0) var(--mouse-y, 0),
    rgba(191, 149, 63, 0.08),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 0;
  pointer-events: none;
}
.bento-card:hover::before,
.bento-card:hover::after {
  opacity: 1;
}

/* Ensure content is above the spotlight background */
.bento-content, .bento-visual {
  position: relative;
  z-index: 1;
}

/* Bento Responsive */
@media (max-width: 992px) {
  .bento-grid { grid-template-columns: 1fr; grid-auto-rows: minmax(300px, auto); }
  .card-large, .card-tall, .card-wide { grid-column: span 1; grid-row: span 1; flex-direction: column; }
  .card-wide .bento-content, .card-wide .bento-visual { width: 100%; }
}

/* Premium Gold Animated Border Effect */
.gold-animated-border::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(from 0deg, transparent 50%, #BF953F 75%, #FCF6BA 90%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: rotateBorder 4s linear infinite;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 10;
}
.gold-animated-border:hover::after {
  opacity: 1;
}
@keyframes rotateBorder {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Apply overrides for existing elements */
.bento-card:hover { border-color: transparent; box-shadow: 0 30px 60px rgba(191, 149, 63, 0.15); }
.service-card:hover { border-color: transparent; box-shadow: 0 10px 40px rgba(191, 149, 63, 0.1); }

