/* =======================================
   Variables & Theme
   ======================================= */
:root {
    /* Color Palette */
    --clr-bg-dark: #f8fafc;
    /* Slate 50 */
    --clr-bg-darker: #f1f5f9;
    /* Slate 100 */
    --clr-bg-card: #ffffff;
    /* White */

    --clr-primary: #ff6b00;
    /* Orange */
    --clr-primary-hover: #e66000;
    /* Darker Orange */
    --clr-secondary: #ff9d00;
    /* Yellow-Orange */
    --clr-accent: #3b82f6;
    /* Blue 500 */
    --clr-success: #10b981;
    /* Emerald 500 */

    --clr-text-main: #0f172a;
    /* Slate 900 */
    --clr-text-mut: #475569;
    /* Slate 600 */

    --clr-border: rgba(0, 0, 0, 0.08);
    --clr-glass-bg: rgba(255, 255, 255, 0.7);

    /* Gradients */
    --grad-primary: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
    --grad-text: linear-gradient(to right, #ff6b00, #ff9d00);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --trans-fast: 0.2s ease;
    --trans-normal: 0.3s ease;
    --trans-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(255, 107, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

ul {
    list-style: none;
}

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

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

.section-padding {
    padding: 6rem 0;
}

/* =======================================
   Utility Classes
   ======================================= */
.gradient-text {
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.text-gradient-huge {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 5rem;
}

.text-naranja {
    color: #FF7503;
}

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

.text-white {
    color: white;
}

.text-light-gray {
    color: var(--clr-text-mut);
}

.text-orange {
    color: #FF7503;
}

.text-yellow {
    color: #ff6b00;
}

.font-bold {
    font-weight: 700;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

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

.ml-2 {
    margin-left: 0.5rem;
}

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

.bg-alt {
    background-color: rgba(15, 23, 42, 0.4);
}

.relative-z {
    position: relative;
    z-index: 10;
}

.z-elevated {
    position: relative;
    z-index: 20;
}

.hidden {
    display: none;
}

/* =======================================
   Glassmorphism Setup
   ======================================= */
.glass-nav {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--clr-border);
}

.glass-card {
    background: var(--clr-glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--clr-border);
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.glass-form {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* =======================================
   Buttons
   ======================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--trans-normal);
    border: none;
    outline: none;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--clr-text-main);
    border: 1px solid var(--clr-primary);
}

.btn-outline:hover {
    background: rgba(255, 107, 0, 0.1);
    color: var(--clr-primary);
    transform: translateY(-2px);
}

/* =======================================
   Navigation
   ======================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: padding 0.3s ease, box-shadow 0.3s ease;
    will-change: padding, box-shadow;
}

header.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
}

.logo i {
    font-size: 1.8rem;
}

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

.nav-link {
    font-weight: 500;
    color: var(--clr-text-mut);
    position: relative;
}

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

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

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

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

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

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

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out alternate;
}

.shape-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: var(--clr-primary);
    animation-delay: 0s;
}

.shape-2 {
    bottom: 10%;
    right: -5%;
    width: 40vw;
    height: 40vw;
    background: var(--clr-secondary);
    animation-delay: -5s;
}

.shape-3 {
    top: 40%;
    left: 30%;
    width: 30vw;
    height: 30vw;
    background: var(--clr-accent);
    animation: drift 25s infinite linear;
    opacity: 0.2;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #93c5fd;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--clr-primary);
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7);
    animation: pulse-ring 2s infinite;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--clr-text-mut);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--clr-border);
}

.stat-num {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--clr-text-mut);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--clr-border);
}

/* =======================================
   Hero Visual / iPhone Mockup
   ======================================= */
.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 280px;
    height: 580px;
    background: #e2e8f0;
    border-radius: 40px;
    border: 6px solid #cbd5e1;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1), 0 0 0 1px #94a3b8, 0 0 40px rgba(255, 107, 0, 0.3);
    overflow: hidden;
    z-index: 2;
    transform: rotate(-5deg) translateY(0);
    animation: levitate 6s ease-in-out infinite;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #cbd5e1;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    position: relative;
    border-radius: 34px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Mockup UI Inner Details */
.mockup-content {
    padding: 2rem 1rem 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.mockup-greeting {
    font-weight: 700;
    font-size: 1.2rem;
}

.mockup-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--grad-primary);
}

.mockup-search {
    background: rgba(0, 0, 0, 0.03);
    padding: 0.8rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.85rem;
}

.mockup-map {
    flex: 1;
    background: #f8fafc;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 20px 20px;
}

.map-pin {
    width: 30px;
    height: 30px;
    background: var(--grad-primary);
    border-radius: 50%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border: 2px solid white;
}

.pin-1 {
    top: 30%;
    left: 20%;
    background: var(--clr-accent);
}

.pin-2 {
    top: 50%;
    left: 70%;
    background: var(--clr-primary);
}

.pin-3 {
    top: 70%;
    left: 40%;
    background: var(--clr-success);
}

.mockup-card {
    padding: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-radius: 12px;
}

.card-ico {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(59, 130, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary);
}

.card-info h4 {
    margin: 0;
    font-size: 0.9rem;
}

.card-info p {
    margin: 0;
    font-size: 0.75rem;
    color: var(--clr-success);
    font-weight: 600;
}

.card-dist {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--clr-text-mut);
}


.float-element {
    position: absolute;
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    z-index: 3;
    animation: levitate 5s ease-in-out infinite reverse;
}

.float-1 {
    top: 20%;
    right: -10%;
}

.float-2 {
    bottom: 25%;
    left: -20%;
    animation-delay: 2s;
}


/* =======================================
   Features Section
   ======================================= */
.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--clr-bg-card);
    padding: 2.5rem 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--trans-normal);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: var(--trans-normal);
}

.icon-orange-light {
    background: rgba(255, 107, 0, 0.1);
    color: var(--clr-primary);
}

.icon-yellow {
    background: rgba(255, 157, 0, 0.1);
    color: var(--clr-secondary);
}

.icon-orange {
    background: rgba(245, 158, 11, 0.1);
    color: var(--clr-accent);
}

.icon-green {
    background: rgba(16, 185, 129, 0.1);
    color: var(--clr-success);
}

.icon-blue {
    background: rgba(59, 130, 246, 0.1);
    color: var(--clr-accent);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-text {
    color: var(--clr-text-mut);
    font-size: 0.95rem;
}


/* =======================================
   Steps / How it works
   ======================================= */
.steps-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: relative;
}

.step-list::before {
    content: '';
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 24px;
    width: 2px;
    background: rgba(0, 0, 0, 0.08);
    z-index: -1;
}

.step-item {
    display: flex;
    gap: 1.5rem;
}

.step-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: var(--clr-bg-darker);
    border: 2px solid var(--clr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--clr-primary);
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.2);
}

.step-info h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.step-info p {
    color: var(--clr-text-mut);
    margin: 0;
}

.steps-visual {
    display: flex;
    justify-content: center;
}

.visual-circle-bg {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rotating-border {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed rgba(255, 107, 0, 0.3);
    animation: spin 20s linear infinite;
}

.inner-content {
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: var(--clr-bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}


/* =======================================
   CTA / Store App Section
   ======================================= */
.cta-box {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(241, 245, 249, 0.9) 100%);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--clr-text-mut);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.glow-border {
    position: relative;
    overflow: hidden;
}

.glow-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--grad-text);
    opacity: 0.8;
}

.store-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    transition: var(--trans-normal);
}

.store-btn:hover {
    background: #f8fafc;
    transform: translateY(-3px);
    border-color: rgba(0, 0, 0, 0.15);
}

.store-btn i {
    font-size: 2rem;
    color: var(--clr-text-main);
}

.btn-texts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--clr-text-main);
}

.btn-sub {
    font-size: 0.7rem;
    color: var(--clr-text-mut);
    line-height: 1;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.btn-main {
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-heading);
    line-height: 1;
}

/* =======================================
   Contact Section
   ======================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.contact-details {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary);
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--trans-norma);
}

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

/* Forms */
.form-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--clr-text-main);
    padding: 1rem 1.2rem;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--trans-fast);
}

.form-control:focus {
    border-color: var(--clr-primary);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.2);
}

.form-group label {
    position: absolute;
    left: 1.2rem;
    top: 1rem;
    color: rgba(0, 0, 0, 0.5);
    pointer-events: none;
    transition: var(--trans-fast);
    padding: 0 0.2rem;
    background: transparent;
}

.form-control:focus~label,
.form-control:not(:placeholder-shown)~label {
    top: -0.6rem;
    left: 1rem;
    font-size: 0.8rem;
    color: var(--clr-primary);
    background: #ffffff;
    border-radius: 4px;
    padding: 0 0.4rem;
}

.form-control::placeholder {
    color: transparent;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    color: var(--clr-text-main);
}

select.form-control option {
    background: #ffffff;
    color: var(--clr-text-main);
}

select.form-control:valid,
select.form-control:focus {
    color: var(--clr-text-main);
}


/* =======================================
   Footer
   ======================================= */
.footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    background: var(--clr-bg-dark);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.copyright {
    color: var(--clr-text-mut);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--clr-text-mut);
}

.footer-links a:hover {
    color: var(--clr-primary);
    text-decoration: underline;
}

/* =======================================
   Animations
   ======================================= */
@keyframes float {
    0% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(-20px) scale(1.05);
    }
}

@keyframes drift {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(5vw, 5vh) rotate(90deg);
    }

    50% {
        transform: translate(0, 10vh) rotate(180deg);
    }

    75% {
        transform: translate(-5vw, 5vh) rotate(270deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 107, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
    }
}

@keyframes levitate {

    0%,
    100% {
        transform: translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateY(-15px) rotate(-3deg);
    }
}

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

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.bounce {
    animation: bounce 2s infinite;
}

.pulse {
    animation: pulse-ring 2s infinite;
}

/* Scroll Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

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

.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* =======================================
   Media Queries
   ======================================= */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .hero.section-padding {
        padding-top: 120px;
        padding-bottom: 4rem;
    }

    .float-element {
        display: none;
    }

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

    .steps-visual {
        display: none;
    }

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

    /* Better Header on Mobile */
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        position: relative;
    }

    /* Toggle Button */
    .mobile-toggle {
        display: block;
        z-index: 1001;
    }

    /* Mobile Menu Dropdown */
    #nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 2rem;
        flex-direction: column;
        align-items: center;
        border-bottom: 1px solid var(--clr-border);
        box-shadow: var(--shadow-md);
        z-index: 1000;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    #nav-menu.show {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        margin-bottom: 1.5rem;
        width: 100%;
        padding: 0;
        list-style: none;
    }

    .nav-links li {
        width: 100%;
        display: block;
    }

    .nav-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        word-break: break-word;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .stat-num {
        font-size: 1.5rem;
    }

    /* Generic section padding for other sections */
    section:not(.hero).section-padding {
        padding: 4rem 0;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .badge-pill {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .btn-lg {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-divider {
        width: 80%;
        height: 1px;
        margin: 0.5rem 0;
    }
}