/* =========================================
   VARIABLES & RESET
   ========================================= */
:root {
    /* Color Palette */
    --primary: #E63946;    /* Red */
    --secondary: #FFB703;  /* Yellow */
    --dark: #121212;       /* Black */
    --dark-light: #1E1E1E; /* Lighter Black */
    --light: #F8F9FA;      /* Off-white */
    --white: #FFFFFF;
    --text-main: #333333;
    --text-muted: #6C757D;
    
    /* Typography */
    --font-main: 'Inter', sans-serif;
    
    /* Spacing */
    --section-pad: 80px 0;
    
    /* Transitions */
    --trans-fast: 0.3s ease;
    --trans-smooth: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 10px 30px rgba(230, 57, 70, 0.3);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* =========================================
   TYPOGRAPHY & UTILITIES
   ========================================= */
h1, h2, h3, h4, h5, h6 {
    color: var(--dark);
    font-weight: 700;
    line-height: 1.2;
}

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

.section {
    padding: var(--section-pad);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--secondary);
    border-radius: 2px;
}

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

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--trans-fast);
    border: none;
    outline: none;
}

.btn i {
    font-size: 1.2rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: #D62828;
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

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

.btn-outline:hover {
    background-color: var(--dark);
    color: var(--white);
    transform: translateY(-3px);
}

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

.btn-block {
    width: 100%;
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--dark);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background-color: #EBB000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 183, 3, 0.3);
}

/* =========================================
   DRIVING CATEGORIES SECTION
   ========================================= */
.categories {
    background-color: var(--white);
}

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

.category-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--trans-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.category-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

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

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

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

.category-header i {
    font-size: 1.8rem;
    color: var(--primary);
}

.category-header h3 {
    font-size: 1.3rem;
    margin: 0;
}

.category-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

@media (min-width: 992px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) and (min-width: 600px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 599px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   HEADER & NAV
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--trans-fast);
    padding: 15px 0;
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

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

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

.logo i {
    font-size: 2.5rem;
    color: var(--primary);
}

.logo-text h1 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
}

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

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

.nav-link {
    font-weight: 500;
    color: var(--text-main);
    position: relative;
    transition: var(--trans-fast);
}

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

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

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

.btn-header {
    padding: 10px 20px;
}

.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--dark);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    padding-top: 150px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, var(--light) 0%, #E9ECEF 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background-color: var(--secondary);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

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

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

.subtitle {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(255, 183, 3, 0.2);
    color: #D49600;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hero-content h2 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

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

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--secondary);
    background-color: var(--white);
    border-radius: 50%;
    padding: 10px;
    box-shadow: var(--shadow-sm);
}

.stat-item span {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark);
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

.floating-card {
    position: absolute;
    background-color: var(--white);
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 2;
}

.floating-card i {
    font-size: 2rem;
    color: var(--secondary);
    background-color: rgba(255, 183, 3, 0.1);
    padding: 12px;
    border-radius: 50%;
}

.floating-card div {
    display: flex;
    flex-direction: column;
}

.floating-card strong {
    font-size: 1.5rem;
    color: var(--dark);
}

.floating-card span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.card-1 {
    top: 40px;
    left: -40px;
    animation: float 5s ease-in-out infinite alternate;
}

.card-2 {
    bottom: 40px;
    right: -40px;
    animation: float 7s ease-in-out infinite alternate-reverse;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services {
    background-color: var(--white);
}

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

.service-card {
    background-color: var(--light);
    padding: 40px 30px;
    border-radius: 16px;
    transition: var(--trans-smooth);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--trans-smooth);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background-color: var(--white);
    border-color: rgba(0,0,0,0.05);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: rgba(230, 57, 70, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--trans-fast);
}

.icon-wrapper i {
    font-size: 2.5rem;
    color: var(--primary);
    transition: var(--trans-fast);
}

.service-card:hover .icon-wrapper {
    background-color: var(--primary);
}

.service-card:hover .icon-wrapper i {
    color: var(--white);
}

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

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

/* =========================================
   ABOUT SECTION
   ========================================= */
.about {
    background-color: var(--light);
}

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

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--primary);
    color: var(--white);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 8px solid var(--light);
    box-shadow: var(--shadow-md);
}

.experience-badge span {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge p {
    font-size: 0.9rem;
    font-weight: 500;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.institutional-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    border-left: 4px solid var(--secondary);
    padding-left: 20px;
}

.differentials {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.diff-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.diff-item i {
    font-size: 2rem;
    color: var(--primary);
    background-color: rgba(230, 57, 70, 0.1);
    padding: 12px;
    border-radius: 12px;
}

.diff-item h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

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

/* =========================================
   UNITS SECTION
   ========================================= */
.units {
    background-color: var(--white);
}

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

.unit-card {
    background-color: var(--light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--trans-smooth);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
}

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

.unit-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.unit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.unit-card:hover .unit-image img {
    transform: scale(1.05);
}

.unit-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--dark);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.unit-badge.highlight-badge {
    background-color: var(--primary);
}

.unit-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.unit-header {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.unit-header h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.unit-subtitle {
    display: block;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.unit-slogan {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary);
    font-style: italic;
    font-weight: 600;
    font-size: 1.05rem;
}

.unit-body {
    flex-grow: 1;
    margin-bottom: 30px;
}

.unit-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.unit-info li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.unit-info i {
    font-size: 1.5rem;
    color: var(--primary);
    background-color: rgba(230, 57, 70, 0.1);
    padding: 10px;
    border-radius: 10px;
}

.unit-info div {
    display: flex;
    flex-direction: column;
}

.unit-info strong {
    color: var(--dark);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.unit-info span {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.4;
}

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

.unit-footer .btn {
    flex: 1;
    padding: 12px 16px;
    font-size: 0.95rem;
    justify-content: center;
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
    background-color: var(--dark);
    padding: 0;
    position: relative;
    overflow: hidden;
}

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

.cta-content {
    padding: 80px 0;
    max-width: 600px;
    color: var(--white);
}

.cta-content h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: #A0AAB2;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-image {
    width: 40%;
    position: relative;
    height: 100%;
}

.cta-image img {
    position: absolute;
    bottom: -50px;
    right: 0;
    height: 120%;
    width: auto;
    object-fit: contain;
}

/* =========================================
   CONTACT & LOCATION
   ========================================= */
.contact-location {
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form-container {
    background-color: var(--light);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.contact-form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-light);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--trans-fast);
    background-color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    cursor: pointer;
}

.select-wrapper i {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--text-muted);
    pointer-events: none;
}

.location-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background-color: var(--light);
    padding: 24px;
    border-radius: 12px;
}

.icon-box {
    background-color: var(--primary);
    color: var(--white);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-item h4 {
    margin-bottom: 8px;
}

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

.map-wrapper {
    flex-grow: 1;
    min-height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding-top: 80px;
}

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

.footer-logo .logo-text h2 {
    color: var(--white);
}

.footer-about p {
    color: #A0AAB2;
    margin: 20px 0;
    max-width: 400px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--trans-fast);
}

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

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

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

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 16px;
}

.footer-links ul li a {
    color: #A0AAB2;
    transition: var(--trans-fast);
}

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

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #A0AAB2;
}

.footer-contact ul li i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 3px;
}

.footer-bottom {
    background-color: #0A0A0A;
    padding: 20px 0;
    text-align: center;
    color: #A0AAB2;
    font-size: 0.9rem;
}

/* =========================================
   WHATSAPP FLOATING BUTTON
   ========================================= */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--trans-fast);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* =========================================
   ANIMATIONS (Scroll Reveal)
   ========================================= */
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

/* =========================================
   RESPONSIVE DESIGN (Mobile First Approach adaptation)
   ========================================= */
@media (max-width: 1024px) {
    .hero-content h2 { font-size: 3rem; }
    .hero-image img { height: 400px; object-fit: cover; }
    .cta-image img { position: relative; bottom: 0; height: 300px; }
    .cta-container { flex-direction: column; text-align: center; }
    .cta-content { padding: 60px 0 0 0; }
    .cta-image { width: 100%; margin-top: 40px; display: flex; justify-content: center; }
}

@media (max-width: 991px) {
    .contact-grid { grid-template-columns: 1fr; }
    .about-container { grid-template-columns: 1fr; }
    .about-image { order: 2; margin-top: 40px; }
    .about-content { order: 1; }
    .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    /* Mobile Menu */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 40px 0;
        gap: 0;
    }

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

    .nav-item {
        margin: 15px 0;
    }

    .hamburger {
        display: block;
    }

    .btn-header {
        display: none;
    }

    /* Hero */
    .hero-container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero { padding-top: 120px; }
    .hero-buttons { justify-content: center; flex-direction: column; gap: 15px; }
    .stats { justify-content: center; flex-direction: column; gap: 15px; align-items: center; }
    .hero-content h2 { font-size: 2.5rem; }
    
    .floating-card { padding: 10px 15px; }
    .floating-card i { font-size: 1.5rem; padding: 8px; }
    .floating-card strong { font-size: 1.2rem; }
    
    .card-1 { left: 10px; top: 10px; }
    .card-2 { right: 10px; bottom: 10px; }

    /* Footer */
    .footer-container { grid-template-columns: 1fr; gap: 40px; }
    
    /* Contact Info */
    .contact-info { grid-template-columns: 1fr; }

    /* Float Button */
    .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; font-size: 25px; }
}

@media (max-width: 480px) {
    .section { padding: 60px 0; }
    .section-title h2 { font-size: 2rem; }
    .experience-badge { width: 100px; height: 100px; right: 0; bottom: 0; }
    .experience-badge span { font-size: 1.8rem; }
    .experience-badge p { font-size: 0.8rem; }
}

/* =========================================
   WOW FACTOR - VISUAL OVERHAUL OVERRIDES
   ========================================= */

/* Custom Cursor */
@media (min-width: 769px) {
    body { cursor: none; }
    a, button, .btn, input, select, textarea { cursor: none !important; }
}
.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0; left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}
.cursor-dot {
    width: 8px; height: 8px;
    background-color: var(--primary);
}
.cursor-outline {
    width: 40px; height: 40px;
    border: 2px solid rgba(230, 57, 70, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}
a:hover ~ .cursor-outline, button:hover ~ .cursor-outline, .btn:hover ~ .cursor-outline {
    width: 60px; height: 60px;
    background-color: rgba(230, 57, 70, 0.1);
}

/* Scroll Car */
.scroll-car {
    position: fixed;
    right: 30px;
    top: 20px;
    font-size: 2.5rem;
    color: var(--primary);
    z-index: 9998;
    transform: translateY(0) rotate(90deg);
    transition: transform 0.1s linear;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

/* Button Ripple Effect */
.btn-ripple {
    position: relative;
    overflow: hidden;
}
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple-anim 0.6s linear;
    pointer-events: none;
}
@keyframes ripple-anim {
    to { transform: scale(4); opacity: 0; }
}
.bg-white-glass {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(5px);
    color: var(--dark) !important;
}
.btn-dark {
    background-color: var(--dark);
    color: var(--white);
}
.btn-dark:hover {
    background-color: var(--dark-light);
    color: var(--white);
    transform: translateY(-3px);
}

/* ---------------------------------
   DRIBBBLE STYLE HERO
   --------------------------------- */
.hero-dribbble {
    background: #F8F9FA;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
    position: relative;
}
.dribbble-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.hero-dribbble .hero-content {
    background: transparent;
    padding: 0;
    border: none;
    backdrop-filter: none;
    text-align: left;
    max-width: 100%;
    box-shadow: none;
}
.hero-dribbble .hero-content h2 {
    color: var(--dark);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero-dribbble .hero-content p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 30px;
}
.hero-dribbble .subtitle-dribbble {
    background: rgba(230, 57, 70, 0.1);
    color: var(--primary);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}
.hero-dribbble .hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    margin-top: 0;
}
.hero-dribbble .btn-outline {
    border: 2px solid var(--dark);
    color: var(--dark);
    background: transparent;
}
.hero-dribbble .btn-outline:hover {
    background: var(--dark);
    color: var(--white);
}

/* The Art Scene */
.hero-dribbble-art {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.art-scene {
    position: relative;
    width: 500px;
    height: 350px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* Road */
.art-road {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 200%;
    height: 12px;
    background: repeating-linear-gradient(90deg, #E2E8F0 0, #E2E8F0 40px, transparent 40px, transparent 80px);
    animation: driveRoad 1s linear infinite;
}
@keyframes driveRoad {
    from { transform: translateX(0); }
    to { transform: translateX(-80px); }
}

/* Car */
.art-car {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    height: 140px;
    animation: carBounce 2s ease-in-out infinite alternate;
}
@keyframes carBounce {
    0% { transform: translateX(-50%) translateY(0); }
    100% { transform: translateX(-50%) translateY(4px); }
}

.car-body {
    position: absolute;
    bottom: 15px;
    width: 100%;
    height: 80px;
    background: var(--primary);
    border-radius: 20px 40px 15px 15px;
    box-shadow: inset -10px -10px 0 rgba(0,0,0,0.1);
}

.car-roof-sign {
    position: absolute;
    top: -20px;
    left: 120px;
    background: #FFB703;
    color: var(--dark);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    border: 2px solid var(--dark);
    z-index: 10;
}
.car-roof-sign::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--dark);
}

.car-window {
    position: absolute;
    top: -45px;
    left: 50px;
    width: 160px;
    height: 55px;
    background: #E2E8F0;
    border-radius: 30px 10px 0 0;
    border: 4px solid var(--primary);
    border-bottom: none;
    overflow: hidden;
}

.car-headlight {
    position: absolute;
    right: -5px;
    top: 30px;
    width: 15px;
    height: 25px;
    background: #FFF;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(255,255,255,0.8);
}
.blinker {
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 10px;
    height: 10px;
    background: #FFB703;
    border-radius: 50%;
    animation: blink 0.5s infinite alternate;
}
@keyframes blink {
    0% { opacity: 0.2; box-shadow: none; }
    100% { opacity: 1; box-shadow: 0 0 10px #FFB703; }
}

.car-wheel {
    position: absolute;
    bottom: 0;
    width: 45px;
    height: 45px;
    background: var(--dark);
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spin 0.5s linear infinite;
}
.wheel-front { right: 30px; }
.wheel-back { left: 30px; }
.wheel-inner {
    width: 20px;
    height: 20px;
    background: #ccc;
    border-radius: 50%;
    border: 3px dashed var(--dark);
}
@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* Interior Details */
.car-dashboard {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 20px;
    background: var(--dark-light);
    border-radius: 10px 0 0 0;
}
.car-steering-wheel {
    position: absolute;
    bottom: 10px;
    right: 35px;
    width: 8px;
    height: 25px;
    background: var(--dark);
    border-radius: 4px;
    transform: rotate(15deg);
    transform-origin: bottom;
    animation: steerMove 2s ease-in-out infinite alternate;
}
@keyframes steerMove {
    0% { transform: rotate(10deg); }
    100% { transform: rotate(20deg); }
}

/* Characters */
.character {
    position: absolute;
    bottom: 0;
}
.student { right: 50px; z-index: 2; }
.instructor { left: 30px; z-index: 1; opacity: 0.8; }

.char-head {
    width: 25px;
    height: 25px;
    background: #FFB703; 
    border-radius: 50%;
    position: absolute;
    bottom: 25px;
    left: 5px;
}
.student .char-head { background: var(--dark); } 

.char-body {
    width: 35px;
    height: 30px;
    background: #333;
    border-radius: 15px 15px 0 0;
    position: absolute;
    bottom: -5px;
}
.instructor .char-body { background: #0056b3; } 

.char-arm {
    width: 20px;
    height: 6px;
    background: #FFB703;
    position: absolute;
    bottom: 15px;
    right: -15px;
    border-radius: 3px;
    transform: rotate(20deg);
}
.student .char-arm {
    background: var(--dark);
    right: -10px;
    transform: rotate(35deg);
    animation: armSteer 2s ease-in-out infinite alternate;
}
@keyframes armSteer {
    0% { transform: rotate(30deg); }
    100% { transform: rotate(45deg); }
}

.instructor .char-arm.pointing {
    width: 25px;
    background: #FFB703;
    right: -20px;
    bottom: 18px;
    transform: rotate(-10deg);
    animation: point 3s ease-in-out infinite alternate;
}
@keyframes point {
    0%, 50% { transform: rotate(-10deg); }
    100% { transform: rotate(-30deg); }
}

/* Responsive for Dribbble Hero */
@media (max-width: 991px) {
    .dribbble-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
    }
    .hero-dribbble .hero-content {
        text-align: center;
        margin: 0 auto;
    }
    .hero-dribbble .hero-buttons {
        justify-content: center;
    }
}
@media (max-width: 768px) {
    .hero-dribbble-art {
        height: 250px;
    }
    .art-scene {
        transform: scale(0.6);
    }
    .hero-dribbble .hero-content h2 {
        font-size: 2.2rem;
    }
}

/* ---------------------------------
   NEW UNITS CREATIVE CARDS
   --------------------------------- */
.units {
    position: relative;
    background: #1a1a1a;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 100px;
}
.asphalt-texture {
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.15'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}
.units .container { position: relative; z-index: 1; }
.highlight-yellow { color: var(--secondary); font-weight: bold; text-transform: uppercase; letter-spacing: 2px; display: block; margin-bottom: 10px; }
.text-white { color: white !important; }
.text-gray { color: #aaa !important; }

.unit-card-creative {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.unit-card-creative:hover {
    transform: scale(1.05) translateY(-10px);
}
.creative-pole {
    width: 24px;
    height: 80px;
    background: linear-gradient(90deg, #444, #888, #444);
    border-radius: 5px 5px 0 0;
    box-shadow: 2px 0 5px rgba(0,0,0,0.5);
}
.creative-board {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    border: 6px solid #333;
    box-shadow: inset 0 0 0 4px var(--secondary), 0 20px 40px rgba(0,0,0,0.6);
    position: relative;
    width: 100%;
}
.board-screws span {
    position: absolute;
    width: 12px; height: 12px;
    background: #ccc; border-radius: 50%;
    box-shadow: inset 1px 1px 2px rgba(0,0,0,0.5);
}
.board-screws span:nth-child(1) { top: 15px; left: 15px; }
.board-screws span:nth-child(2) { top: 15px; right: 15px; }
.board-screws span:nth-child(3) { bottom: 15px; left: 15px; }
.board-screws span:nth-child(4) { bottom: 15px; right: 15px; }

.creative-board .unit-header {
    text-align: center;
    border-bottom: 2px dashed #ccc;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.creative-board .unit-icon { font-size: 3.5rem; color: var(--primary); margin-bottom: 10px; display: inline-block; }
.creative-board h3 { font-size: 2rem; color: var(--dark); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 1px; }
.creative-board .unit-subtitle { color: var(--text-muted); font-size: 1rem; font-weight: 500; }
.creative-board .unit-slogan { display: block; color: var(--primary); font-style: italic; font-weight: bold; margin-top: 10px; }

.creative-board .unit-body { margin-bottom: 30px; }
.creative-board .unit-info li { align-items: center; }
.creative-board .unit-info i { background: transparent; color: var(--dark); font-size: 1.8rem; padding: 0; }
.creative-board .unit-info strong { color: var(--primary); }
.creative-board .unit-info span { color: var(--dark-light); font-weight: 500; }

.creative-board .unit-footer { display: flex; gap: 15px; }
.creative-board .unit-footer .btn { flex: 1; justify-content: center; font-weight: bold; text-transform: uppercase; font-size: 0.9rem; padding: 14px; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .floating-signs { display: none; }
    .road-lines { height: 100%; }
    body { cursor: auto !important; }
    a, button, .btn { cursor: pointer !important; }
    .cursor-dot, .cursor-outline, .scroll-car { display: none; }
    .creative-board .unit-footer { flex-direction: column; }
}

/* =========================================
   HERO VIDEO BACKGROUND (CONVERSION FOCUSED)
   ========================================= */
.hero-video-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #111;
}
.video-container {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}
.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
}
.hero-content-wrapper {
    position: relative;
    z-index: 3;
    padding-top: 80px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
}
.hero-content {
    background: rgba(20, 20, 20, 0.4);
    padding: 50px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    max-width: 700px;
    text-align: left;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}
.hero-badges .badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFF;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}
.hero-badges .badge i { color: var(--secondary); font-size: 1.1rem; }
.hero-content h2 {
    color: #FFF;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}
.hero-content p {
    color: #E0E0E0;
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 400;
}
.hero-video-section .hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
.hero-video-section .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
}
.hero-video-section .btn-primary {
    background-color: var(--primary);
    box-shadow: 0 4px 15px rgba(230,57,70,0.4);
}
.hero-video-section .btn-outline {
    border: 2px solid rgba(255,255,255,0.5);
    color: #FFF;
    background: rgba(255,255,255,0.05);
}
.hero-video-section .btn-outline:hover {
    background: #FFF;
    color: #000;
}
.scarcity-text {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 5px;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

@media (max-width: 768px) {
    .hero-content { padding: 30px 20px; text-align: center; }
    .hero-content h2 { font-size: 2.2rem; }
    .hero-content-wrapper { justify-content: center; }
    .hero-badges { justify-content: center; }
    .hero-video-section .hero-buttons { flex-direction: column; }
    .scarcity-text { justify-content: center; }
}
