/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Colors derived from the Fabinho Arts logo */
    --primary: #9eff29;
    --primary-rgb: 158, 255, 41;
    --primary-hover: #b4ff52;
    --primary-dark: #7acb1c;
    
    /* Backgrounds (Coal, Charcoal & Obsidian Stealth Theme) */
    --bg-dark: #09090b;
    --bg-dark-secondary: #121215;
    --bg-dark-card: #1c1c21;
    --bg-glass: rgba(18, 18, 21, 0.75);
    
    /* Borders & Outlines */
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(158, 255, 41, 0.3);
    
    /* Text Colors */
    --text-white: #ffffff;
    --text-light: #f4f4f5;
    --text-muted: #a1a1aa;
    --text-dark: #18181b;
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.7);
    --shadow-neon: 0 0 20px rgba(158, 255, 41, 0.15);
    --shadow-neon-strong: 0 0 30px rgba(158, 255, 41, 0.35);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #27272a;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Helpers & Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

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

.mb-5 {
    margin-bottom: 3rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.highlight-neon {
    color: var(--primary);
}

/* Grids */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Section Badges & Titles */
.section-badge {
    background: rgba(158, 255, 41, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 0.15em;
    display: inline-block;
    margin-bottom: 16px;
    border: 1px solid rgba(158, 255, 41, 0.15);
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.section-title span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

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

.section-desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-dark);
    box-shadow: var(--shadow-neon);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-neon-strong);
}

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

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

.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

/* ==========================================================================
   TOP BAR INFO
   ========================================================================== */
.top-bar {
    background-color: #030304;
    border-bottom: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 8px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    gap: 24px;
}

.top-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-info i {
    color: var(--primary);
}

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

.top-social a {
    color: var(--text-muted);
}

.top-social a:hover {
    color: var(--primary);
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.main-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(9, 9, 11, 0.95);
    border-bottom: 1px solid var(--border);
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.main-header.shrink {
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    background-color: rgba(9, 9, 11, 0.98);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
    transition: var(--transition-smooth);
}

.main-header.shrink .header-container {
    padding-top: 5px;
    padding-bottom: 5px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 6px;
    border: 1px solid rgba(158, 255, 41, 0.3);
    transition: var(--transition-smooth);
}

.main-header.shrink .logo-img {
    height: 42px;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-white);
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

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

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

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-fast);
}

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

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

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

.btn-navbar {
    padding: 8px 18px;
    font-size: 0.85rem;
    border-radius: 6px;
}

/* Mobile Hamburguer Trigger */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    width: 28px;
    height: 24px;
    justify-content: center;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-white);
    transition: var(--transition-fast);
}

/* Mobile Nav Drawer */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background-color: var(--bg-dark-secondary);
    z-index: 1000;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.9);
    transition: var(--transition-smooth);
    border-left: 1px solid var(--border);
}

.mobile-nav-overlay.active {
    right: 0;
}

.mobile-nav-content {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.close-mobile-menu {
    align-self: flex-end;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    margin-bottom: 20px;
    transition: var(--transition-fast);
}

.close-mobile-menu:hover {
    color: var(--primary);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.mobile-logo img {
    height: 46px;
    border-radius: 6px;
}

.mobile-logo span {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--text-white);
}

.mobile-logo span span {
    color: var(--primary);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mob-link {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.mob-link:hover {
    color: var(--primary);
    padding-left: 8px;
}

/* ==========================================================================
   HERO CAROUSEL SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    height: calc(100vh - 120px);
    min-height: 600px;
    background-color: var(--bg-dark);
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-content {
    max-width: 800px;
    z-index: 5;
    transform: translateY(30px);
    transition: transform 0.8s ease-out;
}

.carousel-slide.active .slide-content {
    transform: translateY(0);
}

.slide-badge {
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.slide-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 900;
}

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

.slide-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

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

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-fast);
    z-index: 10;
    backdrop-filter: blur(5px);
}

.carousel-btn:hover {
    background-color: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
    box-shadow: var(--shadow-neon);
}

.carousel-btn.prev {
    left: 40px;
}

.carousel-btn.next {
    right: 40px;
}

/* Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 30px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.indicator.active {
    background-color: var(--primary);
    width: 50px;
    box-shadow: var(--shadow-neon);
}

/* ==========================================================================
   STATS RIBBON (GLASSMORPHIC)
   ========================================================================== */
.stats-ribbon {
    position: relative;
    z-index: 10;
    margin-top: -60px; /* Overlap with hero */
    padding-bottom: 20px;
}

.stats-container {
    background-color: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    display: flex;
    justify-content: space-around;
    padding: 30px 20px;
    box-shadow: var(--shadow-md);
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1 1 200px;
    justify-content: center;
}

.stat-icon {
    font-size: 2.2rem;
    color: var(--primary);
    background: rgba(158, 255, 41, 0.08);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(158, 255, 41, 0.15);
}

.stat-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.stat-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================================
   ABOUT US SECTION ("A EMPRESA")
   ========================================================================== */
.about-text-content {
    padding-right: 20px;
}

.about-lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 20px;
}

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

.about-feat-item {
    display: flex;
    gap: 16px;
}

.about-feat-item h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.about-feat-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.feat-icon {
    color: var(--primary);
    font-size: 1.4rem;
    margin-top: 3px;
}

/* Detailing image box showcase */
.about-image-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.image-accent-border {
    position: absolute;
    top: 30px;
    left: 30px;
    right: -30px;
    bottom: -30px;
    border: 2px solid var(--primary);
    border-radius: 16px;
    z-index: 1;
    opacity: 0.3;
    transition: var(--transition-smooth);
}

.about-image-wrapper:hover .image-accent-border {
    transform: translate(-10px, -10px);
    opacity: 0.7;
}

.about-img-box {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.about-main-img {
    border-radius: 16px;
    transition: var(--transition-smooth);
    width: 100%;
}

.about-image-wrapper:hover .about-main-img {
    transform: scale(1.03);
}

.floating-badge-box {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--bg-glass);
    border: 1px solid var(--border-hover);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.badge-icon {
    font-size: 2rem;
    color: var(--primary);
}

.badge-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text-white);
}

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

/* ==========================================================================
   SERVICES GRID SECTION
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    position: relative;
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 30px;
    transition: var(--transition-smooth);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle 200px at var(--mouse-x, 0) var(--mouse-y, 0), rgba(158, 255, 41, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 1;
}

.service-card:hover .card-glow {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(158, 255, 41, 0.4);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), var(--shadow-neon);
}

/* Focus / Active service card */
.service-card.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-neon);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 24px;
    background: rgba(158, 255, 41, 0.06);
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(158, 255, 41, 0.15);
    z-index: 2;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background-color: var(--primary);
    color: var(--bg-dark);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(158, 255, 41, 0.4);
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 16px;
    z-index: 2;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    z-index: 2;
    flex-grow: 1;
}

.service-features-list {
    margin-bottom: 30px;
    z-index: 2;
}

.service-features-list li {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features-list li i {
    color: var(--primary);
}

.service-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-white);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
    align-self: flex-start;
}

.service-link i {
    transition: var(--transition-fast);
}

.service-card:hover .service-link {
    color: var(--primary);
    border-color: var(--primary);
}

.service-card:hover .service-link i {
    transform: translateX(6px);
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-slider-wrapper {
    position: relative;
    max-width: 800px;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    width: 100%;
    min-height: 280px;
}

.testimonial-card {
    min-width: 100%;
    background-color: var(--bg-dark-secondary);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 50px 40px;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 0;
    top: 0;
    transform: scale(0.95);
    transition: transform 0.5s ease-out, opacity 0.5s ease-out, visibility 0.5s;
    box-shadow: var(--shadow-md);
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: scale(1);
}

.testimonial-rating {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(158, 255, 41, 0.4);
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    background: #27272a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    border: 1px solid rgba(158, 255, 41, 0.2);
}

.testimonial-user h4 {
    font-size: 1.1rem;
    font-weight: 700;
}

.testimonial-user span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Indicators */
.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.test-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #27272a;
    cursor: pointer;
    transition: var(--transition-fast);
}

.test-dot.active {
    background-color: var(--primary);
    transform: scale(1.3);
    box-shadow: var(--shadow-neon);
}

/* ==========================================================================
   PARTNERS SECTION
   ========================================================================== */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    align-items: center;
}

.partner-logo {
    background-color: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
    color: var(--text-muted);
}

.partner-logo i {
    font-size: 1.8rem;
    transition: var(--transition-smooth);
}

.partner-logo span {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.partner-logo:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    background-color: rgba(158, 255, 41, 0.02);
    box-shadow: var(--shadow-neon);
    color: var(--text-white);
}

.partner-logo:hover i {
    color: var(--primary);
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(158, 255, 41, 0.4));
}

.insurance-info-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.insurance-info-text i {
    color: var(--primary);
    margin-right: 6px;
}

/* ==========================================================================
   CONTACT & MAP SECTION
   ========================================================================== */
.contact-form-wrapper {
    background-color: var(--bg-dark-secondary);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: var(--shadow-md);
}

.contact-form {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #52525b;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(158, 255, 41, 0.15);
}

/* Contact Details Info */
.contact-details-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.details-box {
    background-color: var(--bg-dark-secondary);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.details-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.contact-detail-item:last-child {
    margin-bottom: 0;
}

.detail-icon {
    font-size: 1.6rem;
    color: var(--primary);
    background: rgba(158, 255, 41, 0.06);
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(158, 255, 41, 0.1);
    flex-shrink: 0;
}

.contact-detail-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--text-muted);
}

.contact-detail-item p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
}

.contact-detail-item p.highlight-neon {
    font-size: 1.3rem;
    font-weight: 800;
}

/* Embedded Map Box */
.map-box {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    height: 280px;
    filter: grayscale(1) invert(0.9) contrast(1.2); /* Dark-styled Google Map */
    transition: var(--transition-smooth);
}

.map-box:hover {
    filter: grayscale(0) invert(0) contrast(1); /* Color on hover */
}

.map-box iframe {
    height: 100%;
}

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

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

.footer-brand .logo-wrapper {
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 440px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--bg-dark-secondary);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.footer-socials a:hover {
    background-color: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
    box-shadow: var(--shadow-neon);
    transform: translateY(-3px);
}

.footer-grid h3 {
    font-size: 1.2rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-grid h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-services a {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--primary);
    padding-left: 6px;
}

.footer-links a i,
.footer-services a i {
    font-size: 0.75rem;
    color: var(--primary);
}

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

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON (PULSING GLOW)
   ========================================================================== */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: var(--text-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    z-index: 99;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.floating-whatsapp-btn:hover {
    background-color: #22c35e;
    transform: scale(1.1);
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
}

.pulse-ring {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 3px solid #25d366;
    animation: whatsappPulse 2s infinite ease-out;
    pointer-events: none;
    box-sizing: border-box;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (MOBILE-FIRST)
   ========================================================================== */

/* Up to 1024px */
@media (max-width: 1024px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-text-content {
        padding-right: 0;
    }
    
    .about-image-wrapper {
        justify-content: center;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Up to 768px */
@media (max-width: 768px) {
    .top-bar {
        display: none; /* Hide topbar on mobile */
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .btn-navbar {
        display: none; /* Hide nav button in header, only keep in mobile nav drawer */
    }
    
    .slide-title {
        font-size: 2.4rem;
    }
    
    .slide-desc {
        font-size: 1rem;
    }
    
    .carousel-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    
    .carousel-btn.prev {
        left: 10px;
    }
    
    .carousel-btn.next {
        right: 10px;
    }
    
    .stats-container {
        padding: 20px;
    }
    
    .stat-item {
        flex: 1 1 100%;
        justify-content: flex-start;
        border-bottom: 1px solid var(--border);
        padding-bottom: 15px;
    }
    
    .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .form-group-2 {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .floating-whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
}

/* Up to 480px */
@media (max-width: 480px) {
    .slide-title {
        font-size: 1.8rem;
    }
    
    .slide-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .details-box {
        padding: 24px;
    }
    
    .floating-badge-box {
        left: 15px;
        bottom: 15px;
        padding: 10px 15px;
        gap: 10px;
    }
    
    .badge-icon {
        font-size: 1.5rem;
    }
    
    .badge-num {
        font-size: 1.2rem;
    }
}
