/* ==========================================================================
   SUMMIT ROOFING & EXTERIORS LANDING PAGE
   Warm Masculine Charcoal & Vibrant Orange Premium UI/UX Design System
   ========================================================================== */

:root {
    /* Luxury Charcoal Palette */
    --bg-page: #111317;
    --bg-surface: #181B22;
    --bg-card: #1D212A;
    --bg-card-hover: #262B37;
    
    --text-main: #FFFFFF;
    --text-muted: #94A3B8;
    --text-light: #64748B;
    
    /* Vibrant Orange Accent (Exclusive for CTAs) */
    --orange: #FF6B00;
    --orange-dark: #E05300;
    --orange-light: #FF8F40;
    --orange-subtle: rgba(255, 107, 0, 0.1);
    
    /* Deep Slate Blue (Secondary accents) */
    --blue: #38BDF8;
    --blue-light: #0EA5E9;
    --blue-subtle: rgba(56, 189, 248, 0.08);
    
    /* Semantic Colors */
    --red: #EF4444;
    --red-subtle: rgba(239, 68, 68, 0.08);
    --green: #10B981;
    --green-subtle: rgba(16, 185, 129, 0.08);
    
    /* Borders & Outlines */
    --border: #262B37;
    --border-orange: rgba(255, 107, 0, 0.2);
    
    /* Borders Radius & Transit */
    --radius: 12px;
    --radius-sm: 6px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Global Reset & A11y Focus
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-page);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

button, select, input, textarea {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    color: inherit;
}

/* Keyboard A11y Focus Ring */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 4px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-page);
}
::-webkit-scrollbar-thumb {
    background: #262B37;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--orange);
}

/* Layout Utilities */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.orange-accent { color: var(--orange); }
.blue-accent { color: var(--blue); }
.mt-4 { margin-top: 1rem; }
.btn-block { width: 100%; display: flex; }

/* ==========================================================================
   Typography Hierarchy
   ========================================================================== */
h1, h2, h3, .brand-logo, .footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* ==========================================================================
   Buttons System & Shimmer Effect
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.92rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

.btn-xl {
    padding: 18px 36px;
    font-size: 1.08rem;
    border-radius: var(--radius);
}

.btn-orange {
    background-color: var(--orange);
    color: #FFFFFF;
    font-weight: 600;
}

/* Elegant light reflection moving sweep across orange buttons */
.btn-orange::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 40%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: buttonSweep 6s infinite linear;
}

@keyframes buttonSweep {
    0% { left: -75%; }
    18%, 100% { left: 125%; }
}

.btn-orange:hover {
    background-color: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.3);
}

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

.btn-outline:hover {
    background-color: var(--orange-subtle);
    border-color: var(--orange);
    transform: translateY(-2px);
}

/* ==========================================================================
   Header Navigation
   ========================================================================== */
.header {
    background-color: rgba(17, 19, 23, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.brand-logo {
    font-size: 1.45rem;
    letter-spacing: 0.5px;
    font-weight: 700;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
}

.brand-logo-img {
    height: 110px;
    width: auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.sub-brand {
    font-family: 'Inter', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 1.5px;
    color: var(--text-light);
    font-weight: 600;
    margin-top: 3px;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-item {
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.nav-item:hover, .nav-item.active {
    color: var(--orange);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-btn {
    display: none;
    color: var(--text-main);
}

/* Mobile Drawer Menu */
.mobile-drawer {
    display: none;
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    background-color: rgba(17, 19, 23, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 99;
    padding: 30px 24px;
}

.mobile-drawer-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}

.mobile-link {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
    width: 100%;
    padding: 8px 0;
}

.mobile-link:hover {
    color: var(--orange);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    padding: 120px 0 140px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.hero-inner {
    display: flex;
    justify-content: flex-start;
}

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

.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--orange-subtle);
    color: var(--orange);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    border: 1px solid var(--border-orange);
}

/* Dynamic pulse ring overlay animation for status dot */
.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--orange);
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-shadow: 0 0 6px var(--orange);
}

.status-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--orange);
    border-radius: 50%;
    animation: rippleGlow 1.8s infinite ease-in-out;
}

@keyframes rippleGlow {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.6); opacity: 0; }
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.75;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 64px;
}

.hero-highlights {
    display: flex;
    gap: 48px;
    border-top: 1px solid var(--border);
    padding-top: 40px;
}

.hh-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hh-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
}

.hh-txt {
    font-size: 0.8rem;
    color: var(--text-light);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ==========================================================================
   Trust Credentials Strip
   ========================================================================== */
.trust-strip {
    background-color: var(--bg-surface);
    border-bottom: 1px solid var(--border);
    padding: 32px 0;
}

.trust-strip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-badge-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tb-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--orange);
}

.tb-desc {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   Seções Gerais
   ========================================================================== */
.section {
    padding: 120px 0;
    border-bottom: 1px solid var(--border);
}

.section-dark {
    background-color: var(--bg-surface);
}

.section-top {
    max-width: 720px;
    margin: 0 auto 64px;
}

.sub-tag {
    display: inline-block;
    color: var(--orange);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.section-top h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-top p {
    font-size: 1.08rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* ==========================================================================
   Services Grid
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-orange);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.service-icon-wrap {
    width: 48px;
    height: 48px;
    background-color: var(--orange-subtle);
    color: var(--orange);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--text-main);
}

.service-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--orange);
}

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

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.why-us-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    transition: var(--transition);
}

.why-us-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.why-us-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    color: var(--text-main);
    margin-bottom: 12px;
}

.why-us-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   Project Showcase Section
   ========================================================================== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.project-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-orange);
    box-shadow: 0 24px 48px rgba(0,0,0,0.5);
}

.project-img-wrap {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-img {
    transform: scale(1.05);
}

.project-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--orange);
    color: #FFFFFF;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    z-index: 2;
}

.project-body {
    padding: 28px;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.project-loc {
    font-size: 0.75rem;
    color: var(--text-light);
    letter-spacing: 0.5px;
    font-weight: 500;
}

.project-time {
    font-size: 0.75rem;
    color: var(--orange);
    font-weight: 600;
}

.project-body h3 {
    font-size: 1.4rem;
    color: var(--text-main);
    line-height: 1.3;
}

/* ==========================================================================
   Installation Process Timeline
   ========================================================================== */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    position: relative;
}

@media (min-width: 1025px) {
    .process-timeline::before {
        content: '';
        position: absolute;
        top: 36px;
        left: 8%;
        width: 84%;
        height: 1px;
        border-top: 1px dashed rgba(255, 107, 0, 0.2);
        z-index: 1;
        pointer-events: none;
    }
}

.process-step {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    position: relative;
    z-index: 2;
}

.process-step:hover {
    border-color: var(--border-orange);
}

.step-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 16px;
}

.process-step h4 {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   Agent Story & Differentiators Section
   ========================================================================== */
.about-layout {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.about-team-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius);
    display: block;
}

.about-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(17, 19, 23, 0.6) 0%, rgba(17, 19, 23, 0) 100%);
    pointer-events: none;
}

.about-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--orange);
    margin-bottom: 20px;
}

.about-text {
    font-size: 1.02rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
}

.about-spec-box h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1.2;
}

.about-spec-box p {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* ==========================================================================
   Google Reviews Style Testimonials Grid
   ========================================================================== */
.testimonials-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.google-review-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.google-review-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-orange);
}

.gr-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    position: relative;
}

.gr-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #20242D;
}

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

.gr-author-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
}

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

.google-logo-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background-color: #4285F4;
    color: #FFFFFF;
    font-size: 0.72rem;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gr-stars {
    font-size: 0.85rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.gr-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-style: italic;
}

/* ==========================================================================
   FAQ Section (Accordion)
   ========================================================================== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.faq-trigger {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
    text-align: left;
}

.faq-icon {
    font-size: 1.25rem;
    color: var(--orange);
    transition: var(--transition);
}

.faq-content {
    padding: 0 24px 24px;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ==========================================================================
   Lead Capturing Contact Form Panel
   ========================================================================== */
.contact-panel {
    max-width: 880px;
    margin: 0 auto;
    background-color: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 60px 48px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.contact-header {
    margin-bottom: 40px;
}

.contact-header h2 {
    font-size: 2.5rem;
    margin: 8px 0 12px;
}

.contact-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.urgency-banner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--orange-subtle);
    border: 1px solid rgba(255, 107, 0, 0.15);
    color: var(--orange);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    max-width: 90%;
    margin: 0 auto;
}

.urgency-icon {
    font-size: 1rem;
}

.roof-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.form-input {
    width: 100%;
    height: 48px;
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0 16px;
    color: var(--text-main);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.form-input:focus {
    border-color: var(--orange);
}

textarea.form-input {
    height: auto;
    padding: 16px;
}

.form-disclaimer {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 12px;
}

.success-message {
    padding: 40px 0;
}

.success-message h3 {
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: 12px;
}

.success-message p {
    color: var(--text-muted);
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.footer {
    background-color: #0c0e11;
    border-top: 1px solid var(--border);
    padding: 80px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 320px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col p, .footer-col li {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.footer-col a:hover {
    color: var(--orange);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.bottom-inner {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    color: var(--text-light);
    flex-wrap: wrap;
    gap: 12px;
}

/* ==========================================================================
   Floating Advisor CTA Widget (Phone and Quote)
   ========================================================================== */
.floating-cta-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 90;
}

.floating-cta {
    background-color: var(--orange);
    color: #FFFFFF;
    border-radius: 50px;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.3);
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.floating-cta:hover {
    background-color: var(--orange-light);
    transform: translateY(-3px);
}

.float-phone {
    background-color: var(--bg-card);
    border: 1px solid var(--border-orange);
    color: var(--orange);
}

.float-phone:hover {
    background-color: var(--orange-subtle);
}

.floating-cta-pulse {
    width: 8px;
    height: 8px;
    background-color: #FFFFFF;
    border-radius: 50%;
    position: relative;
}

.float-phone .floating-cta-pulse {
    background-color: var(--orange);
}

.floating-cta-pulse::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    border-radius: 50%;
    animation: floatingPulse 1.8s infinite ease-in-out;
}

.float-phone .floating-cta-pulse::after {
    background-color: var(--orange);
}

@keyframes floatingPulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(2.8); opacity: 0; }
}

/* ==========================================================================
   Responsive Overrides
   ========================================================================== */

/* Tablets Breakpoints (up to 1024px) */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-image-wrap {
        max-width: 460px;
        margin: 0 auto;
    }
    
    .about-specs-grid {
        justify-content: center;
    }
    
    .testimonials-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        max-width: 100%;
    }
}

/* Mobile Breakpoints (up to 768px) */
@media (max-width: 768px) {
    .brand-logo-img {
        height: 55px;
    }

    .header-inner {
        height: 80px;
    }
    
    .nav {
        display: none; /* Mobile Menu triggers drawer */
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .header-cta .btn {
        display: none; /* Hide header cta on mobile */
    }
    
    .hero {
        padding: 80px 0;
        text-align: center;
    }
    
    .hero-inner {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-highlights {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .testimonials-reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .section-top h2 {
        font-size: 2.1rem;
    }
    
    .contact-panel {
        padding: 30px 16px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .bottom-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }
    
    .floating-cta-wrap {
        bottom: 20px;
        right: 20px;
        flex-direction: row;
        width: calc(100% - 40px);
        justify-content: space-between;
    }
    
    .floating-cta {
        padding: 12px 20px;
        font-size: 0.8rem;
        flex: 1;
        justify-content: center;
    }
}
