/* FullHouseMoving - main.css (built from provided CSS, with WP tweaks) */

/* =========================================
   1. VARIABLES & LUXURY SETTINGS
   ========================================= */
:root {
    --royal-blue: #001530;       
    --royal-light: #0d2546;      
    --dark-navy: #000812;        
    --gold: #C5A059;
    --gold-hover: #b08d48;
    --gold-gradient: linear-gradient(135deg, #C5A059 0%, #E6C786 50%, #C5A059 100%);
    --white: #ffffff;
    --off-white: #fcfcfc;        
    --text-dark: #1a1a1a;
    --text-light-gray: rgba(255, 255, 255, 0.7);
    --border-light: rgba(255, 255, 255, 0.1);

    --font-heading: 'Playfair Display', serif; 
    --font-body: 'Inter', sans-serif;          

    --transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.04);
    --shadow-luxury: 0 25px 60px rgba(0, 21, 48, 0.15);
    --shadow-gold: 0 12px 35px rgba(197, 160, 89, 0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body { 
    font-family: var(--font-body); 
    color: var(--text-dark); 
    background-color: var(--white); 
    line-height: 1.6; 
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased; 
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; }
a { color: inherit; }
.entry-content a { text-decoration: underline; }

/* =========================================
   2. TYPOGRAPHY & UTILITIES
   ========================================= */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); color: var(--royal-blue); line-height: 1.15; font-weight: 700; }
h1 { font-size: 4.8rem; color: var(--white); letter-spacing: -1px; }
h2 { font-size: 3.2rem; margin-bottom: 20px; letter-spacing: -0.5px; }
h3 { font-size: 2rem; }

.section-header h2 { font-size: 4.2rem; letter-spacing: -1px; }

.text-gold { color: var(--gold) !important; }
.text-white { color: var(--white) !important; }
.text-light-gray { color: var(--text-light-gray); }
.bg-royal { background-color: var(--royal-blue); }
.bg-off-white { background-color: var(--off-white); }
.bg-dark-navy { background-color: var(--dark-navy); }
.text-center { text-align: center; }

.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.italic-font { font-style: italic; font-weight: 400; letter-spacing: 0; }
.inter-font { font-family: 'Inter', sans-serif; font-weight: 700; letter-spacing: -1px; }

.overline { 
    display: block; font-size: 0.85rem; text-transform: uppercase; 
    letter-spacing: 4px; color: var(--gold); margin-bottom: 15px; font-weight: 600; 
    font-family: var(--font-body);
}

.divider-center { width: 80px; height: 2px; background: var(--gold-gradient); margin: 25px auto 0; }

.text-gradient {
    background: var(--gold-gradient); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-size: 200% auto;
    animation: shineText 6s linear infinite; display: inline-block;
}
@keyframes shineText { to { background-position: 200% center; } }

/* Container */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; width: 100%; }
.container-fluid { max-width: 1600px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 110px 0; }

/* WP content */
.entry-content > * + * { margin-top: 1.1rem; }
.entry-content h2, .entry-content h3 { margin-top: 2rem; }
.entry-content ul, .entry-content ol { padding-left: 1.2rem; }
.entry-content blockquote { border-left: 4px solid var(--gold); padding: 12px 18px; background: rgba(0,21,48,.03); }

/* =========================================
   3. BUTTONS
   ========================================= */
.btn-gold-solid {
    display: inline-block; padding: 18px 42px; background: var(--gold-gradient); color: var(--royal-blue);
    text-transform: uppercase; font-size: 0.8rem; font-weight: 700; letter-spacing: 2px;
    text-decoration: none; transition: var(--transition); border: none; cursor: pointer;
}
.btn-gold-solid:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); color: var(--white); }

.btn-glass {
    display: inline-block; padding: 18px 42px; background: rgba(255,255,255,0.05); color: var(--white);
    border: 1px solid rgba(255,255,255,0.3); text-transform: uppercase; font-weight: 600;
    letter-spacing: 2px; text-decoration: none; backdrop-filter: blur(8px); transition: var(--transition);
}
.btn-glass:hover { background: var(--white); color: var(--royal-blue); border-color: var(--white); }

.btn-gold-outline {
    display: inline-block; padding: 16px 35px; background: transparent; color: var(--gold);
    border: 1px solid var(--gold); text-transform: uppercase; font-size: 0.8rem; font-weight: 600;
    letter-spacing: 2px; text-decoration: none; transition: var(--transition);
}
.btn-gold-outline:hover { background: var(--gold); color: var(--white); box-shadow: var(--shadow-gold); }

/* =========================================
   4. NAVIGATION
   ========================================= */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 25px 0; transition: var(--transition);
    background: linear-gradient(180deg, rgba(0,21,48,0.95) 0%, rgba(0,0,0,0) 100%);
}
.navbar.scrolled {
    background: rgba(0, 21, 48, 0.98); padding: 15px 0; backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2); border-bottom: 1px solid var(--border-light);
}
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; gap: 18px; }

.brand-logo { display:flex; align-items:center; text-decoration:none; }
.brand-logo.custom-logo-link{ text-decoration:none; }
.brand-logo .custom-logo-link{ text-decoration:none; }
.brand-fallback{ color:#fff; font-weight:700; letter-spacing:1px; }
.brand-logo img { height: 65px; width: auto; transition: var(--transition); filter: brightness(0) invert(1); }
.brand-logo .custom-logo { height: 65px; width:auto; transition: var(--transition); filter: brightness(0) invert(1); }
.navbar.scrolled .brand-logo img,
.navbar.scrolled .brand-logo .custom-logo { height: 50px; }

.nav-links-desktop { display: flex; gap: 45px; align-items:center; }
.nav-links-desktop a {
    color: rgba(255,255,255,0.85); text-decoration: none; text-transform: uppercase;
    font-size: 0.75rem; letter-spacing: 2px; font-weight: 500; transition: var(--transition);
    position: relative;
}
.nav-links-desktop a::after {
    content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 1px;
    background: var(--gold); transition: var(--transition);
}
.nav-links-desktop a:hover { color: var(--gold); }
.nav-links-desktop a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 30px; }
.phone-link { display: flex; align-items: center; gap: 10px; color: var(--white); text-decoration: none; white-space:nowrap; }
.phone-icon {
    width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center; color: var(--gold); transition: var(--transition);
}
.phone-number { font-weight: 500; font-size: 0.95rem; letter-spacing: 1px; }
.phone-link:hover .phone-icon { background: var(--gold); color: var(--royal-blue); border-color: var(--gold); }

.btn-premium {
    padding: 14px 30px; border: 1px solid var(--gold); background: transparent; color: var(--white);
    text-transform: uppercase; font-size: 0.75rem; font-weight: 600; letter-spacing: 2px;
    text-decoration: none; transition: var(--transition); position: relative; overflow: hidden;
}
.btn-premium::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: var(--gold-gradient); transition: var(--transition); z-index: -1;
}
.btn-premium:hover::before { left: 0; }
.btn-premium:hover { border-color: transparent; box-shadow: var(--shadow-gold); }

.menu-toggle { display: none; cursor: pointer; flex-direction: column; gap: 6px; z-index: 1001; }
.menu-toggle .line { width: 30px; height: 2px; background: var(--gold); transition: 0.3s; transform-origin: center;}

/* =========================================
   5. FLOATING ELEMENTS
   ========================================= */
.floating-actions-container {
    position: fixed; bottom: 30px; right: 30px; 
    display: flex; flex-direction: column; gap: 15px; align-items: center;
    z-index: 990; opacity: 0; visibility: hidden; transition: var(--transition);
    transform: translateY(30px);
}
.floating-actions-container.visible { opacity: 1; visibility: visible; transform: translateY(0); }

.floating-btn {
    width: 45px; height: 45px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--white); color: var(--royal-blue);
    font-size: 1.2rem; box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    text-decoration: none; transition: var(--transition); position: relative;
    border: 1px solid #eee;
}
.floating-btn:hover { background: var(--gold); color: var(--white); border-color: var(--gold); transform: scale(1.1);}

.call-btn {
    width: 60px; height: 60px; background: var(--gold-gradient);
    color: var(--royal-blue); font-size: 1.8rem; border: none;
    margin-top: 5px;
}
.call-btn:hover { color: var(--white); }

.call-pulse {
    position: absolute; width: 100%; height: 100%; border-radius: 50%;
    border: 2px solid var(--gold); animation: pulse 2s infinite; opacity: 0;
}
@keyframes pulse { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.8); opacity: 0; } }

#toast {
    position: fixed; bottom: 100px; right: 100px; background: var(--royal-blue);
    color: var(--white); padding: 10px 20px; border-radius: 4px; font-size: 0.8rem;
    opacity: 0; visibility: hidden; transition: 0.3s; z-index: 9999; box-shadow: var(--shadow-soft);
}
#toast.show { opacity: 1; visibility: visible; bottom: 120px; }

/* =========================================
   6. HERO SECTION (centered text fix)
   ========================================= */
.hero-section {
    position: relative; height: 100vh; width: 100%; overflow: hidden;
    display: flex; align-items: center; justify-content: center; 
    text-align: center;
}
.hero-slider, .hero-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1;}

.hero-slide {
    background-size: cover; background-position: center;
    opacity: 0; transform: scale(1);
    transition: opacity 1.5s ease-in-out, transform 10s linear;
}
.hero-slide.active { opacity: 1; transform: scale(1.15); }

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2;
    background: radial-gradient(circle at 70% 50%, rgba(0,21,48,0.3) 0%, rgba(0,21,48,0.85) 100%);
}

.hero-content { position: relative; z-index: 3; max-width: 920px; padding: 0 20px; margin-top: 60px; margin-left:auto; margin-right:auto; }

.hero-anim-1, .hero-anim-2, .hero-anim-3, .hero-anim-4, .hero-anim-5 { opacity: 0; }
.hero-anim-1 { animation: fadeUp 1s ease-out forwards; animation-delay: 0.2s; }
.hero-anim-2 { animation: fadeUp 1s ease-out forwards; animation-delay: 0.4s; }
.hero-anim-3 { animation: fadeUp 1s ease-out forwards; animation-delay: 0.6s; }
.hero-anim-4 { animation: fadeUp 1s ease-out forwards; animation-delay: 0.8s; }
.hero-anim-5 { animation: fadeUp 1s ease-out forwards; animation-delay: 1.0s; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-social-proof { display: flex; align-items: center; justify-content:center; gap: 15px; margin-bottom: 25px; }
.client-avatars { display: flex; }
.client-avatars img {
    width: 45px; height: 45px; border-radius: 50%; border: 2px solid var(--royal-blue);
    margin-left: -15px; object-fit: cover;
}
.client-avatars img:first-child { margin-left: 0; }
.rating-text { color: var(--white); font-size: 0.9rem; display: flex; flex-direction: column; line-height: 1.3; }
.stars { color: #FFD700; font-size: 0.9rem; margin-bottom: 2px; }

.badge-container { margin-bottom: 25px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 10px; padding: 8px 20px; border-radius: 50px;
    background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2);
    color: var(--white); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px;
}

.hero-section h1 { font-size: 4.5rem; color: var(--white); margin-bottom: 25px; }
.hero-sub { font-size: 1.25rem; color: rgba(255,255,255,0.85); margin-bottom: 45px; max-width: 680px; font-weight: 300; margin-left:auto; margin-right:auto; }
.hero-btns { display: flex; gap: 20px; justify-content:center; flex-wrap:wrap; }

.scroll-indicator {
    position: absolute; bottom: 40px; right: 40px; z-index: 3;
    display: flex; flex-direction: column; align-items: center; gap: 15px;
}
.scroll-text {
    color: var(--white); font-size: 0.7rem; letter-spacing: 3px; font-weight: 600;
    writing-mode: vertical-rl; transform: rotate(180deg); opacity: 0.6;
}
.scroll-line {
    width: 1px; height: 60px; background: linear-gradient(to bottom, var(--gold), transparent);
    animation: lineDrop 2s infinite;
}
@keyframes lineDrop { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 50.1% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* =========================================
   7. CITY TICKER
   ========================================= */
.city-ticker-wrapper { padding: 18px 0; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex;}
.city-ticker { display: flex; width: max-content; }
.ticker-track {
    display: flex; align-items: center; gap: 50px; padding-right: 50px;
    animation: scrollTicker 30s linear infinite; flex-shrink: 0;
}
.ticker-track span { color: var(--white); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; }
.ticker-track i { font-size: 1rem; }
@keyframes scrollTicker { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }

/* =========================================
   8. ABOUT SECTION
   ========================================= */
.split-layout { display: flex; align-items: center; gap: 80px; }
.split-image { flex: 1; min-width: 0; }
.split-content { flex: 1; }

.image-frame { position: relative; }
.swiper-about { width: 100%; height: 500px; border-radius: 4px; box-shadow: var(--shadow-luxury); }
.swiper-about img { width: 100%; height: 100%; object-fit: cover; }

.floating-badge {
    position: absolute; bottom: -30px; right: -30px; padding: 30px; z-index: 10;
    background: var(--royal-blue); color: var(--white);
    border-left: 4px solid var(--gold); box-shadow: var(--shadow-luxury); text-align: center;
}
.floating-badge h3 { font-size: 2.5rem; margin-bottom: 5px; line-height: 1; color: var(--gold);}
.floating-badge p { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; margin: 0; }

.lead-text { font-size: 1.25rem; font-weight: 400; margin-bottom: 20px; color: var(--text-dark);}
.split-content p { color: #555; }
.luxury-list { list-style: none; margin-top: 30px; }
.luxury-list li { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; font-size: 1.1rem; font-weight: 500; color: var(--royal-blue);}
.luxury-list i { font-size: 1.5rem; color: var(--gold); }

/* =========================================
   9. TRUST SECTION
   ========================================= */
.trust-section { position: relative; }
.trust-section::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(var(--gold) 1px, transparent 1px); background-size: 40px 40px; opacity: 0.05;
}
.luxury-icon { font-size: 4rem; margin-bottom: 15px; color: var(--gold);}
.trust-desc { max-width: 800px; font-size: 1.1rem; font-weight: 300; color: var(--text-light-gray);}

.license-boxes { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.license-box {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 15px 30px; border-radius: 4px; color: var(--white); backdrop-filter: blur(5px);
}
.license-box span { display: block; font-size: 0.7rem; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 5px; }
.license-box strong { font-size: 1.2rem; font-family: monospace; letter-spacing: 1px; }

/* =========================================
   10. SERVICES / PRICING SECTION
   ========================================= */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.pricing-card {
    background: var(--white); padding: 50px 40px; box-shadow: var(--shadow-soft);
    border-radius: 4px; display: flex; flex-direction: column; justify-content: space-between;
    transition: var(--transition); position: relative; border-top: 4px solid transparent;
}
.pricing-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-luxury); border-top-color: var(--gold); }

.card-top h3 { font-size: 2.2rem; margin-bottom: 15px; }
.card-top p { color: #555; margin-bottom: 30px; }

.price { margin-bottom: 30px; }
.price .currency { font-size: 1.5rem; font-weight: 600; vertical-align: super; }
.price .amount { font-size: 4rem; line-height: 1; color: var(--royal-blue); }
.price .period { color: #888; font-size: 1rem; margin-left: 5px; }

.pricing-card.featured-card { 
    background: linear-gradient(160deg, var(--royal-blue) 0%, var(--dark-navy) 100%) !important; 
    border: 1px solid var(--gold); transform: scale(1.05); z-index: 2; 
    box-shadow: var(--shadow-luxury); 
}
.pricing-card.featured-card:hover { transform: scale(1.05) translateY(-10px); }
.pricing-card.featured-card .card-top p { color: rgba(255,255,255,0.8) !important; }
.pricing-card.featured-card .price .amount { color: var(--white) !important; }
.pricing-card.featured-card .price .period { color: rgba(255,255,255,0.6) !important; }

.pricing-note { font-size: 0.85rem; color: #888; }

/* =========================================
   11. GALLERY SECTION
   ========================================= */
.gallery-section { background: var(--white); overflow: hidden; }
.swiper-gallery { width: 100%; padding: 0 70px 40px 70px; }
.gallery-item { height: 350px; border-radius: 4px; overflow: hidden; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }

.gallery-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 21, 48, 0.6); display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition); color: var(--gold); font-size: 3rem;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

.swiper-button-next, .swiper-button-prev { 
    color: var(--white) !important; background: var(--gold-gradient); 
    width: 50px !important; height: 50px !important; border-radius: 50%; 
    box-shadow: var(--shadow-soft); transition: var(--transition);
}
.swiper-button-next:hover, .swiper-button-prev:hover { transform: scale(1.1); }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 1.2rem !important; font-weight: bold; }

/* =========================================
   12. QUOTE SECTION (IFRAME)
   ========================================= */
.quote-section { position: relative; }
.quote-wrapper { max-width: 1000px; margin: 0 auto; }
.iframe-container { background: var(--white); border-radius: 8px; padding: 10px; box-shadow: var(--shadow-luxury);}

/* =========================================
   13. FOOTER
   ========================================= */
.site-footer { padding: 80px 0 30px; border-top: 5px solid var(--gold); }

/* Footer Map + Contact block */
.footer-map-wrap{ margin-bottom: 46px; }
.footer-map-grid{
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 26px;
  align-items: stretch;
}
.footer-map-embed{
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow-soft);
  background: rgba(255,255,255,0.03);
}
.footer-map-embed iframe{
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}
.footer-map-info{
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  padding: 22px 22px;
}
.footer-map-info h4{ font-family: var(--font-body); font-size: 1.15rem; text-transform: uppercase; letter-spacing: 2px; margin: 0 0 14px; }
.footer-address{ color: var(--text-light-gray); margin: 0 0 14px; line-height: 1.55; }
.footer-map-phone{ color: var(--text-light-gray); margin: 0; display:flex; align-items:center; gap: 14px; }
.footer-map-phone i{ color: var(--gold); font-size: 1.2rem; }
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; }
.footer-brand { max-width: 400px; }
.footer-logo { max-width: 250px; }

.footer-contact h4 { font-family: var(--font-body); font-size: 1.2rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; color: var(--gold);}
.footer-contact p { color: var(--text-light-gray); margin-bottom: 10px; display: flex; align-items: center; gap: 15px; }
.footer-contact i { color: var(--gold); font-size: 1.2rem; }

.social-icons a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 45px; height: 45px; border: 1px solid var(--border-light); border-radius: 50%;
    color: var(--white); margin-right: 10px; transition: var(--transition); font-size: 1.2rem;
    text-decoration: none !important; border-bottom: none !important; box-shadow: none !important;
}
.social-icons a:hover { background: var(--gold); border-color: var(--gold); color: var(--royal-blue); transform: translateY(-3px); }

.footer-divider { width: 100%; height: 1px; background: var(--border-light); margin: 40px 0; }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; color: var(--text-light-gray); font-size: 0.85rem; }
.legal-links a { 
    color: var(--gold); text-decoration: none !important; transition: var(--transition); 
    text-transform: uppercase; letter-spacing: 1px; font-size: 0.8rem; font-weight: 500; 
    border: none !important; box-shadow: none !important;
}
.legal-links a:hover { color: var(--white); }
.legal-links .separator { margin: 0 10px; color: rgba(255,255,255,0.3); }

/* Pagination */
.nav-links .page-numbers { margin:0 6px; padding:8px 12px; border:1px solid rgba(0,0,0,.08); text-decoration:none; }
.nav-links .current { background: var(--gold); color:#fff; border-color: var(--gold); }

/* =========================================
   14. RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .featured-card { transform: scale(1); z-index: 1;}
    .featured-card:hover { transform: translateY(-10px); }
    h1 { font-size: 4rem; }
    .section-header h2 { font-size: 3.5rem; }
    .split-layout { gap: 40px; }
    .fhm-archive-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 768px) {
    /* Mobile-first header: logo left, hamburger right, consistent sizing */
    .navbar{ padding: 12px 0 !important; background: rgba(0, 21, 48, 0.98) !important; backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-light); }
    .navbar.scrolled{ padding: 12px 0 !important; }
    .nav-wrapper{ gap: 12px; }
.nav-wrapper{ width: 100%; }
    .menu-toggle{ margin-left: 12px; flex: 0 0 auto; }


    .nav-links-desktop, .nav-actions .phone-link, .nav-actions .btn-premium { display: none; }

    .brand-logo{ flex: 0 0 auto; max-width: 72%; }
    .brand-logo img, .brand-logo .custom-logo { height: 40px; max-width: 100%; }

    .nav-actions{ margin-left: auto; gap: 0; flex: 0 0 auto; }

    .menu-toggle {
        display: inline-flex;
        flex-direction: column;
        width: 44px;
        height: 44px;
        border-radius: 999px;
        border: 1px solid rgba(255,255,255,0.18);
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 0;
        background: rgba(255,255,255,0.04);
        backdrop-filter: blur(10px);
    }
    .menu-toggle .line{ width: 18px; }

    .hero-content { padding-left: 0 !important; margin-top: 40px; }
    .hero-social-proof { justify-content: center; }
    h1 { font-size: 3.1rem; }
/* Mobile hero badge tighter */
    .hero-badge{
      font-size: 0.72rem !important;
      letter-spacing: 1.2px !important;
      padding: 8px 14px !important;
      text-align: center;
      justify-content: center;
      max-width: 92vw;
    }
    .hero-sub { font-size: 1rem; }
    .hero-btns { flex-direction: column; width: 100%; }
    .btn-gold-solid, .btn-glass { width: 100%; text-align: center; }
    .scroll-indicator { display: none; }

    .section-padding { padding: 70px 0; }
    .section-header h2 { font-size: 2.8rem; }

    .split-layout { flex-direction: column; }
    .split-image { order: -1; margin-bottom: 40px; width: 100%;}
    .swiper-about { height: 350px; }
    .floating-badge { right: 0; bottom: -20px; padding: 20px; }
    .floating-badge h3 { font-size: 2rem; }

    .pricing-grid { grid-template-columns: 1fr; }

    .swiper-gallery { padding: 0 10px 40px 10px; }
    .swiper-button-next, .swiper-button-prev { display: none !important; }

    .floating-actions-container { right: 15px; bottom: 15px; gap: 10px; }
    .floating-btn { width: 35px; height: 35px; font-size: 1rem; }
    .call-btn { width: 50px; height: 50px; font-size: 1.4rem; margin-top: 5px;}
    #toast { right: 15px; bottom: 80px; }

    .footer-top, .footer-bottom { flex-direction: column; text-align: center; justify-content: center; }
    .footer-brand { margin: 0 auto; }
    .footer-contact p { justify-content: center; }
    .legal-links { display: flex; flex-direction: column; gap: 10px; }
    .legal-links .separator { display: none; }

    .footer-map-wrap{ margin-bottom: 34px; }
    .footer-map-grid{ grid-template-columns: 1fr; gap: 16px; }
    .footer-map-embed iframe{ height: 220px; }
    .footer-map-info{ text-align: center; }
    .footer-map-phone{ justify-content: center; }

    .fhm-archive-grid { grid-template-columns: 1fr !important; }
}


/* Footer background (Customizer) */
.site-footer{ background-color: var(--footer-bg, var(--dark-navy)); }


/* =========================================
   15. MOBILE FIXES (1.0.3)
   - prevent navbar overlap
   - center hero content/buttons
   - tighten typography on phones
   ========================================= */
@media (max-width: 768px) {
  /* If WP admin bar exists */
  .admin-bar .navbar { top: 32px; }

  /* Reserve space for fixed navbar so it doesn't sit over hero content */
  .hero-section { padding-top: 96px; justify-content: center; }

  .hero-content {
    margin-top: 0 !important;
    max-width: 720px;
    width: 100%;
    padding: 0 18px !important;
    text-align: center;
  }

  .hero-social-proof { margin-bottom: 18px; }
  .badge-container { margin-bottom: 18px; }

  .hero-section h1 { font-size: 2.75rem; line-height: 1.05; margin-bottom: 18px; }
  .hero-sub { font-size: 1.02rem; margin-bottom: 28px; }

  .hero-btns { justify-content: center; align-items: center; gap: 14px; }
  .hero-btns a { width: 100%; max-width: 360px; }

  /* About / Trust headings slightly smaller */
  .split-content h2 { font-size: 2.2rem; }
  .trust-section h2 { font-size: 2.1rem; }
  .section-header h2 { font-size: 2.5rem; }

  /* Overline: reduce tracking/spacing on phones */
  .overline { letter-spacing: 2.5px; margin-bottom: 10px; }

  /* License boxes: equal sizing on phones */
  .license-boxes { gap: 12px; }
  .license-box { flex: 1 1 46%; padding: 14px 14px; text-align: center; }
  .license-box strong { font-size: 1.15rem; }
}

@media (max-width: 480px) {
  .admin-bar .navbar { top: 46px; } /* some mobile admin bars are taller */

  .hero-section { padding-top: 92px; }
  .hero-section h1 { font-size: 2.35rem; }
  .hero-sub { font-size: 0.98rem; }

  .split-content h2 { font-size: 2.05rem; }
  .trust-section h2 { font-size: 1.95rem; }

  .overline { font-size: 0.78rem; letter-spacing: 2px; }

  .license-box { flex: 1 1 100%; }
}


/* =========================================
   15. MOBILE FIXES (v1.0.4)
   ========================================= */
@media (max-width: 768px){
  /* Ensure hero starts below fixed navbar and content is centered */
  .hero-section{ padding-top: 88px; }
  .hero-content{ margin-top: 0 !important; text-align: center; max-width: 680px; margin-left: auto; margin-right: auto; }
  .hero-btns{ align-items: center; justify-content: center; }
  .hero-btns a{ max-width: 420px; }

  /* Reduce "Fully Licensed & Insured..." badge on phones */
  .hero-badge{
    font-size: .70rem;
    letter-spacing: 1.6px;
    padding: 7px 14px;
    gap: 8px;
    max-width: 92vw;
    justify-content: center;
    text-align: center;
    line-height: 1.25;
    white-space: normal;
  }
  .badge-container{ margin-bottom: 18px; }
}

@media (max-width: 480px){
  .hero-section{ padding-top: 92px; }
  .hero-badge{ font-size: .66rem; letter-spacing: 1.3px; padding: 6px 12px; }
  .hero-btns a{ max-width: 360px; }
}

/* =========================================
   16. MOBILE NAV FIXES (v1.0.7)
   - Keep the same compact header state on phones from first paint
   ========================================= */

@media (max-width: 768px){
  /* Force compact header on mobile immediately (no scroll needed) */
  .navbar{
    padding: 12px 0;
    background: rgba(0, 21, 48, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .nav-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 12px;
  }

  .brand-logo{
    display:flex;
    align-items:center;
    min-width: 0;
    flex: 0 1 auto;
  }

  .brand-logo img,
  .brand-logo .custom-logo{
    height: 38px;
    width: auto;
    max-width: 170px;
    object-fit: contain;
  }

  /* Hide desktop links & actions, keep hamburger */
  .nav-links-desktop,
  .nav-actions .phone-link,
  .nav-actions .btn-premium{ display:none !important; }

  .nav-actions{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap: 10px;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .menu-toggle{
    display:flex !important;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(197,160,89,0.45);
    background: rgba(0,0,0,0.12);
    align-items:center;
    justify-content:center;
    gap: 6px;
    padding: 0;
  }

  .menu-toggle .line{
    width: 22px;
    height: 2px;
  }

  /* Prevent hero content from sitting under fixed nav */
  .hero-section{ padding-top: 84px; }
  .hero-content{ margin-top: 0; padding-left: 0; text-align:center; }
  .hero-social-proof{ justify-content:center; }
  .hero-btns{ justify-content:center; }
}

/* =========================================
   1.0.8 MOBILE OVERFLOW + HEADER FIT FIX
   Ensures no horizontal scroll on mobile and keeps hamburger inside viewport
   ========================================= */
html{overflow-x:hidden; max-width:100%;}
body{max-width:100%;}

@media (max-width: 768px){
  .navbar{width:100vw; left:0; right:0;}
  .navbar .container{
    width:100%;
    max-width:100vw;
    padding-left:16px;
    padding-right:16px;
  }
  .nav-wrapper{
    width:100%;
    max-width:100%;
    overflow:hidden;
  }
  .brand-logo{
    max-width: calc(100vw - 16px - 16px - 56px);
  }
}


/* =========================================
   MAP + CONTACT (above footer)
   ========================================= */
.fhm-map-contact{
  position: relative;
  width: 100%;
  min-height: 520px;
  background: #0b1220;
  overflow: hidden;
}
.fhm-map-contact__map{
  position:absolute;
  inset:0;
}
.fhm-map-contact__map iframe{
  width:100%;
  height:100%;
  border:0;
  filter: grayscale(10%) contrast(1.05) saturate(0.95);
}
.fhm-map-contact__panel{
  position: relative;
  z-index: 2;
  width: min(520px, calc(100% - 40px));
  margin: 0 20px 0 auto;
  min-height: 520px;
  padding: 56px 46px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  box-shadow: 0 22px 60px rgba(0,0,0,0.35);
}
.fhm-map-contact__title{
  font-family: var(--font-accent);
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: clamp(1.8rem, 2.2vw, 2.4rem);
  color: #0d1b2a;
  margin: 0 0 8px 0;
}
.fhm-map-contact__subtitle{
  color: rgba(0,0,0,0.55);
  margin: 0 0 26px 0;
  font-size: 0.98rem;
  line-height: 1.55;
}
.fhm-map-contact__items{
  display: grid;
  gap: 18px;
  margin-top: 10px;
}
.fhm-map-item__label{
  display:flex;
  align-items:center;
  gap: 10px;
  color: rgba(0,0,0,0.45);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.72rem;
}
.fhm-map-item__label i{
  color: rgba(180,150,90,0.95);
  font-size: 18px;
}
.fhm-map-item__value{
  margin-top: 8px;
  color: #0d1b2a;
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.5;
}
.fhm-map-item__value a{
  color: inherit;
  text-decoration: none;
}
.fhm-map-item__value a:hover{
  text-decoration: underline;
}
.fhm-map-contact__buttons{
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.fhm-map-btn{
  width: 100%;
  text-align: center;
}
.btn-navy-solid{
  display: inline-block;
  padding: 18px 42px;
  background: var(--dark-navy);
  color: var(--white);
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-navy-solid:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.25);
}

/* Responsive */
@media (max-width: 900px){
  .fhm-map-contact{ min-height: 820px; }
  .fhm-map-contact__panel{
    width: calc(100% - 24px);
    margin: 0 auto;
    min-height: auto;
    padding: 34px 22px;
    border-radius: 18px;
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 14px;
  }
}
