

.btn-primary {
    background-color: var(--color-orange);
    color: black;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    padding: 0.8rem 1.5rem;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: white;
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
}

.btn-outline {
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    transition: all 0.3s ease;
}
.btn-outline:hover { background-color: rgba(255,255,255,0.1); }

.btn-large { padding: 1rem 2rem; font-size: 1.125rem; }
.btn-block { width: 100%; text-align: center; }



/* --------------------------
   2. Utilities & Typography
--------------------------- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.text-orange { color: var(--color-orange); }
.hidden { display: none !important; }

.display-title {
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 1rem;
}

@media (min-width: 768px) { .display-title { font-size: 3rem; } }


/* --------------------------
   3. Navigation
--------------------------- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    background-color: var(--color-dark);
    border-bottom: 1px solid var(--color-border);
    height: 80px;
    display: flex;
    align-items: center;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-wrapper { display: flex; align-items: center; gap: 0.5rem; }
.logo-icon img { width: 9rem; height: 5rem; object-fit:contain; }
.logo-icon.small { width: 1.5rem; height: 1.5rem; }


.desktop-menu { display: none; gap: 2rem; align-items: center; }
.nav-link { color: #d1d5db; text-decoration: none; text-transform: uppercase; font-size: 0.875rem; letter-spacing: 0.05em; transition: color 0.2s; }
.nav-link:hover { color: var(--color-orange); }
.phone-link {font-size: 1.2rem; font-weight: 700; color: var(--color-orange); display: flex; align-items: center; gap: 0.5rem; text-decoration: none !important; white-space: nowrap;}

.phone-link i { color: var(--color-orange); }

.mobile-menu-toggle { display: block; }
.mobile-menu-toggle button { background: none; border: none; color: #d1d5db; cursor: pointer; }
.icon { width: 2rem; height: 2rem; }

.mobile-menu {
    position: absolute;
    top: 80px; left: 0;
    width: 100%;
    background-color: var(--color-gray);
    border-bottom: 1px solid var(--color-border);
}
.mobile-menu-links { padding: 0.5rem 1rem 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.mobile-link { display: block; padding: 0.75rem; color: white; text-decoration: none; font-weight: 500; }
.mobile-link:hover { color: var(--color-orange); }
.mobile-link.highlight { color: var(--color-orange); font-weight: 700; }

@media (min-width: 768px) {
    .desktop-menu { display: flex; }
    .mobile-menu-toggle { display: none; }
    .mobile-menu { display: none !important; }
}


/* --------------------------
   4. Hero Section
--------------------------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--color-dark) 0%, rgba(9,9,11,0.8) 50%, transparent 100%); }
.hero-content { position: relative; z-index: 10; text-align: center; padding: 0 1rem; }

.hero-subtitle { color: var(--color-orange); font-family: var(--font-display); letter-spacing: 0.4em; text-transform: uppercase; margin-bottom: 1rem; font-size:1rem; }
.hero-title { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 3rem; line-height: 1; margin-bottom: 1.5rem; }
.gradient-text { background: linear-gradient(to right, var(--color-orange), #eab308); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-description { color: var(--color-concrete); font-size: 1rem; max-width: 42rem; margin: 0 auto 2.5rem; line-height: 1.6; }
.hero-buttons { display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
.glow-effect { box-shadow: 0 0 20px rgba(249, 115, 22, 0.3); }

@media (min-width: 640px) { .hero-title { font-size: 4rem; } .hero-buttons { flex-direction: row; } }
@media (min-width: 1024px) { .hero-title { font-size: 6rem; } }

/* --------------------------
  5. Trust & Pain Points (Cards)
--------------------------- */ 
.trust-section { padding: 3rem 0; background: linear-gradient(135deg, #111827, #1f2937, #000); }
.trust-header { text-align: center; margin-bottom: 2rem; }
.trust-header h2 { color: rgba(255,255,255,0.6); font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.1em; }
.trust-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
.trust-badge { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1.25rem; background-color: rgba(0,0,0,0.4); backdrop-filter: blur(8px); border: 1px solid var(--color-border); border-radius: 0.75rem; transition: background 0.3s; }
.trust-badge:hover { background-color: rgba(0,0,0,0.6); }
.badge-text { display: flex; flex-direction: column; text-align: left; }
.badge-text strong { font-size: 0.75rem; font-weight: 700; }
.badge-text span { color: #9ca3af; font-size: 0.625rem; text-transform: uppercase; }

.Trust-CTA {
    /* 1. Center the button */
    display: flex;
    justify-content: center;
    width: 100%;
    
    /* 2. Add space between this section and the next (Pain Points) */
    /* Adjust the 5rem to be larger or smaller depending on your layout */
    margin-bottom: 3rem; 
    
    /* Optional: Gives the button a little room from the text right above it */
    margin-top: 2rem; 
}


/* --------------------------
   6. Why-us Section
--------------------------- */
.why-us-section { padding: 6rem 0; background-color: var(--color-dark); position: relative; }
.why-us-grid { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .why-us-grid { grid-template-columns: 1fr 1fr; } }

.why-us-lead { color: #d1d5db; margin-bottom: 2rem; font-size: 1.125rem; }
.why-us-list { display: flex; flex-direction: column; gap: 1.5rem; }
.why-us-item { display: flex; align-items: flex-start; }
.why-us-number { flex-shrink: 0; width: 1.5rem; height: 1.5rem; background-color: var(--color-orange); border-radius: 50%; color: black; font-weight: 700; font-size: 0.75rem; display: flex; align-items: center; justify-content: center; margin-top: 0.25rem; }
.why-us-details { margin-left: 1rem; }
.why-us-details h4 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.125rem; font-weight: 700; margin-bottom: 0.25rem; }
.why-us-details p { color: #9ca3af; font-size: 0.875rem; }

.why-us-image-wrapper { position: relative; }
.image-glow { position: absolute; inset: -1rem; background-color: rgba(249, 115, 22, 0.2); filter: blur(24px); border-radius: 0.5rem; }
.why-us-img { position: relative; width: 100%; border-radius: 0.125rem; border: 2px solid var(--color-border); filter: grayscale(100%); transition: filter 0.5s; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); }
.why-us-img:hover { filter: grayscale(0%); }

/* --------------------------
   7. Results & Contact
--------------------------- */
.results-section { padding: 6rem 0; background-color: #18181b; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.results-section h2{background-color:var(--color-orange)}
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.result-card { text-align: center; padding: 2rem; background-color: var(--color-dark); border-top: 4px solid var(--color-orange); }
.result-number { font-family: var(--font-display); font-weight: 700; font-size: 3rem; margin-bottom: 0.5rem; }
.result-label { color: var(--color-orange); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.875rem; margin-bottom: 1rem; }
.quote { color: #9ca3af; font-size: 0.875rem; font-style: italic; }
.author { font-weight: 700; font-size: 0.75rem; margin-top: 0.5rem; }

.contact-section { position: relative; padding: 8rem 0; overflow: hidden; }
.contact-overlay { position: absolute; inset: 0; background-color: rgba(249, 115, 22, 0.1); }
.contact-glow { position: absolute; bottom: -5rem; right: -5rem; width: 24rem; height: 24rem; background-color: rgba(249, 115, 22, 0.2); border-radius: 50%; filter: blur(64px); }
.contact-container { position: relative; max-width: 56rem; text-align: center; margin: 0 auto; }
.contact-title { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 2.25rem; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .contact-title { font-size: 3.75rem; } }

.contact-sub { font-size: 1.125rem; color: #d1d5db; margin-bottom: 2.5rem; max-width: 42rem; margin-left: auto; margin-right: auto; }
.contact-form { max-width: 28rem; margin: 0 auto; background-color: var(--color-dark); padding: 1.5rem; border: 1px solid var(--color-border); border-radius: 0.125rem; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); }
.form-inputs { display: flex; flex-direction: column; gap: 1rem; }
.form-input { width: 100%; background-color: var(--color-gray); border: 1px solid #3f3f46; color: white; padding: 0.75rem; font-family: inherit; outline: none; transition: border-color 0.2s; }
.form-input:focus { border-color: var(--color-orange); }
.form-note { font-size: 0.75rem; color: #6b7280; text-align: center; margin-top: 0.5rem; }

/* --------------------------
   8. Footer
--------------------------- */
.footer { background-color: black; padding: 3rem 0; border-top: 1px solid var(--color-border); }
.footer-content { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.footer-brand { display: flex; align-items: center; gap: 0.5rem; }
.copyright { color: #6b7280; font-size: 0.875rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
.footer-links { list-style: none; padding: 0; display: flex; gap: 1.5rem; }
.footer-links a { color: #6b7280; text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--color-orange); text-decoration: underline; }
.footer-socials { display: flex; gap: 1.5rem; }
.social-link { color: #6b7280; text-decoration: none; transition: color 0.2s; }
.social-link:hover { color: var(--color-orange); }

@media (min-width: 768px) {
    .footer-content { flex-direction: row; justify-content: space-between; }
    .copyright { flex-direction: row; }
}


/* --------------------------
   9. Animations
--------------------------- */
.reveal-on-scroll { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
.reveal-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.reveal-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.reveal-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.reveal-on-scroll:nth-child(4) { transition-delay: 0.4s; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slow-zoom { 0% { transform: scale(1); } 100% { transform: scale(1.15); } }
.animate-fade-in-up { animation: fadeInUp 0.8s ease-out forwards; opacity: 0; }
.animate-hero { animation: slow-zoom 20s ease-in-out infinite alternate; }
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* --------------------------
   10. LEGAL PAGES
--------------------------- */
.legal-section { padding: 140px 0 80px; background-color: #ffffff; }
.legal-content { max-width: 800px; margin: 0 auto; padding: 0 1rem; }
.legal-content h1 { font-size: 2.5rem; margin-bottom: 10px; color: var(--color-orange); }
.legal-content .last-updated { display: block; margin-bottom: 40px; color: #888; font-size: 0.9rem; border-bottom: 1px solid #eee; padding-bottom: 20px; }
.legal-content h2 { font-size: 1.5rem; margin-top: 40px; margin-bottom: 15px; text-align: left; color: var(--color-dark); }
.legal-content p, .legal-content li { font-size: 1rem; line-height: 1.8; color: #555; margin-bottom: 15px; }
.legal-content ul { margin-left: 20px; margin-bottom: 20px; }
.legal-back-btn { display: inline-block; margin-bottom: 30px; color: var(--color-orange); text-decoration: none; font-weight: 600; }
.legal-back-btn:hover { color: var(--color-dark); text-decoration: underline; }

/*--------------------------
11. FUTURISTIC CHAT FLOAT
--------------------------- */
/* Floating Action Button */
.whatsapp-float {
    position: fixed;
    /* Responsive size: slightly smaller on mobile, larger on desktop */
    width: 50px; 
    height: 50px;
    
    /* Safe Area positioning for mobile (handles iPhone notches/home bars) */
    bottom: 20px;
    bottom: calc(20px + env(safe-area-inset-bottom));
    right: 20px;
    right: calc(20px + env(safe-area-inset-right));

    /* Gradient from Zinc 800 to Zinc 950 */
    background: linear-gradient(135deg, var(--color-gray) 0%, var(--color-dark) 100%); 
    color: var(--color-orange); 
    border-radius: 50%;
    
    /* Maximum Z-index to ensure it sits on top of everything on mobile */
    z-index: 9999; 
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Orange 500 shadow at 20% opacity */
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.2); 
    border: 1px solid var(--color-border);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse-orange 2s infinite;
}

/* Desktop Sizing overrides */
@media (min-width: 768px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 30px;
        right: 30px;
    }
}

.bot-icon {
    /* Responsive icon sizing */
    width: 24px;
    height: 24px;
    
    /* FIX: Force display to prevent collapsing or hiding */
    display: block !important; 
    object-fit: contain;
    opacity: 1 !important;
    visibility: visible !important;
}

@media (min-width: 768px) {
    .bot-icon {
        width: 32px;
        height: 32px;
    }
}

/* Status Dot Styling */
.chat-status-ping {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 10px;
    height: 10px;
    background-color: var(--color-orange);
    border-radius: 50%;
    /* Border matches the button background to create a "cutout" look */
    border: 2px solid var(--color-dark); 
    z-index: 10000; /* Ensures dot stays on top of icon */
}

/* Hover Effects */
.whatsapp-float:hover {
    background: var(--color-dark);
    transform: scale(1.1) rotate(5deg);
    /* Stronger Orange Glow on hover */
    box-shadow: 0 0 25px rgba(249, 115, 22, 0.5); 
    color: var(--color-white);
    border-color: var(--color-orange);
    animation: none;
}

/* Orange Pulse Animation */
@keyframes pulse-orange {
    0% { 
        transform: scale(1); 
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4); 
    }
    70% { 
        transform: scale(1.05); 
        box-shadow: 0 0 0 15px rgba(249, 115, 22, 0); 
    }
    100% { 
        transform: scale(1); 
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); 
    }
}
/* VibeVetted Portfolio CTA Button */
.vibe-btn {
    display: inline-block;
    text-decoration: none;
    padding: 12px 30px;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    background: transparent;
    border: 2px solid var(--color-orange); /* Neon Cyan Border */
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.2); 
    cursor: pointer;
}

/* Hover Effect: Fill with cyan and glow */
.vibe-btn:hover {
    background: var(--color-orange);
    color: #111; /* Dark text for contrast */
    box-shadow: 0 0 25px rgba(249, 115, 22, 0.5);
    transform: translateY(-2px); /* Slight lift */
}

/* Active/Click Effect */
.vibe-btn:active {
    transform: translateY(0);
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.5);
}