/* ==========================================================================
   FK MOTOS - CSS STYLESHEET
   Matching FK Express Aesthetic: Sleek Dark Mode with Vibrant Yellow Accents
   ========================================================================== */

:root {
    --primary-yellow: #FFCC00;
    --primary-yellow-hover: #E6B800;
    --yellow-glow: rgba(255, 204, 0, 0.3);
    
    --bg-dark: #0A0C10;
    --bg-surface: #12151E;
    --bg-card: #191D2B;
    --bg-card-hover: #212638;
    
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-yellow: rgba(255, 204, 0, 0.25);
    
    --text-white: #FFFFFF;
    --text-muted: #A0A6B8;
    --text-dim: #6B7280;
    
    --whatsapp-green: #25D366;
    --whatsapp-hover: #20bd5a;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-full: 9999px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

ul {
    list-style: none;
}

img, video {
    max-width: 100%;
    display: block;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.text-center { text-align: center; }
.highlight-yellow { color: var(--primary-yellow); }
.text-yellow { color: var(--primary-yellow); }
.mt-3 { margin-top: 1rem; }

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.75rem 1.6rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-yellow {
    background-color: var(--primary-yellow);
    color: #0A0C10;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.2);
}

.btn-yellow:hover {
    background-color: var(--primary-yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--yellow-glow);
}

.btn-outline {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-white);
}

.btn-outline:hover {
    border-color: var(--primary-yellow);
    color: var(--primary-yellow);
    background-color: rgba(255, 204, 0, 0.05);
    transform: translateY(-2px);
}

.btn-large {
    padding: 0.95rem 2.2rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.btn-full {
    width: 100%;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 12, 16, 0.85);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1rem 0;
    transition: var(--transition-normal);
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-badge {
    width: 42px;
    height: 42px;
    background-color: var(--primary-yellow);
    color: #0A0C10;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.1rem;
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.4);
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--text-white);
    letter-spacing: 1px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-white);
}

.nav-link.active::after, .nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-yellow);
    border-radius: 2px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.9);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(180deg, rgba(10, 12, 16, 0.45) 0%, rgba(10, 12, 16, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 204, 0, 0.15);
    border: 1px solid var(--primary-yellow);
    color: var(--primary-yellow);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.hero-description-card {
    background: rgba(25, 29, 43, 0.75);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-left: 4px solid var(--primary-yellow);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
    max-width: 720px;
}

.hero-description-card p {
    font-size: 1.05rem;
    color: var(--text-muted);
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

/* Quick Stats Bar */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(7, auto);
    align-items: center;
    background: rgba(18, 21, 30, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    padding: 1.25rem 2rem;
    border-radius: var(--radius-md);
    width: fit-content;
}

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

.stat-num {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--primary-yellow);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 35px;
    background-color: var(--border-subtle);
    margin: 0 1.5rem;
}

}

/* Trusted Companies Marquee */
.trusted-companies {
    background-color: var(--bg-surface);
    padding: 3rem 0 1rem;
    overflow: hidden;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-surface), transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-surface), transparent);
}

.marquee-content {
    display: inline-block;
    animation: scroll-left 40s linear infinite;
}

.company-name {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dim);
    margin: 0 2.5rem;
    letter-spacing: 1px;
    transition: var(--transition-normal);
}

.company-name:hover {
    color: var(--primary-yellow);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Global Section Styles */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    color: var(--primary-yellow);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 1rem;
}

.section-description {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem auto;
    font-size: 1.05rem;
}

/* Services Section */
.services-section {
    background-color: var(--bg-surface);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-5px);
    background-color: var(--bg-card-hover);
    border-color: var(--border-yellow);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    background: var(--primary-yellow);
}

.service-icon {
    width: 55px;
    height: 55px;
    background-color: rgba(255, 204, 0, 0.1);
    color: var(--primary-yellow);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    background-color: var(--primary-yellow);
    color: #0A0C10;
}

.service-title {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.service-text {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* Services Banner */
.services-banner {
    background: linear-gradient(135deg, rgba(25, 29, 43, 0.9) 0%, rgba(18, 21, 30, 0.9) 100%);
    border: 1px solid var(--border-yellow);
    border-radius: var(--radius-lg);
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 700px;
}

.banner-icon {
    font-size: 2.5rem;
    color: var(--primary-yellow);
}

.banner-title {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

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

/* Billing Section */
.billing-section {
    background-color: var(--bg-dark);
}

.billing-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.billing-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2.25rem 1.75rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
}

.billing-card.highlight {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 25px rgba(255, 204, 0, 0.15);
    background: linear-gradient(180deg, #1D2232 0%, #151824 100%);
}

.billing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-yellow);
    color: #0A0C10;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem;
    padding: 0.25rem 1rem;
    border-radius: var(--radius-full);
}

.billing-icon-top {
    font-size: 2rem;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.billing-price {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.billing-price .tax-tag, .billing-price .unit-tag {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.billing-card-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.billing-card-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.billing-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.billing-features li {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.billing-card.corporate {
    border-style: dashed;
    border-color: rgba(255, 255, 255, 0.2);
}

/* Maps Verification Box */
.maps-verification-box {
    background: rgba(18, 21, 30, 0.6);
    border: 1px solid var(--border-subtle);
    border-left: 4px solid var(--primary-yellow);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 850px;
    margin: 0 auto;
}

.maps-box-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 204, 0, 0.1);
    color: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.maps-box-content h4 {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.maps-box-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Tariff Calculator Section */
.calc-section {
    background-color: var(--bg-surface);
}

.calc-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.calc-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.calc-desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.calc-rules-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rule-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-card);
    padding: 0.9rem 1.2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    font-size: 0.92rem;
    color: var(--text-muted);
}

.calc-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-yellow);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.calc-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-subtle);
}

.calc-card-header h3 {
    font-size: 1.3rem;
}

.badge-live {
    background-color: rgba(37, 211, 102, 0.15);
    color: var(--whatsapp-green);
    border: 1px solid var(--whatsapp-green);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
}

.form-group {
    margin-bottom: 1.75rem;
}

.label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.label-row label {
    font-weight: 600;
    font-size: 0.95rem;
}

.range-val {
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--primary-yellow);
    font-size: 1.1rem;
}

.custom-range {
    width: 100%;
    height: 8px;
    background: #0A0C10;
    border-radius: var(--radius-full);
    outline: none;
    accent-color: var(--primary-yellow);
    cursor: pointer;
}

.range-hints {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-top: 0.4rem;
}

.calc-breakdown {
    background-color: rgba(10, 12, 16, 0.6);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    margin-bottom: 1.75rem;
    border: 1px solid var(--border-subtle);
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.breakdown-val {
    font-weight: 600;
    color: var(--text-white);
}

.breakdown-divider {
    height: 1px;
    background-color: var(--border-subtle);
    margin: 0.75rem 0;
}

.total-row {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.total-price {
    font-size: 1.6rem;
    color: var(--primary-yellow);
}

.sub-total-row {
    font-size: 0.82rem;
    color: var(--text-dim);
    margin-bottom: 0;
}

/* Workflow / Operational Mode Section */
.workflow-section {
    background-color: var(--bg-dark);
}

.workflow-steps {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    position: relative;
}

.workflow-step {
    flex: 1;
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2.25rem 1.75rem;
    position: relative;
    transition: var(--transition-normal);
}

.workflow-step:hover {
    border-color: var(--border-yellow);
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.05);
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 204, 0, 0.1);
    color: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.step-title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.step-text {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.workflow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5rem;
    color: var(--primary-yellow);
    font-size: 1.2rem;
}

/* Contact Section */
.contact-section {
    background-color: var(--bg-surface);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3.5rem;
}

.contact-intro {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.contact-card-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    position: relative;
    transition: var(--transition-normal);
}

.contact-card-item:hover {
    border-color: var(--border-yellow);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 204, 0, 0.1);
    color: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text-group {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.contact-label {
    font-size: 0.8rem;
    color: var(--text-dim);
    text-transform: uppercase;
    font-weight: 600;

}

.contact-value {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-white);
}

.contact-value:hover {
    color: var(--primary-yellow);
}

.contact-value-static {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
}

.copy-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.copy-btn:hover {
    color: var(--primary-yellow);
    background-color: rgba(255, 255, 255, 0.05);
}

/* Salutation Card */
.salutation-card {
    background: linear-gradient(135deg, rgba(25, 29, 43, 0.8) 0%, rgba(18, 21, 30, 0.8) 100%);
    border: 1px solid var(--border-yellow);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.salutation-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--primary-yellow);
    color: #0A0C10;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.salutation-details {
    display: flex;
    flex-direction: column;
}

.salutation-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

.salutation-name {
    font-size: 1.1rem;
    color: var(--primary-yellow);
}

.salutation-role {
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* Contact CTA Box */
.contact-cta-box {
    background-color: var(--bg-card);
    border: 1px solid var(--border-yellow);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.cta-box-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 204, 0, 0.1);
    color: var(--primary-yellow);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    width: fit-content;
    margin-bottom: 1.25rem;
}

.contact-cta-box h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.contact-cta-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background-color: #06070A;
    border-top: 1px solid var(--border-subtle);
    padding-top: 4rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
    max-width: 380px;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    color: var(--text-white);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

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

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

.footer-contact p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-green);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-normal);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: var(--whatsapp-hover);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background-color: var(--bg-card);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid var(--border-subtle);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    pointer-events: none;
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: var(--primary-yellow);
    color: #0A0C10;
    font-family: var(--font-heading);
    font-weight: 800;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    z-index: 1001;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .calc-wrapper {
        grid-template-columns: 1fr;
    }

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

    .workflow-steps {
        flex-direction: column;
    }

    .workflow-arrow {
        transform: rotate(90deg);
        padding: 0;
        margin: 0 auto;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 73px;
        left: -100%;
        width: 100%;
        background-color: var(--bg-dark);
        border-bottom: 1px solid var(--border-subtle);
        padding: 2rem;
        transition: var(--transition-normal);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .header-btn {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
        width: 100%;
    }

    .stat-divider {
        display: none;
    }

    .services-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 3.5rem 0;
    }
    
    .hero {
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
        width: 100%;
        padding: 1rem;
    }
    
    .stat-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid var(--border-subtle);
        padding-bottom: 0.5rem;
    }
    
    .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .maps-verification-box {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }

    .contact-card-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .salutation-card {
        flex-direction: column;
        text-align: center;
    }

    .calc-card {
        padding: 1.5rem;
    }
    
    .btn-large {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }
    
    .brand-text {
        font-size: 1.1rem;
    }
    
    .logo-badge {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}
