/* ==========================================================================
   GLOBAL STYLES & RESET
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark, #0a0c10);
    color: var(--text-main, #f3f4f6);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* 1. Load the custom font file */
@font-face {
    font-family: 'Ayuriga Proto';
    src: url('AyurigaProto.ttf') format('truetype');
    font-weight: bold;
}

/* 2. Remove underline and align logo text */
.navbar .logo {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 2rem;
}

/* 3. UPSCALE: Custom font (Ayuriga Proto), Bold, and White */
.navbar .logo .logo-primary {
    font-family: 'Ayuriga Proto', sans-serif;
    font-weight: 800;
    color: #ffffff;
}

/* 4. AGENCY: Standard font (Inter), Regular weight, and Blue */
.navbar .logo .logo-secondary {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #3b82f6;
}

/* Floating Ambient Background Circles */
.bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.25;
}

.circle1 {
    width: 400px;
    height: 400px;
    background: #3b82f6;
    top: -50px;
    left: -100px;
}

.circle2 {
    width: 500px;
    height: 500px;
    background: #1e3a8a;
    top: 400px;
    right: -150px;
}

.circle3 {
    width: 350px;
    height: 350px;
    background: #a855f7;
    bottom: 200px;
    left: 20%;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 12, 16, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #ffffff;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn.primary {
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.btn.primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn.secondary {
    background: rgba(15, 23, 42, 0.6);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-left h1 {
    font-size: 3.25rem;
    line-height: 1.15;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.hero-left p {
    color: #94a3b8;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.dashboard-card {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.dashboard-card.large {
    grid-column: span 2;
}

.graph-placeholder {
    height: 120px;
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0) 100%);
    border-bottom: 2px solid #3b82f6;
    margin-top: 1rem;
    border-radius: 6px;
}

.dashboard-card h4 {
    color: #94a3b8;
    font-size: 0.875rem;
}

.dashboard-card h2 {
    font-size: 2rem;
    color: #10b981;
    margin-top: 0.5rem;
}

/* ==========================================================================
   CONSULTATION FORM (GROWTH AUDIT BOX)
   ========================================================================== */

.consultation {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

#consultation .glass-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 58, 138, 0.85));
    border: 1px solid rgba(59, 130, 246, 0.5);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5), 
                0 0 25px rgba(59, 130, 246, 0.25);
    backdrop-filter: blur(12px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#consultation .glass-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.6), 
                0 0 35px rgba(59, 130, 246, 0.4);
}

#consultation .glass-card h2 {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

#consultation .glass-card p {
    color: #94a3b8;
    margin-bottom: 28px;
    font-size: 1.05rem;
}

#audit-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

#audit-form input,
#audit-form textarea {
    width: 100%;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 14px 18px;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#audit-form input:focus,
#audit-form textarea:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.4);
}

#audit-form button[type="submit"] {
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 16px 28px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

#audit-form button[type="submit"]:hover {
    background: linear-gradient(90deg, #1d4ed8, #2563eb);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
    transform: translateY(-2px);
}

/* ==========================================================================
   SERVICES & WHY CHOOSE US
   ========================================================================== */

.services, .why-us, .faq, .contact {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.section-title {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

.section-title span {
    color: #3b82f6;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.section-title h2 {
    font-size: 2.25rem;
    color: #ffffff;
    margin-top: 0.5rem;
}

.service-grid, .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card, .feature-card {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-card:hover, .feature-card:hover {
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-5px);
}

.service-card i, .feature-card i {
    width: 48px;
    height: 48px;
    color: #3b82f6;
    margin-bottom: 1.5rem;
}

.service-card h3, .feature-card h3 {
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.service-card p, .feature-card p {
    color: #94a3b8;
}

/* ==========================================================================
   FAQ & CONTACT
   ========================================================================== */

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem;
    text-align: left;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
}

.faq-answer {
    padding: 0 1.25rem 1.25rem 1.25rem;
    color: #94a3b8;
}

/* CONTACT SECTION (GLOWING CARDS) */
.contact-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 600px;
}

.contact .info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 58, 138, 0.85));
    border: 1px solid rgba(59, 130, 246, 0.5);
    border-radius: 16px;
    padding: 24px 30px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5), 
                0 0 20px rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(12px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact .info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.9);
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.6), 
                0 0 30px rgba(59, 130, 246, 0.45);
}

.contact .icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 12px;
    color: #3b82f6;
    flex-shrink: 0;
}

.contact .icon-box svg {
    width: 26px;
    height: 26px;
    stroke-width: 2px;
}

.contact .card-details h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact .card-details p a {
    color: #3b82f6;
    font-size: 1rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact .card-details p a:hover {
    color: #60a5fa;
    text-decoration: underline;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 2rem 2rem 2rem;
    text-align: center;
    background: rgba(10, 12, 16, 0.95);
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
}

footer p {
    color: #94a3b8;
    max-width: 500px;
    margin: 0 auto 2rem auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a, .social-icons a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover, .social-icons a:hover {
    color: #3b82f6;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.copyright {
    font-size: 0.875rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero, .contact-wrapper, .grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }
}

/* Allow long email/text to break neatly on small mobile screens */
.contact .card-details p a {
    color: #3b82f6;
    font-size: 1rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;

    /* ADD THESE THREE LINES: */
    word-break: break-word;       /* Breaks long emails if they hit the edge */
    overflow-wrap: anywhere;     /* Ensures it wraps inside the card */
    display: inline-block;        /* Keeps the text structure clean */
}