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

:root {
    --primary-teal: #016D77;
    --secondary-green: #22B070;
    --dark-teal: #004e5a;
    --navy-blue: #001f3f;
    --safety-orange: #ff851b;
    --whatsapp-green: #25d366;
    --white: #ffffff;
    --light-teal: #EBF6F9;
    --light-grey: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-muted: #5e6d72;
    --font-primary: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow-sm: 0 4px 15px rgba(0,0,0,0.04);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.06);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.08);
    --radius: 12px;
    --section-padding: 100px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--white);
}

h1, h2, h3, h4 {
    line-height: 1.2;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius);
}

/* Layout Containers */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-padding {
    padding: var(--section-padding) 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    min-height: 40px;
}

.btn-orange {
    background-color: var(--secondary-green);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(34, 176, 112, 0.25);
}

.btn-orange:hover {
    background-color: #1e9b62;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(34, 176, 112, 0.35);
}

.btn-teal {
    background-color: var(--primary-teal);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(1, 109, 119, 0.25);
}

.btn-teal:hover {
    background-color: #015a63;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(1, 109, 119, 0.35);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--navy-blue);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: var(--white);
    gap: 10px;
    font-weight: 600;
}

.btn-whatsapp:hover {
    background-color: #1ebe57;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-solid {
    background-color: var(--whatsapp-green);
    color: var(--white);
    transition: var(--transition);
}

.btn-whatsapp-link {
    background-color: #22B070;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 12px;
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-whatsapp-link:hover {
    background-color: #1a925c;
    transform: translateY(-2px);
}

.btn-call-link {
    background-color: #016D77;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 12px;
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-call-link:hover {
    background-color: #005a63;
    transform: translateY(-2px);
}

.contact-btn-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.contact-btn-grid .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 12px;
}

.btn-call-link,
.btn-whatsapp-link {
    font-size: 0.88rem;
    padding: 11px 12px;
}

/* Stack buttons at tablet widths where 4-column cards are tight */
@media (max-width: 1100px) {
    .contact-btn-grid {
        grid-template-columns: 1fr;
    }
    .btn-call-link,
    .btn-whatsapp-link {
        font-size: 0.85rem;
        padding: 10px 12px;
    }
}

@media (max-width: 480px) {
    .contact-btn-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .btn-call-link,
    .btn-whatsapp-link {
        font-size: 0.9rem;
        padding: 12px 14px;
    }
}

/* Header & Navigation */
header.sticky-header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 2000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

header {
    width: 100%;
    position: relative;
    z-index: 1000;
}

.top-bar {
    background-color: var(--dark-teal);
    color: var(--white);
    padding: 12px 0;
    font-size: 0.85rem;
    font-weight: 500;
}

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

.top-info-right {
    display: flex;
    gap: 30px;
}

.top-info-right a {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
}

.top-info-right a:hover {
    opacity: 1;
    color: var(--secondary-green);
}

.main-nav {
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 18px 0;
    position: sticky;
    top: 0;
    box-shadow: var(--shadow-sm);
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    max-height: 70px; /* Increased from 50px for a more professional look */
}

.logo img {
    height: 70px; /* Matched increased logo container height */
    width: auto;
    max-width: 200px;
    object-fit: contain;
    border-radius: 0;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links li a {
    font-weight: 600;
    color: var(--navy-blue);
    font-size: 0.95rem;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-green);
    transition: var(--transition);
}

.nav-links li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--navy-blue);
}

/* Hero Section */
.hero {
    height: 95vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(75deg, rgba(0, 78, 90, 0.85) 0%, rgba(1, 109, 119, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.hero h1 {
    font-size: clamp(2.8rem, 8vw, 4.5rem);
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero p {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* About Section */
.about .grid {
    align-items: center;
    gap: 60px;
}

.about-image img {
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
}

.about-text h2 {
    color: var(--primary-teal);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.about-text h3 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 25px;
}

.mission-txt {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark-teal);
    border-left: 6px solid var(--secondary-green);
    padding: 20px 30px;
    background: var(--light-teal);
    margin: 35px 0;
    border-radius: 0 var(--radius) var(--radius) 0;
}

/* Stats Counter */
.stats-strip {
    margin-top: 60px;
    padding: 40px;
    background: var(--light-teal);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary-teal);
    margin-bottom: 5px;
    font-weight: 800;
}

.stat-item p {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Service Grid */
.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: clamp(2.2rem, 5vw, 3rem);
    margin-bottom: 15px;
}

.title-line {
    width: 80px;
    height: 5px;
    background: var(--secondary-green);
    margin: 0 auto;
    border-radius: 10px;
}

.service-card {
    background: var(--light-teal);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.service-card img {
    height: 280px;
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius) var(--radius) 0 0;
}

.service-card-body, .service-card-content {
    padding: 30px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* Why Choose Us Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.why-item {
    background: var(--light-teal);
    padding: 40px;
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.why-item:hover {
    background: #fdfdfe; /* Very slight change to show hover without being stark white */
    border-color: #eee;
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.why-item i {
    font-size: 2.8rem;
    color: var(--primary-teal);
    margin-bottom: 25px;
    display: block;
}

.why-item h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.why-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Floating Elements */
.floating-btn {
    position: fixed;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition);
}

.float-wa {
    right: 20px;
    bottom: 20px;
    background-color: var(--whatsapp-green);
    animation: pulse-wa 2s infinite;
}

.float-call {
    right: 20px;
    bottom: 90px; /* Stack above WhatsApp */
    background-color: var(--primary-teal);
    animation: bounce-item 2.5s infinite;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* Animations */
@keyframes pulse-wa {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes bounce-item {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Lead Magnet Form */
.callback-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.callback-form input, .callback-form textarea {
    padding: 12px 15px;
    border-radius: var(--radius);
    border: 1px solid #333;
    background: #1a1a1a;
    color: var(--white);
    font-family: inherit;
}

.callback-form input:focus {
    outline: none;
    border-color: var(--secondary-green);
}

/* Footer Section */
footer {
    background: #016D77; /* Teal background as requested */
    color: var(--white);
    padding: var(--section-padding) 0 40px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.2rem;
    font-weight: 700;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--secondary-green);
}

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

.footer-links-list li {
    margin-bottom: 10px;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-links-list a:hover {
    color: var(--secondary-green);
    transform: translateX(5px);
}

.footer-logo {
    display: block;
    margin-bottom: 25px;
    max-height: 50px;
}

.footer-logo img {
    height: 100%;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    border-radius: 0;

}

.footer-col p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.contact-info li, .contact-info a {
    color: var(--white) !important;
}

.contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-info i {
    color: var(--secondary-green);
    font-size: 1.1rem;
    margin-top: 5px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-green);
    transform: translateY(-5px);
    color: var(--white);
}

.social-links-dark a {
    background: rgba(1, 109, 119, 0.1);
    color: var(--primary-teal);
}

.social-links-dark a:hover {
    background: var(--primary-teal);
    color: var(--white);
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Grid Utilities */
.grid { display: grid; gap: 30px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* =========================================
   RESPONSIVE BREAKPOINTS — FULL WEBSITE
   ========================================= */

/* === LARGE TABLET / SMALL DESKTOP (≤1100px) === */
@media (max-width: 1100px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .nav-links { gap: 18px; }
    .section-padding { padding: 80px 0; }

    /* Service page inline 2-col grids (SEO article + sidebar) */
    .seo-article-grid {
        grid-template-columns: 1fr !important;
    }
}

/* === TABLET (≤1024px) === */
@media (max-width: 1024px) {
    .grid-3, .why-grid { grid-template-columns: repeat(2, 1fr); }
    .nav-links { gap: 20px; }
    .section-padding { padding: 80px 0; }

    /* Footer: 4→2 cols on tablet */
    .grid-4 { grid-template-columns: repeat(2, 1fr); }

    /* Service page hero font */
    .page-header h1 { font-size: 2.4rem !important; }
}

/* === MOBILE NAV BREAKPOINT (≤991px) === */
@media (max-width: 991px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: var(--shadow-lg);
        text-align: center;
        z-index: 1999;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        gap: 0;
    }
    .nav-links li { padding: 10px 0; border-bottom: 1px solid #f0f0f0; width: 100%; }
    .nav-links li:last-child { border-bottom: none; }
    .nav-links.active { display: flex; }
    .menu-toggle { display: block; }
    .top-bar .container { justify-content: center; }
    .top-info-right { display: none; }
    .btn-phone-nav { margin: 10px auto 0; display: inline-flex !important; }

    /* Dropdown on mobile */
    .dropdown { width: 100%; }
    .dropdown > a { justify-content: center; display: flex; align-items: center; gap: 6px; }
}

/* === STANDARD MOBILE (≤767px) === */
@media (max-width: 767px) {
    /* Grids → single column */
    .grid-2, .grid-3, .grid-4, .why-grid { grid-template-columns: 1fr; }
    .section-padding { padding: 56px 0; }

    /* Hero */
    .hero-content { text-align: center; }
    .hero-btns { justify-content: center; flex-direction: column; align-items: center; }
    .hero h1 { font-size: 2.2rem; }

    /* Page headers (service pages) */
    .page-header h1 { font-size: 2rem !important; }
    .page-header-safety { min-height: 320px !important; padding: 50px 0 !important; }

    /* Stats strip (service pages) */
    .stats-strip-light .container { flex-direction: column; }
    .stat-pill { border-right: none !important; border-bottom: 1px solid #c5dde4; width: 100%; }
    .stat-pill:last-child { border-bottom: none; }
    .stats-strip { padding: 30px; }
    .stat-item h3 { font-size: 2.5rem; }

    /* Why-need cards — already 1 col via grid-4 override */

    /* Gallery grid: 2 col on mobile */
    .gallery-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 8px; }

    /* Process steps: full width */
    .process-step { flex-direction: column; }

    /* SEO Article + sidebar: stack */
    .seo-article .container > .grid,
    .seo-article .grid[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
    .seo-article [style*="position: sticky"] { position: static !important; top: auto !important; }

    /* Comparison table: allow scroll */
    .compare-table { font-size: 0.8rem; }
    .compare-table th, .compare-table td { padding: 10px 12px; }

    /* Contact page 2-col → 1 col */
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 24px 18px; }
    .form-row { grid-template-columns: 1fr !important; }
    .form-btns { grid-template-columns: 1fr !important; }

    /* Floating buttons */
    .float-call { display: flex; }

    /* Footer */
    .footer-bottom { margin-top: 40px; }
    .grid-4 { gap: 24px; }

    /* Section title */
    .section-title { margin-bottom: 40px; }
    .section-title h2 { font-size: 1.8rem; }

    /* Service cards */
    .service-card img { height: 220px; }

    /* Buttons in 1-col layout back to side-by-side */
    .contact-btn-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .btn-call-link, .btn-whatsapp-link { font-size: 0.9rem; padding: 12px 10px; }

    /* Related cards */
    .related-card { max-width: 440px; margin: 0 auto; }

    /* CTA banner */
    .cta-banner-grid { flex-direction: column !important; align-items: center; }

    /* FAQ */
    .faq-question { font-size: 0.92rem; padding: 14px 16px; }
    .faq-answer { padding: 0 16px; }
    .faq-answer.open { padding: 0 16px 14px; }

    /* Area pills */
    .area-pill { font-size: 0.78rem; padding: 6px 12px; }

    /* Invisible grills comparison table scroll */
    .compare-table-wrap { overflow-x: auto; }
}

/* === SMALL PHONES (≤480px) === */
@media (max-width: 480px) {
    /* Gallery → 1 col on very small screens */
    .gallery-grid { grid-template-columns: 1fr !important; }

    .contact-btn-grid { grid-template-columns: 1fr; gap: 8px; }
    .btn-call-link, .btn-whatsapp-link { font-size: 0.88rem; padding: 12px 14px; }

    /* Hero */
    .hero h1 { font-size: 1.9rem; }
    .page-header h1 { font-size: 1.7rem !important; }

    /* Sections */
    .section-padding { padding: 44px 0; }
    .container { padding: 0 16px; }

    /* Cards */
    .spec-card { padding: 18px 14px; }
    .why-need-card { padding: 20px 16px; }

    /* Stats pill full block */
    .stat-pill { flex-direction: column; text-align: center; gap: 6px; padding: 16px; }

    /* Footer compact */
    .footer-col h4 { margin-bottom: 16px; }
    footer { padding: 50px 0 30px; }
}

/* Override inline grid-template-columns on service pages for mobile */
@media (max-width: 767px) {
    /* Intro 2-col (image + text) on pigeon/safety/invisible pages */
    [style*="grid-template-columns: 1fr 1fr"],
    [style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    /* SEO article + sidebar (2fr 1fr) */
    [style*="grid-template-columns: 2fr 1fr"],
    [style*="grid-template-columns:2fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    /* Sticky sidebar → static */
    [style*="position: sticky"],
    [style*="position:sticky"] {
        position: static !important;
        top: auto !important;
    }
}

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

/* Multi-page Utilities & Cleanup */
.sub-header {
    color: var(--primary-teal);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.main-header {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 25px;
}

.hero-about {
    height: 60vh !important;
}

.hero-title-about {
    font-size: clamp(2.5rem, 6vw, 3.8rem) !important;
    line-height: 1.1;
}

.contact-info-block {
    display: block !important;
}

.standard-li {
    margin-bottom: 25px !important;
    align-items: flex-start !important;
}

.standard-icon {
    font-size: 1.5rem !important;
    color: var(--secondary-green);
}

.standard-title {
    margin-bottom: 5px !important;
    color: var(--dark-teal) !important;
}

.standard-desc {
    font-size: 0.9rem !important;
    color: var(--text-muted) !important;
}

.stats-navy {
    background-color: var(--dark-teal) !important;
    color: var(--white) !important;
}

.stats-no-box {
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
}

.stat-orange {
    color: var(--secondary-green) !important;
}

.stat-p-white {
    color: rgba(255,255,255,0.8) !important;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 20px 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.breadcrumbs a {
    color: var(--dark-teal);
}

.breadcrumbs span {
    color: var(--primary-teal);
}

.breadcrumbs i {
    margin: 0 10px;
    font-size: 0.7rem;
    color: #ccc;
}

.breadcrumb-link-white {
    color: rgba(255,255,255,0.8) !important;
}

.page-header-safety {
    background-size: cover !important;
    background-position: center !important;
    padding: 60px 0 !important;
    text-align: center !important;
    color: var(--white) !important;
}

.navy-header {
    color: var(--dark-teal) !important;
}

.title-line-center {
    margin: 15px auto !important;
}

.divider-icon {
    margin: 20px 0 !important;
    color: var(--secondary-green) !important;
    font-size: 1.5rem !important;
}

.text-container-intro {
    max-width: 800px !important;
    margin: 0 auto !important;
}

.intro-p {
    font-size: 18px !important;
    line-height: 1.8 !important;
    color: var(--text-muted) !important;
}

.intro-p:not(:last-child) {
    margin-bottom: 20px !important;
}

.grid-items-center {
    align-items: center !important;
}

.p-mb-25 {
    margin-bottom: 25px !important;
}

.cta-section-navy {
    background-color: var(--dark-teal) !important;
    color: var(--white) !important;
    text-align: center !important;
}

.cta-h2 {
    font-size: clamp(2rem, 5vw, 3rem) !important;
    margin-bottom: 20px !important;
}

.cta-p-sub {
    font-size: 1.2rem !important;
    color: rgba(255,255,255,0.8) !important;
    margin-bottom: 35px !important;
    max-width: 700px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.cta-btn-fix {
    padding: 18px 45px !important;
    font-size: 1.1rem !important;
}

.urgency-box {
    border: 3px solid var(--secondary-green);
    border-radius: 15px;
    padding: 40px;
    background: var(--light-teal);
    box-shadow: var(--shadow-md);
}

.sports-section-bg {
    background-color: #f4f4f4 !important;
    background-image: radial-gradient(#ddd 1px, transparent 1px);
    background-size: 20px 20px;
}

.orange-underline {
    position: relative;
    display: inline-block;
}

.orange-underline::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--secondary-green);
    border-radius: 2px;
}

.trust-signal-card {
    text-align: center;
    padding: 20px;
    background: var(--light-teal);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.trust-signal-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.trust-signal-icon {
    font-size: 2.5rem;
    color: var(--primary-teal);
    margin-bottom: 15px;
}

/* Services Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 250px;
    box-shadow: var(--shadow-md);
    z-index: 1000;
    border-radius: 8px;
    padding: 10px 0;
    top: 100%;
    left: 0;
    border-top: 3px solid var(--primary-teal);
}

.dropdown-content a {
    color: var(--dark-teal);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    transition: var(--transition);
}

.dropdown-content a:hover {
    background-color: #f8f9fa;
    color: var(--secondary-green);
    padding-left: 25px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Glassmorphism Styles */
.glass-card {
    background: rgba(235, 246, 249, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-5px);
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-box {
    background: var(--light-teal);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    margin-top: 20px;
    border: 1px solid #ddd;
}

.work-hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.work-hours-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.work-hours-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--navy-blue);
}

/* Multi-Step Dropdown Mobile Support */
@media (max-width: 768px) {
    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        background: #f8f9fa;
        padding-left: 20px;
        width: 100%;
        border-top: none;
        border-left: 3px solid var(--primary-teal);
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.btn-lg {
    padding: 12px 30px;
    font-size: 1rem;
}

.floating-btn:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: 75px; /* Appear above the button */
    right: 0;
}

/* Tooltip adjustment for multi-button setup */
.wa-tooltip {
    position: absolute;
    bottom: 60px;
    right: 0;
    background: #25d366;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

/* Hide mobile call bar as requested */
.mobile-call-bar {
    display: none !important;
}

@media (max-width: 768px) {
    .mobile-call-bar {
        display: none !important;
    }
    .floating-btn {
        bottom: 20px; /* Reset bottom since bar is gone */
    }
    .float-call {
        bottom: 90px;
    }
}

/* Phone Nav Button Animation */
@keyframes phone-ring {
    0%, 100% { transform: rotate(0deg); }
    10%       { transform: rotate(-15deg); }
    20%       { transform: rotate(15deg); }
    30%       { transform: rotate(-10deg); }
    40%       { transform: rotate(10deg); }
    50%       { transform: rotate(0deg); }
}
.btn-phone-nav {
    animation: pulse-btn 2s infinite;
    font-size: 0.8rem !important;
    padding: 6px 12px !important;
    white-space: nowrap;
}
.btn-phone-nav i {
    display: inline-block;
    animation: phone-ring 3s infinite;
}
@keyframes pulse-btn {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.6); }
    50%       { box-shadow: 0 0 0 10px rgba(255, 107, 0, 0); }
}
