/* -------------------------------------------------------------
 *  CSS RESET & VARIABLES
 * ------------------------------------------------------------- */
:root {
    --primary-color: #FF6601;
    --primary-glow: rgba(255, 102, 1, 0.4);
    --bg-dark: #070913; /* Deep techy dark blue/black */
    --bg-light: #FFFFFF;
    --bg-light-alt: #F7FAFC;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --text-main: #FFFFFF;
    --text-muted: #A0AEC0;
    --text-dark: #1A202C;
    --text-dark-muted: #4A5568;
    --border-light: rgba(255, 255, 255, 0.1);
    --border-dark: rgba(0, 0, 0, 0.08);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.2s ease-in-out;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

/* -------------------------------------------------------------
 *  TYPOGRAPHY & UTILITIES
 * ------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.2;
}

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

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

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

.text-center { text-align: center; }
.text-primary { color: var(--primary-color); }
.text-gray { color: #718096; }
.text-gray-light { color: var(--text-muted); }
.text-sm { font-size: 0.875rem; }
.text-2xl { font-size: 2rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.mr-1 { margin-right: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.max-h-50 { max-height: 50px; }
.full-width { width: 100%; }

/* Light Section overrides */
.light-section {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.light-section.alt-bg {
    background-color: var(--bg-light-alt);
}

.light-section h1, 
.light-section h2, 
.light-section h3, 
.light-section h4, 
.light-section h5, 
.light-section h6 {
    color: var(--text-dark);
}

.light-section .text-muted,
.light-section .stat-text,
.light-section p {
    color: var(--text-dark-muted) !important;
}

/* -------------------------------------------------------------
 *  BUTTONS & ELEMENTS
 * ------------------------------------------------------------- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 4px;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.glow-effect:hover {
    box-shadow: 0 0 25px var(--primary-glow);
    transform: translateY(-2px);
    background-color: #ff7a24;
}

.btn-outline {
    border: 1px solid var(--border-light);
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

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

/* Glassmorphism Panel */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.light-section .glass-panel {
    background: #FFFFFF;
    border: 1px solid var(--border-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.light-section .service-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.1), 0 0 20px rgba(255,102,1,0.1);
    background: #FFFFFF;
}

.light-section .testimonial-text {
    color: var(--text-dark);
}

/* -------------------------------------------------------------
 *  HEADER / NAVBAR
 * ------------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    transition: all var(--transition-smooth);
}

.nav-logo-img {
    width: 130px;
    height: auto;
    transition: var(--transition-smooth);
}

.navbar.scrolled .nav-logo-img {
    width: 100px;
}


.navbar.scrolled {
    background: rgba(7, 9, 19, 0.95);
    backdrop-filter: blur(10px);
    border-bottom-color: transparent;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    padding: 12px 0;
}

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

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a:not(.btn-outline) {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    opacity: 0.8;
}

.nav-links a:not(.btn-outline):hover {
    opacity: 1;
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* -------------------------------------------------------------
 *  HERO SECTION
 * ------------------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 80px; /* Offset for navbar */
    padding-bottom: 0;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(255, 102, 1, 0.05) 0%, transparent 60%);
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.hero-container {
    flex-grow: 1;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
}

.trusted-intro-wrapper {
    width: 100%;
    position: relative;
    z-index: 3;
    padding-bottom: 40px;
    margin-top: auto;
}

.hero-content {
    max-width: 900px;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #fff 0%, #b3b3b3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content h2 {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

/* -------------------------------------------------------------
 *  STATS BOX AND ABOUT SECTION
 * ------------------------------------------------------------- */

.stats-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    background: #FFFFFF;
    border-radius: 12px;
    padding: 30px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.trusted-by-section {
    position: relative;
}

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

.marquee-clients {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: scroll-left-clients 30s linear infinite;
    gap: 60px;
    padding-left: 60px;
}

.marquee-clients img {
    height: 40px;
    filter: grayscale(100%) opacity(0.5);
    transition: var(--transition-smooth);
}

.marquee-clients img:hover {
    filter: grayscale(0) opacity(1);
}

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

/* About Grid Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: visible;
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary-color);
    padding: 20px;
    border-radius: 50%;
    width: 130px;
    height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    z-index: 5;
}

.experience-badge .badge-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: var(--text-muted);
}
.feature-item span {
    color: var(--text-main);
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

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

.trust-img {
    filter: grayscale(100%) opacity(0.5);
    transition: var(--transition-smooth);
}

.light-section .trust-img {
    filter: grayscale(100%) contrast(1.5) opacity(0.8);
}

.trust-img:hover {
    filter: grayscale(0) opacity(1);
}

/* -------------------------------------------------------------
 *  SERVICES SECTION
 * ------------------------------------------------------------- */
.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title span {
    color: var(--primary-color);
}

.title-underline {
    height: 3px;
    width: 60px;
    background: var(--primary-color);
    margin: 0 auto 50px auto;
    border-radius: 2px;
}

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

.service-card {
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0;
    background: var(--primary-color);
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,102,1,0.3);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 20px rgba(255,102,1,0.05);
    background: var(--bg-card-hover);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

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

/* -------------------------------------------------------------
 *  EXPERTISE SECTION (MARQUEE)
 * ------------------------------------------------------------- */
.expertise-section {
    position: relative;
    overflow: hidden;
    padding-top: 40px;
    padding-bottom: 80px;
}

.marquee-wrapper {
    display: flex;
    overflow: hidden;
    user-select: none;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee {
    flex-shrink: 0;
    display: flex;
    white-space: nowrap;
    animation: scroll-left 40s linear infinite;
}

.marquee span {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    padding: 0 2vw;
    text-transform: uppercase;
    
    /* Outline effect for futurist look */
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
    transition: var(--transition-fast);
}

.marquee span:hover {
    -webkit-text-stroke: 1px var(--primary-color);
    color: rgba(255, 102, 1, 0.1);
}

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

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

.testimonial-card {
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.testimonial-card.premium-card {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

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

.quote-bg {
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 8rem;
    color: var(--primary-color);
    opacity: 0.05;
    z-index: 0;
}

.testimonial-text {
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    flex-grow: 1;
    margin-bottom: 30px;
}

.rating {
    display: flex;
    gap: 3px;
    margin-top: 5px;
}
.rating i {
    font-size: 0.9rem;
}



.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,102,1,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.author-info h4 {
    font-size: 1.1rem;
    margin: 0;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Swiper pagination bullets */
.swiper-pagination-bullet {
    background: var(--text-muted) !important;
}
.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
}

.light-section .swiper-pagination-bullet {
    background: var(--text-dark-muted) !important;
}
.light-section .swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
}

/* Client Logos under testimonials */
.client-logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    align-items: center;
    opacity: 0.5;
}

.client-logos-grid img {
    max-height: 40px;
    filter: grayscale(100%) brightness(200%); /* Make them pure white-ish for dark mode */
    transition: var(--transition-fast);
}

.client-logos-grid img:hover {
    opacity: 1;
    filter: grayscale(0) brightness(100%);
}

.light-section .client-logos-grid img {
    filter: grayscale(100%) opacity(0.5); /* Normal grayscale for light mode */
}

.light-section .client-logos-grid img:hover {
    filter: grayscale(0) opacity(1);
}

/* -------------------------------------------------------------
 *  CONTACT FORM
 * ------------------------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-item i {
    font-size: 1.5rem;
    background: rgba(255,102,1,0.1);
    padding: 10px;
    border-radius: 8px;
}

.contact-form-wrapper {
    padding: 40px;
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

/* Floating Labels */
.floating-label-group {
    position: relative;
}

.floating-label-group input,
.floating-label-group textarea {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-main);
    padding: 16px 16px 8px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition-fast);
    outline: none;
}

/* Contact page specific white background form */
.premium-card .floating-label-group input,
.premium-card .floating-label-group textarea {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--text-dark);
}

.floating-label-group textarea {
    min-height: 120px;
    resize: vertical;
}

.floating-label-group label {
    position: absolute;
    top: 14px;
    left: 16px;
    color: var(--text-muted);
    font-size: 1rem;
    pointer-events: none;
    transition: 0.2s ease all;
}

.floating-label-group input:focus,
.floating-label-group textarea:focus,
.floating-label-group input:not(:placeholder-shown),
.floating-label-group textarea:not(:placeholder-shown) {
    border-color: var(--primary-color);
    background: rgba(255, 102, 1, 0.02);
}

.floating-label-group input:focus ~ label,
.floating-label-group textarea:focus ~ label,
.floating-label-group input:not(:placeholder-shown) ~ label,
.floating-label-group textarea:not(:placeholder-shown) ~ label {
    top: 4px;
    font-size: 0.75rem;
    color: var(--primary-color);
}

/* Custom Select Dropdown */
.custom-select-group {
    position: relative;
    width: 100%;
}

.custom-select-group select {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    color: var(--text-muted); /* lighter initially */
    padding: 16px;
    font-size: 1rem;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition-fast);
}

.custom-select-group select:focus {
    border-color: var(--primary-color);
}

.custom-select-group select:not(:invalid) {
    color: var(--text-main);
}

.custom-select-group select option {
    background: var(--bg-dark);
    color: var(--text-main);
}

.select-icon {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

/* Drag and Drop Upload */
.file-upload-wrapper {
    width: 100%;
    position: relative;
    border: 2px dashed rgba(255, 102, 1, 0.5);
    border-radius: 8px;
    background: rgba(255, 102, 1, 0.02);
    text-align: center;
    padding: 30px 20px;
    transition: var(--transition-fast);
    cursor: pointer;
}

.file-upload-wrapper:hover,
.file-upload-wrapper.dragover {
    background: rgba(255, 102, 1, 0.1);
    border-color: var(--primary-color);
}

.file-upload-content i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* -------------------------------------------------------------
 *  FOOTER
 * ------------------------------------------------------------- */
.site-footer {
    background: #05060d;
    padding: 80px 0 20px;
    border-top: 1px solid var(--border-light);
}

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

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #fff;
}

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

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

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px; /* tiny interaction */
}

.payment-methods {
    display: flex;
    gap: 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition-fast);
}

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

/* -------------------------------------------------------------
 *  RESPONSIVE QUERIES
 * ------------------------------------------------------------- */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .stats-box {
        justify-content: center;
    }
    .about-grid {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column-reverse;
        gap: 40px;
    }
    .experience-badge {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .nav-logo-img {
        width: 110px;
    }
    .navbar.scrolled .nav-logo-img {
        width: 90px;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-container {
        align-items: flex-start;
        text-align: left;
    }
    .hero-actions {
        justify-content: flex-start;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #070913;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 100;
        transition: var(--transition-smooth);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links a {
        font-size: 1.5rem !important;
        margin: 15px 0;
    }
    .mobile-menu-btn {
        display: block;
        position: relative;
        z-index: 101;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* -------------------------------------------------------------
 *  SERVICES PAGE SPECIFIC
 * ------------------------------------------------------------- */
.page-header {
    min-height: 40vh;
    display: flex;
    align-items: center;
    background: var(--bg-dark);
}

.page-header .section-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
}

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

.service-detail-card {
    padding: 35px 30px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

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

.service-detail-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 102, 1, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 25px;
}

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

.service-list ul {
    list-style: none;
    padding: 0;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-dark-muted);
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition-fast);
    margin-top: auto;
}

.btn-text:hover {
    gap: 12px;
}

/* UTILS */
.relative { position: relative; }
.z-2 { z-index: 2; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-750 { max-width: 750px; }
.text-lg { font-size: 1.15rem; }
.text-sm { font-size: 0.9rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }

/* HOW IT WORKS / STEPS */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.step-card {
    position: relative;
    padding: 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.step-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 102, 1, 0.05);
    border-color: rgba(255, 102, 1, 0.2);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* Connecting line for desktop */
@media (min-width: 992px) {
    .step-card:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -15px;
        width: 30px;
        height: 2px;
        background: linear-gradient(to right, var(--primary-color), transparent);
        opacity: 0.3;
        z-index: 0;
    }
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: -20px;
    transition: var(--transition-smooth);
}

.step-card:hover .step-number {
    opacity: 0.3;
    transform: scale(1.1);
}

.step-card h4 {
    position: relative;
    z-index: 1;
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #fff;
}

.step-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* -------------------------------------------------------------
 *  SOBRE NÓS / QUEM SOMOS PAGE
 * ------------------------------------------------------------- */
.about-image-grid-complex {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    height: 450px;
    position: relative;
}

.grid-main-img {
    grid-area: 1 / 1 / 10 / 9;
    z-index: 1;
}

.grid-sub-img-1 {
    grid-area: 6 / 7 / 12 / 12;
    z-index: 2;
    border: 5px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.grid-sub-img-2 {
    grid-area: 2 / 8 / 6 / 13;
    z-index: 1;
    opacity: 0.8;
}

.grid-main-img img, .grid-sub-img-1 img, .grid-sub-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.about-image-grid-complex:hover .grid-main-img img {
    transform: scale(1.02);
}

.about-image-grid-complex:hover .grid-sub-img-1 img {
    transform: translateY(-10px) scale(1.05);
}

.about-image-grid-complex .experience-badge {
    bottom: 20px;
    left: -20px;
    right: auto;
}

@media (max-width: 768px) {
    .about-image-grid-complex {
        height: 350px;
    }
}


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

.mission-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-smooth);
}

.mission-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 102, 1, 0.02);
    border-color: rgba(255, 102, 1, 0.1);
}

.mission-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.mission-card h3 {
    margin-bottom: 15px;
    color: #fff;
    font-family: var(--font-heading);
}

.mission-card p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.quality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.q-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark-muted);
    font-size: 1.05rem;
}

.q-feature span {
    color: var(--text-dark);
    font-weight: 500;
}

.q-feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.quality-images-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.iso-logo-img {
    max-width: 200px;
    width: 100%;
}

.seals-logo-img {
    max-width: 250px;
    width: 100%;
}

@media (max-width: 992px) {
    .quality-grid {
        display: flex;
        flex-direction: column-reverse;
        text-align: center;
        gap: 60px;
    }
    .quality-features {
        align-items: center;
    }
    .quality-images-wrapper {
        margin-top: 50px;
    }
}

/* -------------------------------------------------------------
 *  CONTATO PAGE
 * ------------------------------------------------------------- */
.contact-page-content .contact-grid {
    align-items: flex-start;
}

.contact-details-large {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card-mini {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.contact-card-mini:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-card-mini i {
    font-size: 2rem;
    color: var(--primary-color);
    background: rgba(255, 102, 1, 0.05);
    padding: 15px;
    border-radius: 10px;
}

.contact-card-mini h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    line-height: 1;
    color: var(--text-dark);
}

.contact-card-mini p {
    color: var(--text-dark-muted);
    font-size: 0.95rem;
    margin: 0;
}

.location-map {
    position: relative;
    overflow: hidden;
}

@media (max-width: 992px) {
    .contact-card-mini:hover {
        transform: none;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition-smooth);
}

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

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
}






