:root {
    --bg-color: #050510;
    --text-color: #ffffff;
    --primary-color: #ff6b00;
    /* Orange from original site, but neon */
    --secondary-color: #8a2be2;
    /* Violet accent */
    --accent-color: #00e5ff;
    /* Cyan accent */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
    --transition-speed: 0.3s;
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--primary-color), var(--secondary-color));
    border-radius: 5px;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 800;
    line-height: 1.1;
}

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

a.logo {
    text-decoration: none;
    color: var(--text-color);
    display: inline-flex;
    align-items: center;
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(5, 5, 16, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

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

.nav-links li {
    position: relative;
    /* Essential for dropdown positioning */
}

/* Dropdown Menu */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #0a0a14 !important;
    /* Force solid dark background */
    min-width: 250px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);
    z-index: 9999;
    /* Ensure on top */
    padding: 0.5rem 0;
    margin-top: 0;
    flex-direction: column;
}

/* Invisible bridge to prevent menu from closing when moving mouse */
.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
    /* Bridge the gap area if needed, though margin-top:0 removes it */
}

.dropdown:hover .dropdown-content {
    display: flex;
    animation: fadeIn 0.2s ease-out;
}

.dropdown-content a {
    color: #ffffff;
    /* Bright white text */
    padding: 14px 24px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 1rem;
    white-space: nowrap;
    transition: all 0.2s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: transparent;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background: rgba(255, 107, 0, 0.15);
    /* Orange tint on hover */
    color: var(--primary-color);
    padding-left: 28px;
    /* Slight movement */
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

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

.nav-links a:not(.btn-primary):hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), #ff9100);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

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

.btn-secondary {
    border: 2px solid var(--glass-border);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    background: transparent;
}

.btn-secondary:hover {
    border-color: var(--text-color);
    background: rgba(255, 255, 255, 0.05);
}

/* Hero Section */
/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 5% 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}


.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    /* Center buttons */
}

.hero-visual {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    z-index: 1;
    z-index: 1;
    pointer-events: none;
}

/* Review Widget Fix */
iframe.lc_reviews_widget {
    min-height: 600px !important;
    height: 100% !important;
}

/* Mobile Calendar Fixes */
@media (max-width: 768px) {
    .calendar-container {
        padding: 0.5rem !important;
        min-height: 800px;
    }
}

.orb {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, var(--secondary-color), var(--bg-color));
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

/* Services Grid */
.services {
    padding: 5rem 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition-speed);
}

.card {
    /* ... existing styles ... */
    position: relative;
    /* For stretched link */
}

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

/* ... existing icon/h3/p styles ... */

.card a {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    transition: transform 0.2s;
}

/* Stretched Link */
.card a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    z-index: 1;
}

.card a:hover {
    transform: translateX(5px);
}

/* About Section */
.about {
    padding: 5rem 5%;
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
}

.link-styled {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--secondary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--secondary-color);
}

/* Footer Fixes */
footer {
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 5rem;
    background: #020202;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    width: 100%;
    opacity: 0.5;
}

.footer-content {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: left;
    /* Align left for split layout */
}

.footer-brand {
    text-align: left;
    flex: 1;
    min-width: 250px;
}

.footer-brand .brand {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.footer-links-grid {
    display: flex;
    gap: 4rem;
    text-align: left;
    /* Align left */
}

.footer-column h4 {
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column a {
    display: block;
    color: #a0a0a0;
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: 0.3s;
    font-size: 1rem;
}

.footer-column a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    /* Stack vertically for brand side */
    gap: 0.8rem;
    margin-top: 0;
}

.contact-info a {
    color: #fff;
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    color: #666;
    font-size: 0.9rem;
    text-align: center;
    /* Center copyright */
}

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

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

    100% {
        transform: translateY(0px) scale(1);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards ease-out;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* New Cool Animations */
@keyframes zoomIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.zoom-in {
    opacity: 0;
    animation: zoomIn 0.8s forwards ease-out;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.slide-in-left {
    opacity: 0;
    animation: slideInLeft 0.8s forwards ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.slide-in-right {
    opacity: 0;
    animation: slideInRight 0.8s forwards ease-out;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4);
    }

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

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

.pulse-glow {
    animation: pulseGlow 2s infinite;
}

/* Cursor Glow Effect */
.cursor-glow {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.15), transparent 70%);
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out;
    /* Smooth follow lagging slightly */
    mix-blend-mode: screen;
}

/* Contact / Calendar Section */
.contact {
    padding: 5rem 5%;
}

.calendar-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    /* Ensure iframe has space */
    min-height: 700px;
    overflow: hidden;
    background: var(--glass-bg);
}

iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Contact Info in Footer */
.contact-info {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo .highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff9e42 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.contact-info a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.contact-inf.logo .highlight {
    font-weight: 300;
    color: #fff;
    /* Keep part of it white for contrast if needed, or let gradient take over */
    /* Since parent has gradient text, this might need to be overridden or removed if we want full gradient */
    -webkit-text-fill-color: initial;
    /* Reset specific fill if we want different color */
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
}

.contact-info a:hover {
    color: var(--primary-color);
}

/* Reviews Section */
.reviews {
    padding: 5rem 5%;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 600px;
    /* Force container height */
}

/* Pulse Glow Animation */
@keyframes pulseGlow {
    0% {
        border-color: rgba(255, 255, 255, 0.1);
        box-shadow: 0 0 0 rgba(255, 140, 0, 0);
    }

    50% {
        border-color: var(--primary-color);
        box-shadow: 0 0 15px rgba(255, 140, 0, 0.3);
    }

    100% {
        border-color: rgba(255, 255, 255, 0.1);
        box-shadow: 0 0 0 rgba(255, 140, 0, 0);
    }
}

.card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-speed);
    position: relative;
    /* For stretched link */
    position: relative;
    /* For stretched link */
    animation: pulseGlow 4s infinite;
    /* Re-enabled per user request */
}

.review-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition-speed);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.client-initial {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.client-name {
    font-weight: 600;
    font-size: 1rem;
}

.source-icon {
    margin-left: auto;
    width: 24px;
    height: 24px;
    /* Simplistic Google G representation or generic check */
    background: #fff;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.source-icon::after {
    content: 'G';
    color: #4285F4;
    font-weight: bold;
    font-size: 14px;
    font-family: sans-serif;
}


/* Benefits Section (Who We Build For) */
.benefits {
    padding: 5rem 5%;
}

.benefit-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    padding: 2rem;
    border-radius: 20px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: left;
    border: 1px solid var(--glass-border);
    /* Ensure border exists for animation */
    border: 1px solid var(--glass-border);
    /* Ensure border exists for animation */
    animation: pulseGlow 5s infinite reverse;
    /* Re-enabled per user request */
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.benefit-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--text-color);
}

.benefit-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    /* Pushes content down if needed */
}

.benefit-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.benefit-features li::before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.integration-note {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-style: italic;
    background: rgba(0, 229, 255, 0.1);
    padding: 0.5rem;
    border-radius: 8px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .nav-links {
        display: none;
    }

    /* Simplified mobile nav for now */
    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 2rem;
    }

    .navbar {
        padding: 0.5rem 5% !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .logo {
        font-size: 0.9rem !important;
        /* Smaller to fit text */
        max-width: 80%;
        /* More space for text */
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .logo .highlight {
        display: inline-block;
        /* Ensure span respects parent */
    }

    /* Hamburger Menu */
    .hamburger {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        gap: 5px;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        background-color: rgba(10, 10, 20, 0.95);
        min-width: 200px;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
        z-index: 1;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        /* Ensure it fits on mobile */
    }

    /* Mobile specific dropdown adjustments */
    @media (max-width: 768px) {
        .dropdown:hover .dropdown-content {
            position: static;
            /* Stack vertically on mobile */
            background: rgba(255, 255, 255, 0.05);
            width: 100%;
            box-shadow: none;
            border: none;
            padding-left: 1rem;
        }

        /* Hide benefits section on mobile nav if it makes it too long, or just let it scroll */
        .nav-links li {
            margin: 1rem 0;
            /* Increase touch target spacing */
        }
    }

    .hamburger {
        cursor: pointer;
        z-index: 999999;
        width: 32px;
        /* Slightly smaller */
        height: 24px;
        /* Slightly smaller */
        padding: 4px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 5px;
        background: rgba(0, 0, 0, 0.6);
        /* Ensure contrast */
    }

    .hamburger span {
        width: 100%;
        height: 2px;
        background-color: #ffffff !important;
        transition: 0.3s;
    }

    /* Reduce side margins for Contact/Calendar on mobile */
    .contact {
        padding: 1rem 5% !important;
        /* Standard site padding to match reviews */
    }

    .calendar-container {
        padding: 0 !important;
        min-height: 800px;
        width: 100% !important;
        border-radius: 10px;
    }

    /* Force mobile review widget height and scrolling */
    iframe.lc_reviews_widget {
        min-height: 800px !important;
        height: 100% !important;
        /* explicit height, not auto */
        overflow-y: scroll !important;
    }



    /* Mobile Nav */
    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(5, 5, 16, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        /* Start from top to allow scrolling */
        padding-top: 4rem;
        /* Space for close button/header */
        transition: 0.5s;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
        /* Enable scrolling for long menus */
    }

    .nav-links.active {
        right: 0;
    }

    /* Hamburger Animation */
    .nav-links.active+.hamburger span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 6px);
    }

    .nav-links.active+.hamburger span:nth-child(2) {
        opacity: 0;
    }

    .nav-links.active+.hamburger span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -6px);
    }
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    /* Lighter glass */
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s;
    animation: pulseGlow 3s infinite;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.stat-card h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.stat-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}