/* --------------------------------------------------
   GLOBAL RESET & BASE
-------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* --------------------------------------------------
   NAVIGATION BASE
-------------------------------------------------- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
    z-index: 1000;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
}

/* --------------------------------------------------
   DESKTOP NAV LINKS
-------------------------------------------------- */
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

    .nav-links a {
        text-decoration: none;
        font-weight: 600;
        color: #fff;
        transition: color 0.3s ease;
    }

        .nav-links a:hover {
            color: #ffb703;
        }

/* --------------------------------------------------
   HAMBURGER BUTTON (GOLD + GLOW + SCALE)
-------------------------------------------------- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1100;
    transition: transform 0.25s ease;
}

    .hamburger:hover {
        transform: scale(1.12);
    }

    .hamburger span {
        width: 30px;
        height: 3px;
        background: #ffb703;
        border-radius: 3px;
        transition: all 0.35s ease;
        box-shadow: 0 0 6px rgba(255, 183, 3, 0.4);
    }

    .hamburger:hover span {
        box-shadow: 0 0 10px rgba(255, 183, 3, 0.8);
    }

    /* --------------------------------------------------
   HAMBURGER ? X ANIMATION
-------------------------------------------------- */
    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

/* --------------------------------------------------
   MOBILE MENU (SLIDE-IN)
-------------------------------------------------- */
@media (max-width: 768px) {

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: #111;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: right 0.4s ease;
        z-index: 1050;
    }

        .nav-links.show {
            right: 0;
        }

        .nav-links a {
            font-size: 1.3rem;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.5s forwards;
        }

        .nav-links li:nth-child(1) a {
            animation-delay: 0.1s;
        }

        .nav-links li:nth-child(2) a {
            animation-delay: 0.2s;
        }

        .nav-links li:nth-child(3) a {
            animation-delay: 0.3s;
        }

        .nav-links li:nth-child(4) a {
            animation-delay: 0.4s;
        }

        .nav-links li:nth-child(5) a {
            animation-delay: 0.5s;
        }

        .nav-links li:nth-child(6) a {
            animation-delay: 0.6s;
        }

        .nav-links li:nth-child(7) a {
            animation-delay: 0.7s;
        }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* --------------------------------------------------
   BACKDROP OVERLAY (BLUR + FADE)
-------------------------------------------------- */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(4px);
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 1020;
}

    .menu-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

/* Prevent horizontal scroll */
body, html {
    overflow-x: hidden;
}

/* --------------------------------------------------
   HEADER THEMES
-------------------------------------------------- */
.business-header {
    background: #0d1b2a;
    color: #fff;
    padding: 1rem 0;
}

.business-footer {
    background: #0d1b2a;
    color: #fff;
    text-align: center;
    padding: 2rem 1rem;
}

/* --------------------------------------------------
   SECTIONS
-------------------------------------------------- */
.section {
    padding: 4rem 2rem;
}

    .section h2 {
        text-align: center;
        margin-bottom: 2rem;
        font-size: 2rem;
        font-weight: 700;
    }

.alt-bg {
    background: #f9f9f9;
}

/* --------------------------------------------------
   CARDS (SERVICES, FEATURES, ETC.)
-------------------------------------------------- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: #fff;
    border: 1px solid #ddd;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

    .card:hover {
        transform: translateY(-5px);
    }

/* --------------------------------------------------
   TESTIMONIALS
-------------------------------------------------- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: #fff;
    border-left: 4px solid #1abc9c;
    padding: 1.5rem;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* --------------------------------------------------
   CONTACT FORM
-------------------------------------------------- */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: auto;
}

    .contact-form input,
    .contact-form textarea {
        padding: 0.75rem;
        border: 1px solid #ccc;
        border-radius: 6px;
        font-size: 1rem;
    }

    .contact-form button {
        align-self: flex-start;
    }

/* --------------------------------------------------
   BUTTONS
-------------------------------------------------- */
.btn-primary {
    background: #1abc9c;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

    .btn-primary:hover {
        background: #16a085;
    }

.section.container .btn-primary {
    margin-top: 2rem !important;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.btn-gold {
    background: #f1c40f;
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.3s ease;
}

    .btn-gold:hover {
        background: #d4ac0d;
    }

.btn-secondary {
    background: #444;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

    .btn-secondary:hover {
        background: #222;
    }

/* --------------------------------------------------
   TRUST SIGNALS
-------------------------------------------------- */
.trust-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.trust-item {
    text-align: center;
}

    .trust-item img {
        max-width: 100px;
        margin-bottom: 0.5rem;
    }

/* --------------------------------------------------
   FAQ
-------------------------------------------------- */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.faq-item p {
    line-height: 1.6;
    color: #444;
}

/* --------------------------------------------------
   Pricing
-------------------------------------------------- */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

    .pricing-card h3 {
        margin-bottom: 0.5rem;
    }

.price {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.pricing-card ul {
    margin-bottom: 1.5rem;
    padding-left: 1.2rem;
}

.pricing-divider {
    margin: 3rem 0;
    border: none;
    border-top: 1px solid #ddd;
}

.elb-link {
    font-size: 1.1rem;
    margin: 0.5rem 0 1rem;
}

/* --------------------------------------------------
   PORTFOLIO
-------------------------------------------------- */

.portfolio-filters {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 4rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.portfolio-item .btn-primary {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.portfolio-filter-btn {
    border: none;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
}

    .portfolio-filter-btn.active {
        background: #1abc9c;
        color: #fff;
    }

.portfolio-grid .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .portfolio-grid .card:hover {
        transform: translateY(-6px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

.portfolio-list {
    text-align: left;
    margin: 0.75rem auto 1rem;
    max-width: 90%;
    padding-left: 1.2rem;
    line-height: 1.5;
}

/* Subtle fade-in effect when filtering */
@keyframes portfolioFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.portfolio-fade-in {
    animation: portfolioFadeIn 0.3s ease-in-out;
}

/* -------------------------------------------------
    NO LINK STYLE
--------------------------------------------------*/
.no-link-style {
    color: inherit; /* Makes the link inherit the color of its parent element */
    text-decoration: none; /* Removes the underline */
    cursor: default; /* Changes the mouse cursor from a hand icon to the default arrow */
}

/* PROJECT PAGE LAYOUT */
.project-hero {
    text-align: center;
    padding: 4rem 1rem 2rem;
}

.project-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.project-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto;
}

.project-content section {
    margin-bottom: 3rem;
}

.project-content h2 {
    font-size: 1.6rem;
    margin-bottom: .75rem;
    color: #ffb703;
}

.project-content ul {
    padding-left: 1.2rem;
    line-height: 1.7;
}

.project-cta {
    text-align: center;
    padding: 3rem 1rem 5rem;
    margin-top: 4rem;
    border-top: 1px solid #333;
}

.cta-button {
    display: inline-block;
    margin-top: 1rem;
    padding: .75rem 1.5rem;
    background: #ffb703;
    color: #000;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: transform .2s ease;
}

    .cta-button:hover {
        transform: scale(1.05);
    }

/* RESPONSIVE */
@media (max-width: 768px) {
    .project-title {
        font-size: 2rem;
    }

    .project-subtitle {
        font-size: 1rem;
    }
}

/*--------------------------------------------------
    MAILCHIMP SUBSCRIBE SECTION
--------------------------------------------------*/

.subscribe-section {
    background: #f7f7f7;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
    border-radius: 8px;
}

    /* Style the email input */
    .subscribe-section input[type="email"],
    .subscribe-section #mce-EMAIL {
        padding: 0.6rem !important;
        width: 260px !important;
        max-width: 100% !important;
        margin-right: 0.5rem !important;
        border: 1px solid #ccc !important;
        border-radius: 4px !important;
        font-size: 1rem !important;
    }

    /* Style the subscribe button */
    .subscribe-section #mc-embedded-subscribe,
    .subscribe-section .btn-primary {
        background: #1abc9c !important;
        color: #fff !important;
        padding: 0.6rem 1.2rem !important;
        border-radius: 6px !important;
        font-weight: 600 !important;
        border: none !important;
        cursor: pointer !important;
        transition: background 0.3s ease !important;
    }

        /* Hover effect */
        .subscribe-section #mc-embedded-subscribe:hover,
        .subscribe-section .btn-primary:hover {
            background: #16a085 !important;
        }

    /* Normalize Mailchimp layout spacing */
    .subscribe-section .mc-field-group,
    .subscribe-section .clear.foot {
        display: inline-block;
        margin: 0.5rem 0;
    }

/* --------------------------------------------------
   FOOTER SUBSCRIBE
-------------------------------------------------- */
.footer-subscribe {
    text-align: center;
    margin-bottom: 2rem;
}

    .footer-subscribe h3 {
        color: #fff;
        margin-bottom: 0.5rem;
    }

    .footer-subscribe p {
        color: #ccc;
        margin-bottom: 1rem;
    }

.footer-subscribe-input {
    width: 260px;
    max-width: 90%;
    padding: 0.7rem;
    border: none;
    border-radius: 6px;
    margin-right: 0.5rem;
    font-size: 1rem;
}

.footer-subscribe-btn {
    padding: 0.7rem 1.2rem;
    font-weight: 600;
    border-radius: 6px;
}

.footer-copy {
    color: #aaa;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    .footer-subscribe-input {
        width: 100%;
        margin-bottom: 1rem;
        margin-right: 0;
    }
}

/* FINAL OVERRIDES FOR MAILCHIMP — GUARANTEED TO APPLY */
.subscribe-section input[type="email"],
.subscribe-section #mce-EMAIL,
#mc_embed_signup_scroll .mc-field-group input {
    padding: 0.75rem !important;
    width: 260px !important;
    max-width: 100% !important;
    border: 1px solid #ccc !important;
    border-radius: 6px !important;
    font-size: 1rem !important;
    margin-right: 0.5rem !important;
    background: #fff !important;
    color: #333 !important;
}

/* Override Mailchimp's button */
.subscribe-section #mc-embedded-subscribe,
#mc_embed_signup_scroll input[type="submit"] {
    background: #1abc9c !important;
    color: #fff !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 6px !important;
    border: none !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background 0.3s ease !important;
}

    .subscribe-section #mc-embedded-subscribe:hover,
    #mc_embed_signup_scroll input[type="submit"]:hover {
        background: #16a085 !important;
    }

/* Fix spacing */
.subscribe-section .mc-field-group,
.subscribe-section .clear.foot {
    display: inline-block !important;
    margin: 0.5rem 0 !important;
}

/* Conversion Zone */
.conversion-zone {
    text-align: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.conversion-text {
    max-width: 700px;
    margin: 1.5rem auto 2.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.conversion-btn {
    padding: 0.9rem 2rem;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    display: inline-block;
}

.trust-badges {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    background: #0d1b2a;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/*---------------------------------
    Cookie Consent Banner
----------------------------------*/
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #1c5280;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    display: none;
    max-width: 500px;
    width: 90%;
    font-size: 0.95rem;
    z-index: 9999;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.cookie-btn {
    background: #ffcc00;
    border: none;
    padding: 8px 14px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

    .cookie-btn:hover {
        background: #e6b800;
    }

