/* =========================================
    0. BRAND VARIABLES
    ========================================= */
:root {
    --brand-green: #16a34a;
    --brand-green-glow: rgba(22, 163, 74, 0.4);
    --brand-green-light: #22c55e;
    --brand-navy: #0f172a;
    --brand-navy-light: #1e293b;
    --text-main: #334155;
    --text-light: #94a3b8;
    --surface-bg: #f8fafc;
    --white: #ffffff;
    --border-light: rgba(255, 255, 255, 0.1);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: all 0.4s var(--ease-out-expo);
    --shadow-float: 0 20px 40px -10px rgba(15, 23, 42, 0.15);
    --shadow-glow: 0 0 20px var(--brand-green-glow);
    --dot-pattern: radial-gradient(circle, #cbd5e1 1px, transparent 1px);
}

/* =========================================
    1. RESET & BASE
    ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
.brand-logo {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.1;
    text-transform: uppercase;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
}

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

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

/* =========================================
    2. DYNAMIC MORPHING NAV & MOBILE MENU
    ========================================= */
.header-wrapper {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1400px;
    z-index: 1000;
    transition: all 0.6s var(--ease-out-expo);
}

.header-wrapper.scrolled {
    width: 65%;
    max-width: 900px;
    top: 15px;
}

.main-header {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
    transition: all 0.6s var(--ease-out-expo);
}

.header-wrapper.scrolled .main-header {
    padding: 10px 25px;
    background: rgba(15, 23, 42, 0.95);
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition-smooth);
    transform-origin: left center;
}

.brand-logo img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.header-wrapper.scrolled .brand-logo {
    transform: scale(0.85);
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
    transition: var(--transition-smooth);
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--brand-green);
}

.magnetic-wrap {
    display: inline-block;
}

.btn-call {
    background: var(--brand-green);
    color: var(--white);
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: inline-block;
    box-shadow: var(--shadow-glow);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease, box-shadow 0.3s ease;
}

.btn-call:hover {
    background: var(--brand-green-light);
    box-shadow: 0 10px 25px var(--brand-green-glow);
}

/* Mobile Hamburger Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--white);
    margin-bottom: 5px;
    transition: var(--transition-smooth);
    border-radius: 3px;
}

.mobile-menu-btn.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.is-active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Full Screen Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: var(--transition-smooth);
}

.mobile-drawer.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-drawer a {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.mobile-drawer .btn-call {
    font-size: 1.2rem;
    padding: 18px 40px;
    margin-top: 20px;
}

/* =========================================
    3. AFFORDABLE HERO SECTION
    ========================================= */
.hero {
    position: relative;
    padding: 180px 0 160px;
    background: var(--brand-navy);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url('images/hero.jpg') center/cover;
    opacity: 0.4;
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-text h1 {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    letter-spacing: -2px;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-text h1 span {
    background: linear-gradient(135deg, var(--brand-green-light) 0%, var(--brand-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-form {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-float);
}

.hero-form h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.hero-form p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

/* Add this below your .hero-form styles */
.solid-form {
    background: var(--brand-navy);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-float);
}

/* Update the existing input rules to include textareas */
.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--brand-green);
    background: rgba(15, 23, 42, 0.9);
}

.btn-submit {
    width: 100%;
    background: var(--brand-green);
    color: var(--white);
    border: none;
    padding: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: 10px;
}

.btn-submit:hover {
    background: var(--brand-green-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* =========================================
    4. OVERLAPPING TRUST BAR
    ========================================= */
.trust-wrapper {
    position: relative;
    z-index: 20;
    margin-top: -60px;
    padding: 0 5%;
}

.trust-bar {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-float);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: var(--surface-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--brand-green);
}

.trust-text h4 {
    color: var(--brand-navy);
    font-size: 1.4rem;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.trust-text p {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
    5. HOW IT WORKS
    ========================================= */
.process-section {
    padding: 120px 0 60px;
    background: var(--surface-bg);
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    position: relative;
    padding: 40px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    z-index: 1;
    border-bottom: 4px solid transparent;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-float);
    border-bottom: 4px solid var(--brand-green);
}

.step-number {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Montserrat', sans-serif;
    font-size: 6rem;
    font-weight: 900;
    color: var(--surface-bg);
    z-index: -1;
    line-height: 1;
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--brand-navy);
}

.process-step p {
    font-size: 0.95rem;
    color: var(--text-main);
}

/* =========================================
    6. BENTO BOX: PROJECT USE CASES
    ========================================= */
.services-section {
    padding: 60px 0 120px;
    background: var(--surface-bg);
    background-image: var(--dot-pattern);
    background-size: 20px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 3.5rem;
    letter-spacing: -2px;
    color: var(--brand-navy);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-main);
    max-width: 600px;
    margin: 0 auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(300px, auto);
    gap: 30px;
}

.bento-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-bottom: 4px solid transparent;
}

.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-float);
    border-bottom: 4px solid var(--brand-green);
}

.bento-large {
    grid-column: span 2;
    background: var(--brand-navy);
    color: var(--white);
    border-bottom: 4px solid transparent;
}

.bento-large h3 {
    color: var(--white);
}

.bento-large .service-list li {
    color: rgba(255, 255, 255, 0.8);
}

.bento-large .service-list li::before {
    color: var(--brand-green);
}

.bento-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
    z-index: 2;
    position: relative;
}

.service-list {
    list-style: none;
    position: relative;
    z-index: 2;
}

.service-list li {
    margin-bottom: 12px;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-main);
}

.service-list li::before {
    content: "✦";
    color: var(--brand-green);
    font-size: 1.2rem;
}

.card-decorator {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 8rem;
    opacity: 0.03;
    line-height: 1;
    pointer-events: none;
}

.bento-large .card-decorator {
    opacity: 0.1;
    color: var(--white);
}

/* =========================================
    7. INTERACTIVE DUMPSTER SIZE ESTIMATOR
    ========================================= */
.pricing-section {
    padding: 100px 0;
    background: var(--brand-navy);
    color: var(--white);
    text-align: center;
}

.pricing-section .section-header h2 {
    color: var(--white);
}

.pricing-section .section-header p {
    color: var(--text-light);
}

.estimator-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--brand-navy-light);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-float);
}

.size-selector {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.size-btn {
    background: rgba(15, 23, 42, 0.6);
    color: var(--text-light);
    border: 2px solid var(--border-light);
    padding: 12px 24px;
    border-radius: 100px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.size-btn:hover {
    border-color: rgba(22, 163, 74, 0.5);
    color: var(--white);
}

.size-btn.active {
    background: var(--brand-green);
    border-color: var(--brand-green);
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.size-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
}

.size-image {
    border-radius: 12px;
    height: 250px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

.size-info h3 {
    font-size: 2rem;
    color: var(--brand-green);
    margin-bottom: 10px;
}

.size-info p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.size-specs {
    list-style: none;
    margin-bottom: 30px;
}

.size-specs li {
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--white);
    font-weight: 500;
}

.size-specs li::before {
    content: "✓";
    color: var(--brand-green);
}

.price-tag {
    font-size: 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    letter-spacing: -1px;
}

.price-tag span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0;
}

/* =========================================
    8. PROJECT GALLERY 
    ========================================= */
.gallery-section {
    padding: 100px 0;
    background: var(--surface-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-card);
    cursor: pointer;
    background: var(--brand-navy);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

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

.gallery-overlay h4 {
    color: var(--brand-green);
    font-size: 1.3rem;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: transform 0.4s var(--ease-out-expo);
}

.gallery-overlay p {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    transform: translateY(20px);
    transition: transform 0.4s var(--ease-out-expo) 0.05s;
}

.gallery-item:hover .gallery-overlay h4,
.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

/* =========================================
    9. MASSIVE CTA STRIP
    ========================================= */
.cta-strip {
    background: var(--brand-green);
    padding: 100px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-strip::before {
    content: 'RENT IT';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Montserrat', sans-serif;
    font-size: 15rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    pointer-events: none;
}

.cta-strip h2 {
    color: var(--white);
    font-size: clamp(3rem, 5vw, 4.5rem);
    letter-spacing: -2px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.cta-strip p {
    font-size: 1.2rem;
    font-weight: 600;
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 2;
}

.btn-inverse {
    background: var(--brand-navy);
    color: var(--white);
    text-decoration: none;
    padding: 20px 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 100px;
    transition: var(--transition-smooth);
    display: inline-block;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-float);
}

.btn-inverse:hover {
    background: var(--brand-navy-light);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.4);
}

/* =========================================
    10. MODERN 4-COLUMN FOOTER
    ========================================= */
.main-footer {
    background: var(--brand-navy);
    padding: 80px 0 40px;
    border-top: 4px solid var(--brand-green);
    color: var(--text-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo img {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer-about {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 350px;
}

.footer-heading {
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    display: block;
}

.footer-links a:hover {
    color: var(--brand-green);
    padding-left: 5px;
}

.footer-contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-contact-info span {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-bottom p {
    font-size: 1.2em;
}

.footer-bottom-links a {
    color: var(--text-light);
    text-decoration: none;
    margin-left: 20px;
    transition: var(--transition-smooth);
}

.footer-bottom-links a:hover {
    color: var(--white);
}

.agency-credit {
    color: var(--brand-green-glow);
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* =========================================
   FLOATING CARDS & FORMS (Contact Page)
   ========================================= */
.floating-card {
    background: transparent;
    border-radius: 20px;
    padding: 40px;
    box-shadow: none;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.floating-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-float);
    transform: translateY(-8px);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.floating-form {
    background: transparent;
    border-radius: 20px;
    padding: 40px;
    box-shadow: none;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
}

.floating-form:hover {
    background: var(--white);
    box-shadow: var(--shadow-float);
    transform: translateY(-8px);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.floating-form .input-group input,
.floating-form .input-group select,
.floating-form .input-group textarea {
    background: var(--surface-bg);
    border: 1px solid #cbd5e1;
    color: var(--text-main);
}

.floating-form .input-group input:focus,
.floating-form .input-group select:focus,
.floating-form .input-group textarea:focus {
    border-color: var(--brand-green);
    background: var(--white);
    color: var(--brand-navy);
}

/* =========================================
    11. MULTI-CHANNEL FLOATING WIDGET
    ========================================= */
.floating-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 15px;
}

.fab-main {
    width: 65px;
    height: 65px;
    background: #fce74c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
    color: var(--brand-navy);
}

.fab-main:hover {
    transform: scale(1.05);
}

.fab-main svg {
    width: 32px;
    height: 32px;
}

.fab-actions {
    display: flex;
    flex-direction: column-reverse;
    gap: 15px;
    align-items: center;
    margin-bottom: 5px;
    pointer-events: none;
}

.fab-action {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    transition: all 0.3s var(--ease-out-expo);
    position: relative;
}

.floating-widget.is-open .fab-actions {
    pointer-events: auto;
}

.floating-widget.is-open .fab-action {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.floating-widget.is-open .fab-phone {
    transition-delay: 0.05s;
}

.floating-widget.is-open .fab-email {
    transition-delay: 0.1s;
}

.floating-widget.is-open .fab-whatsapp {
    transition-delay: 0.15s;
}

.floating-widget.is-open .fab-messenger {
    transition-delay: 0.2s;
}

.fab-phone {
    background: #1cd485;
}

.fab-email {
    background: #ff4a5a;
}

.fab-whatsapp {
    background: #4ced69;
}

.fab-messenger {
    background: #1e88e5;
}

.fab-action svg {
    width: 26px;
    height: 26px;
}

.fab-action:hover {
    transform: scale(1.1) !important;
}

.fab-tooltip {
    position: absolute;
    right: 70px;
    background: #fce74c;
    color: var(--brand-navy);
    padding: 8px 16px;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.fab-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #fce74c;
}

.floating-widget.is-open .fab-action:hover .fab-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* =========================================
    RESPONSIVE DESIGN (MOBILE READY)
    ========================================= */
@media (max-width: 1024px) {
    .header-wrapper.scrolled {
        width: 85%;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text p {
        margin: 0 auto 30px;
    }

    .hero::before {
        width: 100%;
        opacity: 0.2;
        mask-image: none;
        -webkit-mask-image: none;
    }

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

    .bento-large {
        grid-column: span 1;
    }

    .trust-bar {
        padding: 30px;
        justify-content: center;
    }

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

    .size-details {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .size-specs li {
        justify-content: center;
    }

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

@media (max-width: 768px) {
    .header-wrapper {
        padding: 10px;
        top: 0;
        width: 100%;
        transform: none;
        left: 0;
    }

    .header-wrapper.scrolled {
        width: 100%;
        top: 0;
    }

    .main-header {
        border-radius: 12px;
        padding: 10px 20px;
    }

    .header-wrapper.scrolled .main-header {
        border-radius: 12px;
    }

    .nav-links,
    .magnetic-wrap {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 140px 0 100px;
    }

    .trust-wrapper {
        margin-top: -30px;
    }

    .trust-item {
        width: 100%;
        justify-content: center;
        text-align: left;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .cta-strip::before {
        font-size: 8rem;
    }

    .floating-widget {
        bottom: 20px;
        right: 20px;
    }

    .fab-main {
        width: 60px;
        height: 60px;
    }

    .fab-action {
        width: 50px;
        height: 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-about {
        margin: 0 auto 20px;
    }

    .footer-contact-info p {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom-links a {
        margin: 0 10px;
    }

    .footer-links a:hover {
        padding-left: 0;
        color: var(--brand-green);
    }
}