:root {
  --color-bg-primary: #050B16;
  --color-bg-secondary: #081426;
  --color-surface: rgba(11, 29, 56, 0.65);
  --color-surface-solid: #0B1D38;
  --color-accent-primary: #006CFF;
  --color-accent-secondary: #00B8FF;
  --color-text-primary: #F7FAFF;
  --color-text-secondary: #B8C3D6;
  --color-border-glass: rgba(100, 180, 255, 0.22);
  --shadow-blue-soft: 0 12px 40px rgba(0, 108, 255, 0.18);
  --shadow-blue-glow: 0 0 28px rgba(0, 140, 255, 0.30);
  --gradient-primary: linear-gradient(135deg, #006CFF 0%, #00B8FF 100%);
  --gradient-background: radial-gradient(circle at 60% 25%, rgba(0, 108, 255, 0.16), transparent 38%), linear-gradient(180deg, #081426 0%, #050B16 100%);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  color: var(--color-text-secondary);
  background: var(--gradient-background);
  background-attachment: fixed;
  line-height: 1.6;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
input, textarea {
  -webkit-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.skip-link { position: absolute; top: -100px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Top Bar */
.top-bar {
  background-color: rgba(5, 11, 22, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--color-text-secondary);
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border-glass);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-contact { display: flex; gap: 20px; }
.top-contact a { display: flex; align-items: center; gap: 8px; transition: color 0.3s; }
.top-contact a:hover { color: var(--color-accent-secondary); text-shadow: var(--shadow-blue-glow); }
.top-socials { display: flex; gap: 15px; }
.top-socials a:hover { color: var(--color-accent-secondary); text-shadow: var(--shadow-blue-glow); }

/* Header */
.main-header {
  background-color: rgba(8, 20, 38, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border-glass);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: 'Libre Baskerville', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-primary);
}
.logo i { color: var(--color-accent-secondary); text-shadow: var(--shadow-blue-glow); font-size: 32px; }
.nav-menu { display: flex; gap: 35px; align-items: center; }
.nav-menu a {
  font-weight: 500;
  color: var(--color-text-primary);
  font-size: 15px;
  transition: color 0.3s, text-shadow 0.3s;
}
.nav-menu a:hover { color: var(--color-accent-secondary); text-shadow: var(--shadow-blue-glow); }
.btn-primary {
  background: var(--gradient-primary);
  color: var(--color-text-primary);
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
  display: inline-block;
  border: 1px solid var(--color-border-glass);
  box-shadow: var(--shadow-blue-soft);
}
.btn-primary:hover {
  box-shadow: var(--shadow-blue-glow);
  transform: translateY(-2px);
}
.btn-outline {
  background-color: transparent;
  color: var(--color-text-primary);
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
  display: inline-block;
  border: 1px solid var(--color-border-glass);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: var(--color-surface);
  border-color: var(--color-accent-secondary);
  box-shadow: var(--shadow-blue-glow);
}

/* Hero Section */
.hero {
  background: transparent; /* inherits body gradient */
  color: var(--color-text-primary);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle at 70% 30%, rgba(0,184,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-content .eyebrow {
  color: var(--color-accent-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: block;
  text-shadow: var(--shadow-blue-glow);
}
.hero-content h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: 56px;
  line-height: 1.2;
  margin: 0 0 25px;
  color: var(--color-text-primary);
}
.hero-content p {
  font-size: 18px;
  color: var(--color-text-secondary);
  margin-bottom: 40px;
  max-width: 500px;
}
.hero-buttons { display: flex; gap: 20px; }
.hero-image-wrap { position: relative; }
.hero-image {
  border-radius: 8px;
  border-bottom: 4px solid var(--color-accent-primary);
  border-left: 4px solid var(--color-accent-secondary);
  box-shadow: var(--shadow-blue-soft);
}
.experience-badge {
  position: absolute;
  bottom: 30px;
  left: -40px;
  background: var(--color-surface);
  backdrop-filter: blur(12px);
  border: 1px solid var(--color-border-glass);
  color: var(--color-text-primary);
  padding: 20px;
  border-radius: 8px;
  box-shadow: var(--shadow-blue-glow);
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
}
.experience-badge i { font-size: 32px; color: var(--color-accent-secondary); text-shadow: var(--shadow-blue-glow); }

/* Practice Areas */
.practice-areas {
  padding: 100px 0;
  background: transparent;
  text-align: center;
  position: relative;
}
.practice-areas::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(0,108,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.section-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 40px;
  color: var(--color-text-primary);
  margin: 0 0 15px;
  position: relative;
}
.section-subtitle {
  color: var(--color-text-secondary);
  font-size: 18px;
  margin-bottom: 60px;
  position: relative;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  position: relative;
}
.service-card {
  background: var(--color-surface);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-border-glass);
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.5);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  text-align: center;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-blue-glow);
  border-color: var(--color-accent-secondary);
}
.icon-wrap {
  width: 80px;
  height: 80px;
  background: rgba(0, 108, 255, 0.1);
  border: 1px solid var(--color-accent-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: inset 0 0 15px rgba(0,184,255,0.2);
}
.icon-wrap i { font-size: 32px; color: var(--color-accent-secondary); text-shadow: var(--shadow-blue-glow); }
.service-card h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 22px;
  color: var(--color-text-primary);
  margin: 0 0 15px;
}
.service-card p { color: var(--color-text-secondary); margin-bottom: 25px; }
.service-link {
  color: var(--color-accent-secondary);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: gap 0.3s, text-shadow 0.3s;
}
.service-card:hover .service-link { gap: 15px; text-shadow: var(--shadow-blue-glow); }

/* About Section */
.about-section {
  padding: 100px 0;
  background: transparent;
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image { position: relative; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-blue-soft); border: 1px solid var(--color-border-glass); }
.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,184,255,0.1), transparent);
    pointer-events: none;
}
.about-content h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 40px;
  color: var(--color-text-primary);
  margin: 0 0 25px;
}
.about-content p { color: var(--color-text-secondary); margin-bottom: 30px; font-size: 16px; }
.about-features { display: flex; flex-direction: column; gap: 20px; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.feature-icon {
  color: var(--color-accent-secondary);
  font-size: 24px;
  margin-top: 5px;
  text-shadow: var(--shadow-blue-glow);
}
.feature-text h4 { margin: 0 0 5px; color: var(--color-text-primary); font-size: 18px; }
.feature-text p { margin: 0; color: var(--color-text-secondary); font-size: 15px; }

/* CTA Banner */
.cta-banner {
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border-glass);
  border-bottom: 1px solid var(--color-border-glass);
  padding: 80px 0;
  text-align: center;
  color: var(--color-text-primary);
  position: relative;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0,184,255,0.1), transparent 60%);
    pointer-events: none;
}
.cta-banner h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 40px;
  margin: 0 0 30px;
  position: relative;
}

/* Footer */
.site-footer {
  background: var(--color-bg-primary);
  color: var(--color-text-secondary);
  padding: 80px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer-logo { font-family: 'Libre Baskerville', serif; font-size: 24px; font-weight: 700; color: var(--color-text-primary); display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.footer-logo i { color: var(--color-accent-secondary); text-shadow: var(--shadow-blue-glow); }
.footer-text { color: var(--color-text-secondary); margin-bottom: 25px; }
.footer-heading { font-size: 18px; color: var(--color-text-primary); margin: 0 0 25px; font-weight: 600; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: var(--color-text-secondary); transition: color 0.3s, text-shadow 0.3s; }
.footer-links a:hover { color: var(--color-accent-secondary); text-shadow: var(--shadow-blue-glow); }
.contact-info { list-style: none; padding: 0; margin: 0; }
.contact-info li { display: flex; gap: 15px; margin-bottom: 15px; color: var(--color-text-secondary); }
.contact-info i { color: var(--color-accent-secondary); font-size: 18px; text-shadow: var(--shadow-blue-glow); }
.footer-form input, .footer-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid var(--color-border-glass);
  background: var(--color-surface);
  color: var(--color-text-primary);
  border-radius: 4px;
  backdrop-filter: blur(4px);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.footer-form input:focus, .footer-form textarea:focus {
    outline: none;
    border-color: var(--color-accent-secondary);
    box-shadow: var(--shadow-blue-glow);
}
.footer-form input::placeholder, .footer-form textarea::placeholder { color: rgba(184, 195, 214, 0.5); }
.footer-form button {
  width: 100%;
  border: none;
}
.footer-bottom { border-top: 1px solid var(--color-border-glass); padding-top: 20px; display: flex; justify-content: space-between; color: rgba(184, 195, 214, 0.6); font-size: 14px; }

/* Responsive */
@media (max-width: 992px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-content h1 { font-size: 46px; }
  .hero-content p { margin: 0 auto 40px; }
  .hero-buttons { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .experience-badge { left: 20px; }
}
@media (max-width: 768px) {
  .top-bar { display: none; }
  .nav-menu { display: none; }
  .hero-content h1 { font-size: 36px; }
  .footer-grid { grid-template-columns: 1fr; }
}

.site-logo {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

/* Floating Action Buttons */
.fab-wrapper {
    position: fixed;
    right: max(20px, env(safe-area-inset-right));
    bottom: max(24px, env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    z-index: 9990;
    pointer-events: none;
}

.fab-btn {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    flex-shrink: 0;
    cursor: pointer;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: white;
}

.fab-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.6);
    color: white;
}

.ai-btn {
    background: var(--color-accent-primary);
    box-shadow: 0 0 15px var(--color-accent-primary);
}

.wa-btn {
    background: #25D366;
}

/* AI Chat Panel */
.ai-chat-panel {
    position: fixed;
    right: max(20px, env(safe-area-inset-right));
    bottom: calc(max(24px, env(safe-area-inset-bottom)) + 140px);
    width: 380px;
    max-width: calc(100vw - 24px);
    height: min(500px, calc(100vh - 100px));
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    z-index: 9990;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    overflow: hidden;
}

.ai-chat-panel[hidden] {
    display: none !important;
}

.ai-chat-header {
    background: var(--color-surface-solid);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-border);
}

.ai-chat-header h4 {
    margin: 0;
    color: var(--color-text-primary);
    font-size: 16px;
}

.ai-chat-header button {
    background: none;
    border: none;
    color: var(--color-text-secondary);
    font-size: 18px;
    cursor: pointer;
}

.ai-chat-body {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
}

.chat-msg {
    margin-bottom: 12px;
    max-width: 85%;
    clear: both;
}
.chat-msg p {
    margin: 0;
}
.bot-msg {
    float: left;
    background: rgba(0, 108, 255, 0.1);
    color: var(--color-text-primary);
    padding: 12px;
    border-radius: 8px 8px 8px 0;
    border: 1px solid var(--color-border);
    font-size: 14px;
    line-height: 1.5;
}
.user-msg {
    float: right;
    background: var(--color-accent-primary);
    color: white;
    padding: 12px;
    border-radius: 8px 8px 0 8px;
    font-size: 14px;
    line-height: 1.5;
}
.typing-indicator span {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--color-text-secondary);
    border-radius: 50%;
    margin-right: 4px;
    animation: typing 1.4s infinite both;
}
.typing-indicator span:nth-child(1) { animation-delay: 0s; }
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}
.chat-cta {
    margin-top: 10px;
}
.chat-cta p {
    font-weight: bold;
    margin-bottom: 10px;
}
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.cta-btn {
    display: block;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease;
}
.primary-cta {
    background: var(--color-accent-primary);
    color: white;
}
.primary-cta:hover {
    background: var(--color-accent-secondary);
    color: white;
}
.wa-cta {
    background: #25D366;
    color: white;
}
.wa-cta:hover {
    background: #1DA851;
    color: white;
}
.phone-cta {
    background: var(--color-surface-solid);
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
}
.phone-cta:hover {
    background: rgba(255, 255, 255, 0.1);
}

.ai-chat-footer {
    padding: 15px;
    border-top: 1px solid var(--color-border);
    display: flex;
    gap: 10px;
}

.ai-chat-footer input {
    flex: 1;
    background: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 10px 15px;
    color: var(--color-text-primary);
}

.ai-chat-footer button {
    background: var(--color-accent-primary);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Service Modal Styles */
.service-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(4px);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.service-modal-overlay[hidden] {
    display: none;
    opacity: 0;
}

.service-modal-content {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    padding: 30px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    animation: modalPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPop {
    0% { transform: scale(0.9); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.service-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--color-text-secondary);
    font-size: 20px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.service-modal-close:hover {
    color: var(--color-accent-primary);
}

.service-modal-header {
    text-align: center;
    margin-bottom: 20px;
}

.service-modal-header img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 2px solid var(--color-accent-primary);
    box-shadow: var(--shadow-blue-glow);
}

.service-modal-header h2 {
    color: var(--color-text-primary);
    font-family: var(--font-serif);
    font-size: 24px;
}

.service-modal-body p {
    color: var(--color-text-secondary);
    line-height: 1.6;
    font-size: 15px;
    text-align: justify;
}

@media (max-width: 768px) {
    .fab-wrapper {
        right: max(12px, env(safe-area-inset-right));
        bottom: max(16px, env(safe-area-inset-bottom));
        gap: 12px;
    }
    
    .ai-chat-panel {
        right: max(12px, env(safe-area-inset-right));
        bottom: calc(max(16px, env(safe-area-inset-bottom)) + 140px);
        width: calc(100vw - 24px);
    }
}

/* -------------------------------------------
   Mobile Responsiveness & Structural Fixes
------------------------------------------- */

/* Global Fixes */
html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

/* Mobile-Specific Overrides */
@media (max-width: 767px) {
    
    /* Top Bar - Hide or compact */
    .top-contact span {
        display: none; /* Hide text, keep icons on small mobile if needed, or just hide top bar */
    }
    .top-bar .container {
        flex-direction: column;
        gap: 8px;
    }

    /* Header Compactness */
    .main-header {
        position: sticky;
        top: 0;
        z-index: 10000;
    }
    .header-inner {
        height: auto;
        min-height: 64px;
        padding: 8px 16px;
    }

    /* Logo Scaling */
    .logo {
        gap: 8px;
        font-size: 18px; /* scaled down from 24px */
    }
    .site-logo {
        width: 36px;
        height: auto;
        object-fit: contain;
    }
    .logo-text {
        font-size: 18px !important;
        white-space: nowrap; /* Prevent wrapping */
    }

    @media (max-width: 374px) {
        .logo-text {
            font-size: 15px !important;
        }
        .site-logo {
            width: 30px;
        }
    }

    /* Hide Desktop Nav & Book Button from main header row */
    .nav-menu {
        display: none; /* Desktop nav hidden */
    }
    .header-inner > .btn-primary {
        display: none; /* Hide the big CTA button in the header */
    }

    /* Hamburger Menu Button */
    .mobile-nav-toggle {
        display: block;
        background: transparent;
        border: none;
        color: var(--color-text-primary);
        font-size: 24px;
        cursor: pointer;
        padding: 8px;
    }
    .mobile-nav-toggle:focus {
        outline: 2px solid var(--color-accent-primary);
        border-radius: 4px;
    }

    /* Mobile Navigation Drawer */
    .mobile-nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        z-index: 10010;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
    }
    .mobile-nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-nav-drawer {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        max-width: 85vw;
        height: 100vh;
        background: var(--color-bg-secondary);
        z-index: 10020;
        box-shadow: -5px 0 20px rgba(0,0,0,0.5);
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        overflow-y: auto;
    }
    .mobile-nav-drawer.active {
        right: 0;
    }

    .mobile-nav-header {
        display: flex;
        justify-content: flex-end;
        padding: 16px;
        border-bottom: 1px solid var(--color-border-glass);
    }
    .mobile-nav-close {
        background: transparent;
        border: none;
        color: var(--color-text-primary);
        font-size: 24px;
        cursor: pointer;
        padding: 8px;
    }

    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        padding: 20px 16px;
        gap: 16px;
    }
    .mobile-nav-links a {
        font-size: 18px;
        font-weight: 500;
        color: var(--color-text-primary);
        text-decoration: none;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        padding-bottom: 12px;
    }
    .mobile-nav-links a:last-child {
        border-bottom: none;
    }
    .mobile-nav-links .btn-primary {
        text-align: center;
        padding: 14px;
        border-bottom: none;
        margin-top: 10px;
    }

    /* Hero Section */
    .hero {
        padding: 64px 0;
    }
    .hero .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-content h1 {
        font-size: clamp(38px, 11vw, 54px);
        line-height: 1.05;
        margin-bottom: 16px;
    }
    .hero-content .eyebrow {
        font-size: clamp(13px, 3.6vw, 16px);
    }
    .hero-content p {
        font-size: clamp(17px, 4.8vw, 21px);
        line-height: 1.6;
        margin-bottom: 24px;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    .hero-buttons a {
        width: 100%;
        text-align: center;
        padding: 14px 18px;
        font-size: 16px;
        min-height: 54px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-image-wrap {
        margin-top: 40px;
    }

    /* Floating Buttons Adjustments */
    .fab-wrapper {
        z-index: 9000; /* Ensure below nav overlay */
    }
    .fab {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
}

/* Hide Hamburger on Desktop */
@media (min-width: 768px) {
    .mobile-nav-toggle, .mobile-nav-overlay, .mobile-nav-drawer {
        display: none !important;
    }
}