:root {
    --primary: #F02435;
    --primary-light: #FF4D5C;
    --primary-dark: #C11D2A;
    --accent: #FAB338;
    --accent-hover: #E0A132;
    --text-main: #212529;
    --text-muted: #6C757D;
    --bg-main: #F8F9FA;
    --bg-white: #FFFFFF;
    --bg-dark: #111827;
    --card-dark: #1F2937;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.18);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 40px rgba(240, 36, 53, 0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

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

html {
    /* scroll-behavior: smooth; Disabled for Lenis */
    font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(240, 36, 53, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 36, 53, 0.4);
}

.btn-block {
    width: 100%;
}

.btn-light {
    background: white;
    color: var(--primary);
}

.btn-light:hover {
    background: var(--bg-main);
    transform: translateY(-2px);
}

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

.btn-outline-light:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    z-index: 1000;
    transition: var(--transition);
    padding: 16px 0;
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #000000;
}

.logo i {
    font-size: 2rem;
    color: var(--accent);
}

.logo-text h1 {
    font-size: 1.5rem;
    margin: 0;
}

.logo-text span {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

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

.nav-links a {
    font-weight: 500;
    color: #000000;
    position: relative;
}

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.phone-link {
    font-weight: 700;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-link i {
    color: var(--accent);
}

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

/* Button Variants & CTA Optimizations */
.btn-whatsapp {
    background-color: #25D366;
    color: white;
    border: 2px solid #25D366;
}
.btn-whatsapp:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    color: white;
}

.btn-call {
    background-color: var(--primary);
    color: white;
    border: 2px solid var(--primary);
}
.btn-call:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
}

.bg-primary {
    background-color: var(--primary);
}

.cta-section {
    padding: 60px 0;
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.cta-content {
    flex: 1;
    min-width: 300px;
}

.cta-section.bg-primary h2 {
    color: white;
    margin-bottom: 8px;
    font-size: 2.2rem;
}

.cta-section.bg-primary p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

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

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

.btn-outline-accent:hover {
    background: var(--accent);
    color: var(--primary);
}

/* Contrast background outlines for Buttons */
.bg-dark .btn-whatsapp,
.bg-dark .btn-call {
    background-color: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}
.bg-dark .btn-whatsapp:hover,
.bg-dark .btn-call:hover {
    background-color: var(--accent);
    color: var(--bg-dark);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: transparent;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    background-color: var(--primary);
}

#hero-bg-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.blob {
    position: absolute;
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 10s infinite ease-in-out alternate;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
}

.blob-2 {
    bottom: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--accent), var(--primary-dark));
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
    max-width: 900px;
}

.hero-content {
    color: white;
}

.hero .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero .badge i {
    color: #FFD700;
}

.hero-title {
    font-size: 4rem;
    color: white;
    margin-bottom: 24px;
}

.hero-title span {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-features {
    display: grid;
    gap: 16px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 500;
}

.feature i {
    color: var(--accent);
    font-size: 1.2rem;
}

/* Glassmorphism Form */
.glassmorphism {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.glassmorphism:hover {
    transform: translateY(-5px);
}

.hero-form h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.hero-form p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 1px solid #E9ECEF;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background: var(--bg-main);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
    background: white;
}

/* Stats Section */
.stats-section {
    position: relative;
    padding: 60px 0;
    z-index: 10;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 32px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.stat-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 107, 0, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.stat-info h3 {
    display: inline-block;
    font-size: 2.5rem;
    color: var(--primary);
    margin: 0;
}

.stat-info span {
    font-size: 2rem;
    color: var(--accent);
    font-weight: 800;
}

.stat-info p {
    color: var(--text-muted);
    font-weight: 500;
    margin: 0;
}

/* Section Headers */
.section-header {
    margin-bottom: 64px;
}

.subtitle {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 8px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

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

/* Services */
.services {
    background-color: #fbfbfb;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 700;
}

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

.service-link {
    display: inline-flex;
    color: var(--primary);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    align-self: flex-start;
}

.service-card:hover .service-link {
    transform: translate(4px, -4px);
}

/* Process Section */
.bg-light {
    background: white;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.step-number {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6rem;
    font-weight: 800;
    color: rgba(240, 36, 53, 0.05); /* Vibrant red 5% */
    z-index: -1;
    font-family: 'Outfit', sans-serif;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
    box-shadow: 0 10px 25px rgba(11, 47, 92, 0.2);
    position: relative;
}

.step-icon::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px dashed rgba(240, 36, 53, 0.2); /* Red dashed border */
    border-radius: 50%;
    animation: spin 10s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

.step h3 {
    margin-bottom: 12px;
}

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

.step-connector {
    flex: 0 0 50px;
    position: relative;
}

.step-connector::after {
    content: '';
    position: absolute;
    top: 40px;
    left: -25px;
    right: -25px;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--primary) 0, var(--primary) 5px, transparent 5px, transparent 10px);
    opacity: 0.3;
}

/* Utilities & New Sections */
.bg-dark {
    background-color: var(--bg-dark);
}

.text-white {
    color: white;
}

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

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

.header-line {
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    margin: 16px auto 0;
}

.header-line-primary {
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    margin: 16px auto 0;
}

.dark-theme .subtitle {
    color: var(--accent);
}

.dark-theme h2 {
    color: white;
}

/* Features Grid - What Sets Us Apart */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card-dark {
    background: var(--card-dark);
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.feature-card-dark:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon-wrapper i {
    color: var(--accent);
    font-size: 1.5rem;
}

.feature-card-dark h3 {
    color: var(--accent);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.feature-card-dark p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

/* Action Gallery */
.action-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.gallery-item {
    width: 100%;
    height: 260px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

/* Wide items — span 2 cols */
.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
    grid-column: span 2;
    height: 300px;
}

/* Anchor people images so faces are visible */
.gallery-item:nth-child(6) .gallery-img {
    object-position: center center;
}
.gallery-item:nth-child(7) .gallery-img {
    object-position: center 20%;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    transform-origin: center;
}

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

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 18px 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
    color: white;
    font-weight: 600;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 0 0 12px 12px;
    letter-spacing: 0.3px;
    transition: opacity 0.3s ease;
}

.gallery-label i {
    color: var(--accent);
    font-size: 0.95rem;
}

/* Testimonials Marquee */
.testimonials-section {
    background: var(--bg-dark);
    overflow: hidden;
}

.reviews-header h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.reviews-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: white;
    font-weight: 500;
}

.reviews-rating .stars i {
    color: var(--accent);
}

.marquee-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 20px 0;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
}

.marquee-left {
    animation: marqueeLeft 40s linear infinite;
}

.marquee-right {
    animation: marqueeRight 40s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

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

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

.testimonial-card {
    background: var(--card-dark);
    border-radius: var(--radius-md);
    padding: 32px;
    width: 400px;
    border: 1px solid rgba(255,255,255,0.05);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.avatar-1 { background: #FAB338; }
.avatar-2 { background: #8B5CF6; }
.avatar-3 { background: #EC4899; }
.avatar-4 { background: #10B981; }
.avatar-5 { background: #06B6D4; }
.avatar-6 { background: #84CC16; }

.testimonial-info h4 {
    color: white;
    margin: 0 0 4px;
    font-size: 1.1rem;
}

.testimonial-info p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin: 0;
}

.testimonial-stars {
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.testimonial-text {
    color: rgba(255,255,255,0.8);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
}



/* Journey Section */
.journey-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.journey-content {
    flex: 1;
}

.journey-image {
    flex: 1;
}

.journey-image img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    object-fit: cover;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.15rem;
    margin: 0;
    font-weight: 600;
    color: var(--text-main);
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: black;
    font-weight: 900;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: white;
}

.faq-item.active .faq-answer {
    padding: 0 32px 24px 32px;
}

.faq-answer p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 992px) {
    .journey-container {
        flex-direction: column;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 80px 0;
    color: white;
}

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

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 500px;
}

.cta-actions {
    display: flex;
    gap: 16px;
}

/* Footer */
.footer {
    background: #041224;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 24px;
}

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

.footer .logo {
    color: white;
    margin-bottom: 24px;
}

.footer .logo-text h2 {
    color: white;
    margin: 0;
}

.footer-brand p {
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

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

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer h3 {
    color: white;
    margin-bottom: 24px;
    font-size: 1.2rem;
}

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

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

.contact-info li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-info i {
    color: var(--accent);
    margin-top: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Floating WA */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.floating-wa:hover {
    transform: scale(1.1);
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   Web / Desktop : 1200px +
   Tablet        : 768px  – 1199px
   Mobile        : 0px    – 767px
   ============================================ */

/* ---- TABLET + BELOW (≤ 1199px) ---- */
@media (max-width: 1199px) {
    /* Navigation — switch to hamburger */
    .nav-links   { display: none !important; }
    .nav-actions { display: none !important; }
    .mobile-toggle { display: flex !important; align-items: center; justify-content: center; }

    /* Tablet: hide top-bar, navbar stays at top (keeps desktop scroll behaviour) */
    .top-bar { display: none !important; }
    .navbar { top: 0 !important; }

    /* Hero padding — no top-bar so navbar height only (~64px) */
    .hero      { padding-top: 80px !important; }
    .page-hero { padding-top: 100px !important; }

    /* Hero */
    .hero-container { text-align: center; }
    .hero-features  { justify-content: center; }
    .hero-title { font-size: 2.4rem !important; }

    /* Stats / Services / Features / Gallery → 2-col */
    .stats-container { grid-template-columns: repeat(2, 1fr); }
    .services-grid   { grid-template-columns: repeat(2, 1fr); }
    .features-grid   { grid-template-columns: repeat(2, 1fr); }
    .action-gallery  { grid-template-columns: repeat(2, 1fr); }
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(6) { grid-column: span 2; }

    /* Process */
    .process-steps  { flex-direction: column; gap: 40px; }
    .step-connector { display: none; }

    /* Layouts */
    .journey-container { flex-direction: column; }
    .cta-container     { flex-direction: column; text-align: center; gap: 32px; }

    /* Footer → 2-col */
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }

    /* Landing page quote section → 1-col */
    #quote-section > .container { grid-template-columns: 1fr !important; }
}

/* ---- MOBILE ONLY (≤ 767px) ---- */
@media (max-width: 767px) {

    /* ── Navbar: always white; hamburger dark ── */
    .navbar {
        background: #ffffff !important;
        box-shadow: 0 1px 10px rgba(0,0,0,0.10) !important;
        backdrop-filter: none !important;
    }
    .navbar .logo-white { display: none  !important; }
    .navbar .logo-color { display: block !important; }
    .navbar .logo,
    .navbar .phone-link,
    .navbar .mobile-toggle { color: #111111 !important; }

    /* ── Hero ── */
    .hero {
        padding-top: 72px !important;
        padding-bottom: 80px !important;
        min-height: auto;
    }
    .hero-title    { font-size: 1.7rem !important; line-height: 1.2; }
    .hero-subtitle { font-size: 0.88rem !important; }
    .hero-two-btns { flex-direction: column; align-items: center; gap: 12px; }
    .hero-two-btns .btn { width: 100%; max-width: 260px; justify-content: center; }
    /* Hide truck on mobile — avoids overlap with features bar */
    .hero-truck-lane { display: none; }
    /* Tighten the features marquee gap on mobile */
    .hero-bottom-features .features-marquee-track { gap: 28px; }
    .hero-bottom-features .feature-marquee-item .feature-text strong { font-size: 0.85rem; }
    .hero-bottom-features .feature-marquee-item .feature-text span   { font-size: 0.72rem; }
    .hero-bottom-features .feature-marquee-item .feature-icon { font-size: 1.3rem; }

    /* ── Section headers ── */
    .section-header { margin-bottom: 32px; }
    .section-header h2 { font-size: 1.75rem; }
    .section-padding { padding: 56px 0; }

    /* ── Quote section (homepage) ── */
    #quote-section { padding: 50px 16px !important; }
    #quote-section > .container { gap: 36px !important; }

    /* ── Stats ── */
    .stats-container { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .stat-card { padding: 18px 14px; gap: 12px; }
    .stat-icon { width: 44px; height: 44px; font-size: 1.3rem; }
    .stat-info h3 { font-size: 1.8rem; }
    .stat-info span { font-size: 1.6rem; }

    /* ── Services ── */
    .services-grid { grid-template-columns: 1fr; gap: 16px; }
    .service-card  { padding: 24px; }

    /* ── Features grid ── */
    .features-grid { grid-template-columns: 1fr; }

    /* ── Process ── */
    .process-steps { gap: 32px; }
    .step-number { font-size: 4rem; }

    /* ── FAQ ── */
    .faq-question { padding: 16px 18px; }
    .faq-question h3 { font-size: 0.95rem; }
    .faq-item.active .faq-answer { padding: 0 18px 16px; }
    .faq-answer p { font-size: 0.9rem; }

    /* ── Testimonials ── */
    .testimonial-card { width: 280px; padding: 20px; }

    /* ── Journey ── */
    .journey-image { display: none; }
    .journey-content h2 { font-size: 2rem; }

    /* ── CTA (bottom) ── */
    .cta-actions { flex-direction: column; align-items: stretch; }
    .cta-actions .btn { width: 100%; justify-content: center; }

    /* ── Form rows → 1-col ── */
    .form-row { grid-template-columns: 1fr; }

    /* ── Gallery (old action-gallery) ── */
    .action-gallery { grid-template-columns: 1fr; }
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(6) { grid-column: span 1; height: 200px; }
    .gallery-item { height: 200px; }

    /* ── Footer → 1-col ── */
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer { padding: 50px 0 20px; }

    /* ── Page hero (service pages) ── */
    .page-hero { padding: 80px 0 44px; }
    .page-hero h1 { font-size: 1.65rem; }
    .page-hero p  { font-size: 0.9rem; }

    /* ── Homepage map section ── */
    .home-map-wrap { height: 250px !important; }

    /* ── Branch tags grid: 4-col → 2-col ── */
    .home-branch-grid { grid-template-columns: repeat(2, 1fr) !important; }

    /* ── Floating buttons — tighter on mobile ── */
    .floating-btn  { width: 46px; height: 46px; font-size: 1.2rem; }
    .floating-wa   { bottom: 14px; right: 14px; }
    .floating-call { bottom: 72px; right: 14px; }
}

/* Top Bar */
.top-bar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(5px);
    color: #bbb;
    font-size: 0.85rem;
    padding: 8px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}
.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-left {
    flex: 1;
    overflow: hidden;
    position: relative;
    max-width: 50%;
    -webkit-mask-image: linear-gradient(to right, black 80%, transparent);
    mask-image: linear-gradient(to right, black 80%, transparent);
}
.scrolling-offer-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: topBarScroll 20s linear infinite;
}
.scrolling-offer-track span {
    white-space: nowrap;
    letter-spacing: 1px;
}
@keyframes topBarScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.top-bar-right {
    display: flex;
    gap: 20px;
    align-items: center;
}
.top-bar-right a {
    color: #ccc;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}
.top-bar-right a:hover {
    color: white;
}
.top-bar-btn {
    color: white !important;
}

/* Navbar Overrides for Transparent state */
.navbar {
    top: 36px;
    background: transparent !important;
    border-bottom: none;
}

.navbar .logo,
.navbar .nav-links a,
.navbar .phone-link,
.navbar .mobile-toggle {
    color: white;
}

.navbar .logo-text span {
    color: rgba(255,255,255,0.7);
}

/* Logo: white image when transparent, color image when scrolled */
.logo-white, .logo-color { height: 52px; width: auto; object-fit: contain; display: block; }
.navbar          .logo-white { display: block; }
.navbar          .logo-color { display: none;  }
.navbar.scrolled .logo-white { display: none;  }
.navbar.scrolled .logo-color { display: block; }

.navbar.scrolled {
    background: white !important;
    top: 0;
    border-bottom: none;
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-links a,
.navbar.scrolled .phone-link {
    color: #000000;
}

.navbar.scrolled .logo-text span {
    color: var(--text-muted);
}

.navbar.scrolled .mobile-toggle {
    color: var(--text-main);
}

/* Hero Modifications */
.hero {
    position: relative;
    padding-bottom: 100px; /* space for bottom features */
}

/* Hero Bottom Features */
.hero-bottom-features {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.hero-bottom-features .features-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.hero-bottom-features .features-marquee-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: featuresMarquee 20s linear infinite;
}

.hero-bottom-features .feature-marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-bottom-features .feature-marquee-item .feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.8rem;
}

.hero-bottom-features .feature-marquee-item .feature-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.hero-bottom-features .feature-marquee-item .feature-text strong {
    font-size: 1.05rem;
    color: white;
    font-weight: 600;
}

.hero-bottom-features .feature-marquee-item .feature-text span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

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

/* Branch Tags */
.branch-tag {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: #f8f9fa; border: 1.5px solid #e9ecef;
    border-radius: 12px; padding: 16px 12px;
    font-size: 0.95rem; font-weight: 600; color: #111;
    text-decoration: none; transition: all 0.25s ease; text-align: center;
}
.branch-tag:hover {
    background: var(--primary); color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240,36,53,0.25);
}
.branch-tag .fa-location-dot { color: var(--primary); }
.branch-tag .fa-phone { color: #999; font-size: 0.8rem; }
.branch-tag:hover i { color: white !important; }

/* Hero Truck Animation */
.hero-truck-lane {
    position: absolute;
    bottom: 68px;
    left: 0;
    width: 100%;
    height: 90px;
    overflow: hidden;
    pointer-events: none;
    z-index: 5;
}

.hero-truck {
    position: absolute;
    bottom: 0;
    height: 80px;
    width: auto;
    animation: truckDrive 20s linear infinite;
}

@keyframes truckDrive {
    0%   { left: -260px; }
    100% { left: 100%; }
}

/* Nav Dropdown Desktop */
.nav-dropdown {
    position: relative;
    cursor: pointer;
}
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    z-index: 100;
}
.dropdown-content a {
    color: #333 !important;
    padding: 10px 20px;
    display: block;
    font-weight: 500;
    transition: 0.2s;
}
.dropdown-content a:hover {
    background: #f8f9fa;
    color: var(--accent) !important;
}
.nav-dropdown:hover .dropdown-content {
    display: block;
}


.overlay-black-50 {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* ============================================
   HERO FIX - Two buttons, compact spacing
   ============================================ */
.new-hero .hero-container { padding: 0 24px; }
.hero-title { margin-bottom: 16px !important; }
.hero-subtitle { margin-bottom: 28px !important; }
.hero-two-btns {
    display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.hero-two-btns .btn { padding: 13px 28px; font-size: 1rem; border-radius: 8px; }
.btn-wa { background: #25D366; color: white; border: none; }
.btn-wa:hover { background: #1ebe5d; transform: translateY(-2px); }
.btn-call-white { background: white; color: var(--primary); border: none; }
.btn-call-white:hover { background: #f5f5f5; transform: translateY(-2px); }

/* ============================================
   DESKTOP DROPDOWN
   ============================================ */
.nav-dropdown { position: relative; }
.nav-dropdown > a { cursor: pointer; display: flex; align-items: center; }
.dropdown-content {
    display: none; position: absolute; top: calc(100% + 8px); left: 0;
    background: white; min-width: 220px; border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.14); padding: 8px 0; z-index: 9999;
}
.nav-dropdown:hover .dropdown-content { display: block; }
.dropdown-content a {
    display: block; padding: 10px 20px; color: #222;
    font-size: 0.9rem; font-weight: 500; transition: all 0.2s;
}
.dropdown-content a:hover, .dropdown-content a.active {
    background: rgba(240,36,53,0.06); color: var(--primary);
}

/* ============================================
   MOBILE INLINE DROPDOWN MENU
   Expands below the navbar — no overlay/popup
   ============================================ */
.mob-dropdown {
    display: block;                       /* always in flow */
    position: absolute;
    top: 100%; left: 0; width: 100%;
    background: white;
    z-index: 9998;
    /* Slide-down animation */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s cubic-bezier(0.4,0,0.2,1);
    pointer-events: none;
}
.mob-dropdown.open {
    max-height: 85vh;
    overflow-y: auto;
    pointer-events: all;
    box-shadow: 0 10px 40px rgba(0,0,0,0.13);
}

.mob-dropdown-inner {
    display: flex; flex-direction: column;
}

/* Nav body */
.mob-nav-body { padding: 6px 0; }
.mob-nav-item  { border-bottom: 1px solid #f3f3f3; }

/* Nav link rows */
.mob-nav-link {
    display: flex; align-items: center; justify-content: space-between;
    padding: 13px 20px; font-size: 1rem; font-weight: 600;
    color: #111; text-decoration: none; cursor: pointer;
    transition: background 0.15s, color 0.15s; gap: 8px;
}
.mob-nav-link:hover   { background: #fafafa; }
.mob-nav-link.active  {
    color: var(--primary);
    background: rgba(240,36,53,0.06);
    border-left: 3px solid var(--primary);
    padding-left: 17px;
}
.mob-has-children > .mob-nav-link { color: var(--primary); }
.mob-has-children > .mob-nav-link.active {
    background: rgba(240,36,53,0.06);
    border-left: 3px solid var(--primary);
    padding-left: 17px;
}

/* Chevron arrow for accordion */
.mob-chevron {
    font-size: 0.72rem; flex-shrink: 0;
    transition: transform 0.28s ease; color: var(--primary);
    opacity: 0.8;
}
.mob-has-children.expanded > .mob-nav-link .mob-chevron {
    transform: rotate(180deg);
}

/* Services sub-links — collapsed by default */
.mob-sub-links {
    max-height: 0; overflow: hidden;
    background: #f9f9f9;
    transition: max-height 0.3s ease;
}
.mob-has-children.expanded .mob-sub-links {
    max-height: 400px;
    border-top: 1px solid #efefef;
}
.mob-sub-link {
    display: block; padding: 10px 20px 10px 36px;
    font-size: 0.88rem; font-weight: 500; color: #555;
    text-decoration: none; border-bottom: 1px solid #efefef;
    transition: background 0.15s, color 0.15s;
}
.mob-sub-link:last-child { border-bottom: none; }
.mob-sub-link:hover, .mob-sub-link.active {
    color: var(--primary); background: rgba(240,36,53,0.04);
}
.mob-sub-link::before { content: '→ '; color: var(--primary); font-size: 0.75rem; }

/* Call + WhatsApp buttons at bottom */
.mob-actions {
    display: flex; gap: 10px; padding: 14px 16px 18px;
    border-top: 1px solid #f0f0f0;
}
.mob-call-btn, .mob-wa-btn {
    flex: 1; padding: 12px 10px; text-align: center;
    border-radius: 10px; font-size: 0.93rem; font-weight: 600;
    display: flex; align-items: center; justify-content: center;
    gap: 7px; text-decoration: none;
}
.mob-call-btn { background: var(--primary); color: white; }
.mob-call-btn:hover { background: var(--primary-dark); color: white; }
.mob-wa-btn   { background: #25D366; color: white; }
.mob-wa-btn:hover { background: #1ebe5d; color: white; }

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.floating-btn {
    position: fixed; right: 20px; width: 52px; height: 52px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: white; z-index: 8000;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25); transition: transform 0.3s ease;
    text-decoration: none;
}
.floating-btn:hover { transform: scale(1.12); }
.floating-wa { bottom: 20px; background: #25D366; }
.floating-call { bottom: 84px; background: var(--primary); }

/* ============================================
   STANDARD QUOTE FORM
   ============================================ */
.std-quote-form { width: 100%; }
.qf-section-head {
    display: flex; align-items: center; gap: 8px;
    color: var(--primary); font-weight: 700;
    font-size: 0.82rem; letter-spacing: 1.5px; text-transform: uppercase;
    margin-bottom: 12px;
}
.qf-section-head i { font-size: 0.9rem; }
.qf-divider { border: none; border-top: 1px solid #eee; margin: 0 0 16px; }
.req { color: var(--primary); }
.std-quote-form .form-group { margin-bottom: 14px; }
.std-quote-form label { font-size: 0.88rem; font-weight: 600; color: #333; display: block; margin-bottom: 6px; }
.std-quote-form input,
.std-quote-form select,
.std-quote-form textarea {
    width: 100%; padding: 12px 14px; border: 1.5px solid #e9ecef;
    border-radius: 10px; font-family: 'Inter', sans-serif;
    font-size: 0.95rem; background: #f8f9fa; transition: all 0.2s;
    color: #222; resize: vertical;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.std-quote-form input:focus,
.std-quote-form select:focus,
.std-quote-form textarea:focus {
    outline: none; border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(240,36,53,0.08), 0 2px 8px rgba(0,0,0,0.06); background: white;
}
.qf-submit {
    width: 100%; padding: 15px; margin-top: 4px;
    font-size: 1rem; font-weight: 700; border-radius: 10px;
    display: flex; align-items: center; justify-content: center; gap: 10px;
}
.qf-note { text-align: center; font-size: .8rem; color: var(--text-muted); margin-top: 10px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.qf-note span { display: flex; align-items: center; gap: 5px; }
.qf-note i { color: #28a745; }

/* Proprietor Section */
.proprietor-section { padding: 100px 0; background: #F8F9FA; }
.proprietor-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: center; margin-top: 60px; }
.proprietor-img-wrap { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
.proprietor-photo { width: 100%; height: 480px; object-fit: cover; object-position: center top; display: block; border-radius: 20px; }
.proprietor-name-badge { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(240,36,53,0.92) 0%, transparent 100%); color: white; padding: 60px 24px 22px; text-align: center; border-radius: 0 0 20px 20px; }
.prop-badge-title { font-size: 1rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.proprietor-content .tag { display: inline-block; background: rgba(240,36,53,0.1); color: var(--primary); font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px; padding: 6px 14px; border-radius: 4px; margin-bottom: 18px; text-transform: uppercase; }
.proprietor-content h2 { font-size: 2.2rem; font-weight: 700; margin-bottom: 20px; line-height: 1.3; color: var(--text-main); }
.proprietor-content p { color: var(--text-muted); font-size: 0.98rem; line-height: 1.8; margin-bottom: 16px; }
.prop-highlights { display: flex; gap: 32px; margin-top: 32px; flex-wrap: wrap; }
.prop-highlight-item { display: flex; align-items: center; gap: 14px; }
.prop-highlight-item i { color: var(--primary); font-size: 1.6rem; flex-shrink: 0; }
.prop-highlight-item div { display: flex; flex-direction: column; }
.prop-highlight-item strong { font-size: 1.1rem; font-weight: 700; color: var(--text-main); line-height: 1.2; }
.prop-highlight-item span { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }

@media (max-width: 1199px) {
    .proprietor-grid { grid-template-columns: 1fr; gap: 40px; }
    .proprietor-section { padding: 70px 0; }
}
@media (max-width: 767px) {
    .proprietor-section { padding: 50px 0; }
    .proprietor-photo { height: 320px; }
    .proprietor-content h2 { font-size: 1.6rem; }
    .prop-highlights { gap: 20px; }
}

/* Page Hero (sub-pages) */
.page-hero { background: var(--primary); padding: 130px 0 60px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content:''; position:absolute; top:-40%; left:-15%; width:500px; height:500px; background:rgba(255,255,255,0.05); border-radius:50%; pointer-events:none; }
.page-hero .breadcrumb { display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,0.15); padding:6px 18px; border-radius:30px; font-size:.85rem; color:white; margin-bottom:16px; }
.page-hero h1 { color:white; font-size:2.8rem; margin-bottom:10px; position:relative; z-index:1; }
.page-hero p { color:white; font-size:1rem; max-width:580px; margin:0 auto 22px; position:relative; z-index:1; }
.page-hero .hero-two-btns { position:relative; z-index:1; }
.page-hero .hero-btns { position:relative; z-index:1; display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }


