/* BAFÃO GUINCHO & REBOQUE 24H - CUSTOM PREMIUM STYLE SYSTEM */

/* CSS RESET & BASE SYSTEM */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Color Palette Design Tokens */
    --bg-deep: #03050a;
    --bg-surface: #0a0d16;
    --bg-surface-hover: #111625;
    --bg-warning-light: #1c140a;
    
    --primary: #ff5f00;       /* Warning High-Visibility Orange */
    --primary-hover: #e05300;
    --primary-glow: rgba(255, 95, 0, 0.25);
    
    --secondary: #2563eb;     /* Trust Blue */
    --secondary-hover: #1d4ed8;
    
    --green-online: #10b981;  /* Active indicator green */
    --warning-yellow: #f59e0b; /* Alert Banner Yellow */
    
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --border-dark: #1e293b;
    --border-orange: rgba(255, 95, 0, 0.15);
    
    /* Font Design Tokens */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Animation & Utility Tokens */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 20px rgba(255, 95, 0, 0.2);
    
    --header-height: 80px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-deep);
    color: var(--text-light);
    font-family: var(--font-body);
}

body {
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* Global Subtle Grid Backdrop */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background-image: 
        linear-gradient(rgba(255, 95, 0, 0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 95, 0, 0.01) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

body::after {
    content: "";
    position: fixed;
    top: -10%;
    left: 30%;
    width: 600px;
    height: 600px;
    z-index: -1;
    background: radial-gradient(circle, rgba(255, 95, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(80px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Layout Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Common Styling */
section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--bg-warning-light);
    border: 1px solid var(--border-orange);
    color: var(--primary);
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-heading);
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.25;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Icons */
.icon {
    display: inline-block;
    vertical-align: middle;
}

.inline-icon {
    margin-right: 5px;
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-family: var(--font-heading);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-light);
    box-shadow: 0 4px 14px var(--primary-glow);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 95, 0, 0.4);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--text-light);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

.btn-warning {
    background-color: var(--warning-yellow);
    color: #000;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

.btn-warning:hover {
    background-color: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

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

.btn-primary-outline:hover {
    background-color: var(--primary);
    box-shadow: 0 4px 14px var(--primary-glow);
    transform: translateY(-2px);
}

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

.btn-secondary-outline:hover {
    background-color: var(--text-light);
    color: var(--bg-deep);
    transform: translateY(-2px);
}

.full-width {
    width: 100%;
}

/* Micro-Animation Pulses */
@keyframes pulse {
    0% {
        transform: scale(0.98);
        box-shadow: 0 0 0 0 rgba(255, 95, 0, 0.5);
    }
    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(255, 95, 0, 0);
    }
    100% {
        transform: scale(0.98);
        box-shadow: 0 0 0 0 rgba(255, 95, 0, 0);
    }
}

.pulse-btn {
    animation: pulse 2.5s infinite;
}

@keyframes pulseGreen {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* ===== FLOATING HEADER ===== */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    z-index: 1000;
    background: rgba(10, 13, 22, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    transition: var(--transition);
}

.header.scrolled {
    top: 0;
    width: 100%;
    border-radius: 0;
    border-top: none;
    border-left: none;
    border-right: none;
    background: rgba(3, 5, 10, 0.95);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0 24px;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--text-light);
    letter-spacing: -0.03em;
}

.accent-text {
    color: var(--primary);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: -2px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--green-online);
    display: inline-block;
    animation: pulseGreen 2s infinite;
}

.status-text {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Nav Menu Links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--text-light);
}

.btn-call-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-warning-light);
    border: 1px solid var(--border-orange);
    color: var(--primary);
    padding: 10px 18px;
    border-radius: 99px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    font-family: var(--font-heading);
    transition: var(--transition);
}

.btn-call-header:hover {
    background: var(--primary);
    color: var(--text-light);
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 95, 0, 0.08) 0%, transparent 60%);
    top: 5%;
    right: -10%;
    z-index: -1;
    filter: blur(60px);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 95, 0, 0.06);
    border: 1px solid rgba(255, 95, 0, 0.15);
    border-radius: 99px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 620px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 50px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 25px;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-val {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-light);
}

.trust-lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.trust-divider {
    width: 1px;
    height: 35px;
    background-color: var(--border-dark);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-img-container {
    position: relative;
    border-radius: 20px;
    padding: 10px;
    background: rgba(255, 95, 0, 0.05);
    border: 1px solid rgba(255, 95, 0, 0.1);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 440px;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    object-fit: cover;
}

.hero-img-badge {
    position: absolute;
    bottom: 25px;
    left: -25px;
    background: rgba(10, 13, 22, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 95, 0, 0.2);
    padding: 12px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    z-index: 10;
}

.badge-status {
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
}

.badge-sub {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 500;
}

/* ===== EMERGENCY BANNER ===== */
.emergency-banner {
    background: linear-gradient(135deg, #1c140a 0%, #0d0a05 100%);
    border-top: 1px solid rgba(245, 158, 11, 0.2);
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
    padding: 24px 0;
}

.emergency-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.emergency-info {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 800px;
}

.warning-icon {
    width: 50px;
    height: 50px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warning-yellow);
    flex-shrink: 0;
}

.emergency-info h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-light);
}

.emergency-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== SERVICES SECTION ===== */
.services {
    background-color: var(--bg-surface);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(16, 22, 38, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 40px 30px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(20, 27, 46, 0.7);
    border-color: rgba(255, 95, 0, 0.1);
    box-shadow: var(--shadow-md);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 95, 0, 0.06);
    border: 1px solid rgba(255, 95, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--text-light);
    box-shadow: 0 4px 12px var(--primary-glow);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--text-light);
}

.service-link svg {
    transition: var(--transition);
}

.service-link:hover svg {
    transform: translateX(4px);
}

/* ===== COVERAGE AREAS (SEO) ===== */
.areas-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: stretch;
}

.areas-list-card {
    background: rgba(16, 22, 38, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 40px 30px;
}

.areas-list-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.cities-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
    margin-bottom: 30px;
}

.city-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.city-item .bullet {
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
}

.highway-mention {
    padding-top: 24px;
    border-top: 1px solid var(--border-dark);
    font-size: 0.95rem;
    color: var(--text-muted);
}

.highway-mention strong {
    color: var(--text-light);
}

.areas-cta-card {
    background: linear-gradient(135deg, #090e1a 0%, #050811 100%);
    border: 1px solid rgba(255, 95, 0, 0.15);
    border-radius: 16px;
    padding: 45px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.areas-cta-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 95, 0, 0.1) 0%, transparent 60%);
    bottom: -30px;
    right: -30px;
    z-index: 1;
    filter: blur(20px);
}

.areas-cta-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.areas-cta-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.areas-cta-card .btn {
    position: relative;
    z-index: 2;
}

/* ===== GALLERY SECTION ===== */
.gallery {
    background-color: var(--bg-surface);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(255, 255, 255, 0.03);
    background: rgba(16, 22, 38, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3, 5, 10, 0.8), transparent);
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-item:hover::after {
    opacity: 1;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: rgba(16, 22, 38, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 35px;
    display: flex;
    flex-direction: column;
}

.stars {
    color: var(--warning-yellow);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.comment {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 25px;
    flex-grow: 1;
}

.client-info {
    display: flex;
    flex-direction: column;
}

.client-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
}

.client-location {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ===== ABOUT SECTION ===== */
.about {
    background-color: var(--bg-surface);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.about-text {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 20px;
}

.about-text strong {
    color: var(--text-light);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.about-feat-item {
    display: flex;
    gap: 15px;
}

.about-feat-icon {
    width: 40px;
    height: 40px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-online);
    flex-shrink: 0;
}

.about-feat-item h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

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

.about-badge-card {
    background: linear-gradient(135deg, #101626 0%, #060910 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 10px;
    box-shadow: var(--shadow-lg);
}

.about-badge-inner {
    border: 1px dashed rgba(255, 95, 0, 0.2);
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
}

.experience-years {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}

.experience-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-light);
}

.experience-divider {
    height: 1px;
    background-color: var(--border-dark);
    margin-bottom: 25px;
}

.experience-list {
    text-align: left;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.experience-list li {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* ===== FINAL CALL TO ACTION ===== */
.final-cta {
    text-align: center;
    padding: 100px 0;
    overflow: hidden;
}

.final-cta-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 95, 0, 0.08) 0%, transparent 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    filter: blur(50px);
}

.final-cta h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.final-cta p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto 40px auto;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #020306;
    border-top: 1px solid var(--border-dark);
    padding: 70px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--text-light);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    display: block;
}

.footer-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.address-details {
    display: flex;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.address-details svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-light);
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-contact li {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
}

.footer-contact strong {
    color: var(--text-light);
    margin-bottom: 3px;
}

.footer-link-highlight {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    font-family: var(--font-heading);
}

.footer-bottom {
    border-top: 1px solid var(--border-dark);
    padding-top: 30px;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-creator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
}

.footer-creator:hover {
    color: var(--text-light);
}

.creator-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

@keyframes pulseLogo {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
        filter: drop-shadow(0 0 8px rgba(37, 99, 235, 0.5));
    }
    100% {
        transform: scale(1);
    }
}

.pulse-logo {
    animation: pulseLogo 2s infinite ease-in-out;
}

/* ===== FIXED FLOATING ACTIONS (MOBILE GOOGLE ADS) ===== */
.floating-actions {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 480px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 12px;
    z-index: 999;
}

.float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 54px;
    border-radius: 27px;
    color: var(--text-light);
    font-weight: 700;
    font-family: var(--font-heading);
    text-decoration: none;
    font-size: 0.95rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.float-call {
    background-color: var(--secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.float-call:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
}

.float-whatsapp {
    background-color: #25d366; /* Official WhatsApp Green */
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: pulse 2.5s infinite;
}

.float-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
}

/* Responsive Hidden actions */
@media (min-width: 768px) {
    .floating-actions {
        display: none; /* Hide floating buttons on larger screens */
    }
}

/* ===== RESPONSIVE DESIGN & MEDIA QUERIES ===== */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .header {
        top: 0;
        width: 100%;
        border-radius: 0;
        border-top: none;
        border-left: none;
        border-right: none;
        background: rgba(10, 13, 22, 0.95);
    }
    
    .header-container {
        height: 60px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Mobile Menu Drawer style */
    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: 0;
        background: #0a0d16;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 20px;
        padding: 0;
        overflow: hidden;
        transition: var(--transition);
        border-bottom: 0px solid var(--border-dark);
    }
    
    .nav-menu.active {
        height: auto;
        padding: 40px 0;
        border-bottom: 1px solid var(--border-dark);
    }
    
    .nav-link {
        font-size: 1.1rem;
    }
    
    .btn-call-header {
        display: none; /* Hide top bar call on mobile, using floating actions */
    }
    
    .hero {
        padding-top: 100px;
        padding-bottom: 50px;
        min-height: auto;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .hero-badge {
        margin-bottom: 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-desc {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-actions {
        justify-content: center;
        margin-bottom: 30px;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .hero-trust {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px 20px;
    }
    
    .hero-visual {
        order: -1; /* Show image above text on mobile */
    }
    
    .hero-img-badge {
        bottom: 15px;
        left: 15px;
        padding: 8px 16px;
    }
    
    .emergency-flex {
        text-align: center;
        justify-content: center;
    }
    
    .emergency-info {
        flex-direction: column;
    }
    
    .emergency-banner .btn {
        width: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .areas-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cities-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .about-badge-card {
        order: -1;
    }
    
    .final-cta h2 {
        font-size: 1.8rem;
    }
    
    .final-cta-buttons .btn {
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
    }
}
