*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    color-scheme: light;
    --primary: #c8102e;
    --primary-blue: #004a99;
    --dark: #0f172a;
    --muted: #64748b;
    --light: #f8fafc;
    --border: #e2e8f0;
    --header-height: 90px;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

body.site-body {
    margin: 0;
    font-family: "Commissioner", "Poppins", system-ui, -apple-system, sans-serif;
    color: var(--dark);
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: #000;
    color: #fff;
    padding: 8px 12px;
    z-index: 1000;
}

.skip-link:focus {
    left: 16px;
    top: 16px;
}

.container {
    width: min(1280px, 94%);
    margin: 0 auto;
}

/* Responsive visibility helpers (used in Blade) */
.hide-mobile,
.hide-tablet {
    /* default: visible */
}

/* Top Bar */
.top-bar {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    transition: color 0.3s ease;
}

.top-bar-item:hover {
    color: #fff;
}

.top-bar-item .icon {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

.top-bar-socials {
    display: flex;
    gap: 12px;
}

.top-bar-socials .social-link {
    color: inherit;
    transition: all 0.3s ease;
}

.top-bar-socials .social-link:hover {
    color: var(--primary);
    transform: translateY(-1px);
}

.top-bar-socials .icon {
    width: 16px;
    height: 16px;
}

/* Lead-Gen Header Styles */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    /* Must be above the mobile nav overlay (z-index: 1999) so the menu panel isn't blurred */
    z-index: 2500;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0; /* Reduced from 15px */
    transition: all 0.3s ease;
}

.site-header.scrolled .header-inner {
    padding: 6px 0; /* Reduced from 10px */
}

.header-left {
    flex: 1;
    display: flex;
    align-items: center;
}

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

.logo img {
    max-height: 42px; /* Further reduced from 55px */
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

.site-header.scrolled .logo img {
    max-height: 34px;
}

.header-center {
    flex: 0 0 auto;
    display: flex;
    align-items: center; /* Vertically align nav */
    justify-content: center;
}

.header-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

/* Header Navigation Desktop */
.main-nav-desktop .nav-list {
    display: flex;
    align-items: center; /* Ensure all nav links are on the same line */
    gap: 5px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-nav-desktop .nav-list > li > a {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    border-radius: 8px;
    transition: all 0.2s ease;
    line-height: 1;
}

.main-nav-desktop .nav-list > li.active > a,
.main-nav-desktop .nav-list > li > a:hover {
    color: var(--primary);
    background: var(--light);
}

/* Desktop Submenu Styles */
.has-submenu {
    position: relative;
}

/* Hover bridge to prevent losing hover between parent and child */
.has-submenu::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 15px;
    z-index: 10;
}

.submenu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 280px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 15px 0;
    list-style: none;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
}

.submenu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    z-index: -1;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.submenu li {
    margin: 0;
    padding: 2px 10px;
}

.submenu li a {
    display: block;
    padding: 12px 15px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    border-radius: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.submenu li a:hover {
    background: var(--primary);
    color: #ffffff !important;
    transform: translateX(5px);
}

.submenu li {
    margin: 0;
    padding: 0;
}

.submenu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.submenu li a:hover {
    background: var(--light);
    color: var(--primary);
    padding-left: 25px;
}

/* Add a small arrow to items with submenu */
.main-nav-desktop .nav-list > li.has-submenu > a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-nav-desktop .nav-list > li.has-submenu > a::after {
    content: '';
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-top: -3px;
    transition: transform 0.3s ease;
}

.main-nav-desktop .nav-list > li.has-submenu:hover > a::after {
    transform: rotate(-135deg);
    margin-top: 3px;
}

/* Header Contact Actions */
.header-contact-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-phone-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark);
    transition: all 0.2s ease;
    /* Keep phone block stable on desktop */
    flex-shrink: 0;
}

.header-phone-link:hover {
    color: var(--primary);
}

.phone-icon-wrapper {
    width: 42px;
    height: 42px;
    background: #fff5f5;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(200, 16, 46, 0.1);
    transition: all 0.3s ease;
}

.header-phone-link:hover .phone-icon-wrapper {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

.phone-icon-wrapper svg {
    width: 20px;
    height: 20px;
}

.phone-text {
    display: flex;
    flex-direction: column;
    white-space: nowrap;
}

.phone-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
    line-height: 1.2;
    margin-bottom: 2px;
}

.phone-number {
    font-size: 18px;
    font-weight: 900;
    color: inherit;
    line-height: 1.2;
    white-space: nowrap;
}

/* Urgent CTA Button */
.btn-urgent-quote {
    background: linear-gradient(135deg, var(--primary) 0%, #a00d25 100%);
    color: #fff !important;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(200, 16, 46, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-urgent-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn-urgent-quote:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(200, 16, 46, 0.35);
}

.btn-urgent-quote:hover::before {
    left: 100%;
}

.btn-urgent-quote svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-urgent-quote:hover svg {
    transform: translateX(5px);
}

/* Mobile Nav Redesign */
.main-nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: #fff;
    z-index: 2000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -15px 0 50px rgba(0,0,0,0.1);
}

.main-nav-mobile.active {
    right: 0;
}

.mobile-nav-header {
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
}

.mobile-nav-title {
    font-size: 20px;
    font-weight: 900;
    color: var(--dark);
    text-transform: uppercase;
}

.close-menu {
    font-size: 32px;
    background: none;
    border: none;
    color: var(--dark);
    cursor: pointer;
}

.mobile-nav-list {
    padding: 20px;
    list-style: none;
    flex: 1;
    overflow-y: auto;
}

.mobile-nav-list li {
    margin-bottom: 10px;
}

.mobile-nav-list li a,
.submenu-toggle-mobile {
    display: block;
    padding: 15px 20px;
    background: var(--light);
    border-radius: 12px;
    font-weight: 700;
    color: var(--dark);
    font-size: 16px;
    transition: all 0.2s ease;
}

.submenu-toggle-mobile {
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.submenu-toggle-mobile svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.has-submenu-mobile.active .submenu-toggle-mobile svg {
    transform: rotate(180deg);
}

.submenu-mobile {
    display: none;
    list-style: none;
    padding: 10px 0 10px 20px;
}

.has-submenu-mobile.active .submenu-mobile {
    display: block;
}

.submenu-mobile li a {
    background: rgba(0, 0, 0, 0.02);
    padding: 12px 20px;
    font-size: 15px;
    color: var(--dark);
    font-weight: 600;
    margin-top: 5px;
    border-radius: 8px;
    display: block;
}

.submenu-mobile li a:hover {
    background: var(--light);
    color: var(--primary);
}

.mobile-nav-cta {
    margin-top: 15px;
}

.mobile-nav-cta .btn {
    padding: 18px;
    font-size: 15px;
}

/* Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Top Bar Refined */
.top-bar {
    background: var(--dark);
    padding: 6px 0; /* Reduced from 10px */
    border-bottom: none;
}

.urgency-badge {
    background: rgba(200, 16, 46, 0.15);
    color: #ff4d4d !important;
    padding: 5px 12px !important;
    border-radius: 50px;
    font-weight: 800 !important;
    border: 1px solid rgba(200, 16, 46, 0.3);
}

.trust-badge {
    color: #22c55e !important;
    font-weight: 700 !important;
}

.trust-badge svg {
    color: #22c55e;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 45px;
    height: 45px;
    background: var(--light);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: var(--primary);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: var(--primary);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.5) 100%), url('/assets/img/site-reference/LJH786576.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: clamp(80px, 15vh, 160px) 0; /* Reduced from 100px/200px */
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #ffffff, transparent);
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(40px, 7vw, 64px); /* Reduced from 84px to feel less "enormous" */
    line-height: 1;
    margin: 0 0 20px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero-content h1 span.initial-red {
    color: var(--primary);
}

.hero-content h1 span.initial-blue {
    color: var(--primary-blue);
}

.hero-title-sub {
    font-size: clamp(22px, 4vw, 36px); /* Reduced from 48px */
    font-weight: 800;
    margin-bottom: 25px;
    color: #fff;
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: clamp(16px, 2vw, 19px); /* Reduced from 22px */
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 28px;
}

.hero-pill {
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: #fff;
    backdrop-filter: blur(4px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary-blue);
    color: #fff;
    box-shadow: 0 4px 14px 0 rgba(0, 74, 153, 0.39);
}

.btn-primary:hover {
    background: #003b7a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 74, 153, 0.45);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background: #fff;
    color: var(--dark);
    transform: translateY(-2px);
}

/* Sections */
.section {
    padding: clamp(50px, 7vw, 100px) 0; /* Reduced from 60px/120px */
}

.section-muted {
    background: var(--light);
}

.section-bg-image {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
}

.section-bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.7);
    z-index: 1;
}

.section-bg-image .container {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(30px, 6vw, 60px); /* Reduced from 40px/80px */
}

.section-header h2 {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 20px auto 0;
    border-radius: 10px;
}

/* Service Cards Modernized */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #fff;
    padding: 40px 30px; /* Reduced from 60px 45px */
    border-radius: 24px; /* Slightly reduced */
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 40px -15px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.service-icon-wrapper {
    width: 70px; /* Reduced from 80px */
    height: 70px;
    margin-bottom: 25px; /* Reduced from 35px */
    background: var(--light);
    color: var(--primary);
    padding: 18px;
    border-radius: 20px;
    transition: all 0.5s ease;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card:hover .service-icon-wrapper {
    background: var(--primary);
    color: #fff;
    transform: rotate(10deg);
}

.service-icon-wrapper svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 22px; /* Reduced from 26px */
    margin-bottom: 15px; /* Reduced from 20px */
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.service-card p {
    color: var(--muted);
    font-size: 16px; /* Reduced from 17px */
    line-height: 1.5;
    margin-bottom: 25px; /* Reduced from 30px */
}

.service-card a {
    margin-top: auto;
    color: var(--primary-blue);
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-card a:hover {
    gap: 12px;
}

/* Info Cards & Split */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 8vw, 100px);
    align-items: center;
}

.info-card {
    background: #fff;
    padding: clamp(30px, 5vw, 60px);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.info-card h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}

/* Badges */
.badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.badge {
    background: #fff;
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.badge:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.badge img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.badge:hover img {
    opacity: 1;
    transform: scale(1.1);
}

.badge span {
    font-weight: 700;
    font-size: 14px;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.contact-card-icon {
    width: 54px;
    height: 54px;
    flex: 0 0 auto;
    background: #edf2f7;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 14px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.contact-card-icon svg,
.contact-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-card h3 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 800;
}

.contact-card p {
    color: var(--muted);
    font-size: 15px;
    margin: 0;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Partners */
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: clamp(40px, 8vw, 100px);
    padding: 20px 0;
}

.partners-grid img {
    max-height: 85px;
    width: auto;
    max-width: 180px;
    filter: grayscale(1) brightness(0.8);
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.partners-grid img:hover {
    filter: grayscale(0) brightness(1);
    opacity: 1;
    transform: scale(1.15);
}

/* Footer */
.site-footer {
    background: #0f172a;
    color: #fff;
    padding: 80px 0 40px;
    border-top: 5px solid var(--primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #94a3b8;
    font-size: 14px;
}

.site-footer a:hover {
    color: var(--primary-blue);
}

.contact-method {
    display: flex;
    gap: 20px;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateX(10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: #edf2f7;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    padding: 12px;
}

.method-icon svg {
    width: 100%;
    height: 100%;
}

.method-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 800;
}

.method-content p {
    color: var(--muted);
    margin: 0;
    font-size: 15px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: #25d366;
    color: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    :root {
        --header-height: 75px;
    }

    .hide-tablet {
        display: none !important;
    }
    
    .header-inner {
        padding: 10px 0;
    }

    .header-contact-actions {
        display: none;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        border: none;
        background: #f8fafc;
        width: 45px;
        height: 45px;
        padding: 0;
        border-radius: 10px;
        align-items: center;
    }

    .menu-toggle span {
        width: 24px;
        height: 2.5px;
        background: var(--primary);
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .main-nav-mobile {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 350px;
        height: 100vh;
        background: #fff;
        z-index: 2000;
        display: flex;
        flex-direction: column;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .main-nav-mobile.active {
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        gap: 10px;
        font-size: 18px;
    }

    .nav-list > li {
        padding: 0;
    }

    .nav-list > li > a {
        padding: 15px 20px;
        border-radius: 12px;
        background: var(--light);
    }

    .nav-cta a {
        margin-left: 0;
        margin-top: 20px;
        text-align: center;
    }

    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 10px 0 10px 20px;
        display: none;
        background: transparent;
    }

    .has-submenu.active .submenu {
        display: block;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero {
        padding: 120px 0 80px;
        background-attachment: scroll;
    }
    
    .hero-content p {
        margin-inline: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-highlights {
        justify-content: center;
    }
    
    .hero-image-spacer {
        display: none;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .image-experience-badge {
        right: 10px;
        top: 10px;
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        width: 100%;
    }

    .logo img {
        max-height: 36px;
    }
}

.defaultList {
    list-style: none;
    padding: 0;
}

.defaultList li {
    padding: 10px 0 10px 30px;
    position: relative;
}

.defaultList li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 900;
}

/* Animations System */
.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

.reveal-up { transform: translateY(40px); }
.reveal-down { transform: translateY(-40px); }
.reveal-left { transform: translateX(40px); }
.reveal-right { transform: translateX(-40px); }
.reveal-zoom { transform: scale(0.9); }

.reveal.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Stagger delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Backward compatibility for reveal-item */
.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-item.active {
    opacity: 1;
    transform: translateY(0);
}

/* Float Animation for images */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Final Polish Styles */
.section-subtitle {
    display: inline-block;
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 45px;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 2px;
    background: var(--primary);
}

.badge-icon {
    width: 70px;
    height: 70px;
    background: #fff;
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.badge:hover .badge-icon {
    background: var(--primary);
    color: #fff;
    transform: translateY(-10px) rotate(10deg);
    box-shadow: 0 15px 30px rgba(200, 16, 46, 0.2);
}

.badge-icon svg {
    width: 32px;
    height: 32px;
}

.badge span {
    font-weight: 800;
    font-size: 15px;
    color: var(--dark);
    letter-spacing: -0.2px;
}

.hero-pill {
    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);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
}

.service-card a {
    color: var(--primary);
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.service-card a:hover {
    letter-spacing: 2px;
    color: var(--dark);
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: #fff;
    display: flex;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}

.sticky-cta-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    gap: 5px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.sticky-cta-item svg {
    width: 24px;
    height: 24px;
}

.sticky-cta-item.call {
    background: var(--dark);
    color: #fff;
}

.sticky-cta-item.quote {
    background: var(--primary);
    color: #fff;
}

@media (min-width: 769px) {
    .mobile-sticky-cta {
        display: none;
    }
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }

    body.site-body {
        padding-bottom: 70px; /* Space for sticky bar */
    }
}

/* Coverage Map Visual Styles */
.map-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    max-width: 550px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.coverage-map {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #f1f5f9;
    background-image: 
        radial-gradient(circle at center, rgba(200, 16, 46, 0.03) 0%, transparent 70%),
        linear-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.05) 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
    border-radius: 30px;
    border: 1px solid rgba(0,0,0,0.03);
    overflow: hidden;
}

/* Stylized River (Loire) */
.coverage-map::after {
    content: '';
    position: absolute;
    top: 55%;
    left: -10%;
    width: 120%;
    height: 40px;
    background: rgba(0, 74, 153, 0.05);
    filter: blur(15px);
    transform: rotate(-5deg);
    z-index: 1;
}

.radar-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(200, 16, 46, 0.05);
    border-radius: 50%;
}

.radar-circle:nth-child(1) { width: 200px; height: 200px; }
.radar-circle:nth-child(2) { width: 400px; height: 400px; }
.radar-circle:nth-child(3) { width: 600px; height: 600px; }

.map-pin {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-pin:hover {
    transform: scale(1.1);
    z-index: 20;
}

.pin-dot {
    width: 14px;
    height: 14px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 10px rgba(200, 16, 46, 0.3);
}

.pin-pulse {
    position: absolute;
    top: 7px;
    left: 7px;
    width: 14px;
    height: 14px;
    background: var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pinPulse 2s infinite;
    pointer-events: none;
}

@keyframes pinPulse {
    0% { width: 14px; height: 14px; opacity: 0.6; }
    100% { width: 50px; height: 50px; opacity: 0; }
}

.pin-label {
    margin-top: 8px;
    background: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 800;
    color: var(--dark);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    white-space: nowrap;
}

/* Position pins roughly based on Nantes area geography */
.pin-nantes { top: 50%; left: 50%; transform: translate(-50%, -50%); }
.pin-orvault { top: 35%; left: 45%; }
.pin-reze { top: 65%; left: 52%; }
.pin-st-herblain { top: 48%; left: 35%; }

.coverage-info-card {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 30;
}

.availability-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
}

.availability-badge span {
    font-size: 12px;
    font-weight: 800;
    color: #22c55e;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coverage-info-card h4 {
    margin: 0 0 5px;
    font-size: 17px;
    font-weight: 800;
    color: var(--dark);
}

.coverage-info-card p {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.4;
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}
.animate-ping {
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@media (max-width: 1024px) {
    .map-container {
        margin-top: 40px;
    }
}

/* Contact Page Specific Styles */
.contact-hero {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.7) 100%), url('/assets/img/site-reference/LJH786576.webp');
    background-size: cover;
    background-position: center;
    padding: clamp(80px, 15vh, 140px) 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info-grid {
    display: grid;
    gap: 25px;
}

.form-card {
    background: #ffffff;
    /* Slightly more compact to avoid "too zoomed" feel */
    padding: clamp(20px, 3.5vw, 36px);
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.02);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 13px;
    color: var(--dark);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #f8fafc;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    /* Prevent iOS auto-zoom on input focus */
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 16px;
    }
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.1);
}

.contact-image-container {
    position: relative;
    padding: 20px;
}

.contact-image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: var(--shadow-lg);
}

@media (max-width: 991px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}
