/* --- Global Styles & Variables --- */
:root {
    /* New Purple & Green Color Scheme */
    --charcoal-grey: #1a1a1a;        /* Dark background for the body */
    --brand-purple: #5D2A7A;         /* Main purple from logo */
    --brand-green: #69FBD2;          /* Accent green from logo */
    --crisp-white: #ffffff;
    --light-grey-bg: #242424;       /* Darker background for cards/sections */
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Merriweather', serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    background-color: var(--charcoal-grey);
    color: var(--crisp-white);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    cursor: none;
}

main {
    flex-grow: 1;
}

h1, h2, h3 {
    font-family: var(--heading-font);
    font-weight: 700;
}

h2 {
    color: var(--brand-green);
    text-shadow: none;
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

section {
    padding: 100px 5%;
    overflow: hidden;
}

.text-center {
    text-align: center;
}

/* --- Custom Cursor --- */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--brand-green);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 1100;
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    background-color: rgba(105, 251, 210, 0.2);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 1099;
    transition: transform 0.1s linear, opacity 0.3s ease;
}

.cursor.grow {
    width: 50px;
    height: 50px;
    border: 2px solid var(--brand-purple);
    background-color: rgba(93, 42, 122, 0.3);
}

.cursor-follower.hide {
    opacity: 0;
}

/* --- Header & Navigation --- */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    padding: 10px 5%;
}

#main-header.scrolled {
    background-color: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    padding: 5px 5%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    border-bottom: 2px solid var(--brand-green);
}

body:not([id]) #main-header {
    background-color: transparent;
    backdrop-filter: none;
    border-bottom-color: transparent;
}
body:not([id]) #main-header.scrolled {
     background-color: rgba(26, 26, 26, 0.8);
     backdrop-filter: blur(10px);
     border-bottom-color: var(--brand-green);
}
body[id] #main-header {
    background-color: var(--charcoal-grey);
    border-bottom: 2px solid var(--brand-green);
}


nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 70px; 
    width: auto;
    transition: height 0.4s ease;
}
#main-header.scrolled .logo img {
    height: 60px; 
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--crisp-white);
    font-family: var(--heading-font);
    font-weight: 400;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand-purple);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
    z-index: 1001;
}

.hamburger-icon {
    stroke: var(--crisp-white);
}

.hamburger.toggle .hamburger-icon {
    stroke: var(--brand-green); 
}


/* --- General Hero Styles --- */
.hero-content {
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
    text-align: center;
    color: var(--crisp-white);
}

.headline {
    font-size: clamp(2.2rem, 5vw, 4rem); 
    line-height: 1.2;
    letter-spacing: 1px;
}

.headline-center {
    display: block;
    text-align: center;
}

.headline span span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: opacity 0.5s, transform 0.5s;
}
.headline.loaded span span {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.sub-headline {
    font-size: 1.5rem;
    margin-top: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: var(--brand-green);
    color: var(--charcoal-grey);
    padding: 15px 30px;
    text-decoration: none;
    font-family: var(--heading-font);
    font-weight: 700;
    margin-top: 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--brand-green);
    box-shadow: 0 0 15px rgba(105, 251, 210, 0.5);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--brand-green);
    box-shadow: 0 0 25px rgba(105, 251, 210, 0.8);
    transform: translateY(-3px);
}

/* --- Global: Scroll Reveal Animation --- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s, transform 0.8s;
}
.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/*
=================================
PAGE-SPECIFIC STYLES
=================================
*/

/* --- Home Page --- */
#hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0;
}
#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}
#hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}
#credibility-bar { background-color: transparent; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); }
#credibility-bar h2 { margin-bottom: 40px; text-transform: uppercase; letter-spacing: 2px; font-size: 1rem; color: #999; }
.logos-scroll-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
.logos-scroll-container::before,
.logos-scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
}
.logos-scroll-container::before {
    left: 0;
    background: linear-gradient(to right, var(--charcoal-grey), transparent);
}
.logos-scroll-container::after {
    right: 0;
    background: linear-gradient(to left, var(--charcoal-grey), transparent);
}
.logos { 
    display: flex;
    align-items: center;
    gap: 80px;
    width: calc(230px * 20);
    animation: scroll 40s linear infinite;
}
.logos-scroll-container:hover .logos {
    animation-play-state: paused;
}
@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.logos img { 
    max-height: 50px; 
    width: 150px;
    object-fit: contain;
    opacity: 0.8;
}
#introduction { display: flex; align-items: center; gap: 5%; }
.intro-content { 
    flex: 1; 
    text-align: center;
    padding: 40px;
    border-radius: 10px;
}
.intro-logo {
    display: block;
    height: 200px;
    width: 200px;
    margin: 0 auto 30px auto;
}
#services-overview { background-color: transparent; text-align: center; }
#services-overview h2 { font-size: 3rem; margin-bottom: 60px; }
.services-grid { display: grid; gap: 40px; text-align: left; margin-bottom: 60px; }
.services-grid.four-column-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.service-card { 
    background: var(--light-grey-bg); 
    padding: 30px; 
    border-radius: 10px; 
    border: 1px solid rgba(255,255,255,0.1); 
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; 
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.2); border-color: var(--brand-purple); }
.service-card h3 { margin: 20px 0 10px; font-size: 1.5rem; color: var(--crisp-white); }
.service-icon {
    margin-bottom: 0;
    flex-shrink: 0;
}
.service-icon img {
    height: 80px; 
    width: 80px; 
    object-fit: contain;
}
.learn-more { color: var(--brand-green); text-decoration: none; font-family: var(--heading-font); font-weight: 700; position: relative; display: inline-block; margin-top: 20px; }
.learn-more::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background-color: var(--brand-green); transition: width 0.3s ease; }
.learn-more:hover::after { width: 100%; }
.cta-button.secondary { background: transparent; border: 2px solid var(--brand-green); color: var(--crisp-white); }
#testimonial { background: transparent; color: var(--crisp-white); text-align: center; }
blockquote { max-width: 800px; margin: 0 auto; }
blockquote p { font-size: 1.8rem; font-style: italic; }
blockquote cite { display: block; margin-top: 30px; font-style: normal; font-family: var(--heading-font); }
#final-cta { background-color: var(--light-grey-bg); text-align: center; border-radius: 10px; }
#final-cta h2 { font-size: 3rem; margin-bottom: 20px; color: var(--crisp-white);}

/* --- Story Page --- */
.scrollytelling-container {
    display: flex;
    gap: 8%;
    padding: 100px 5%;
}
.timeline {
    flex: 0 0 4px;
    background-color: rgba(255,255,255,0.1);
    position: relative;
}
.timeline-dot {
    position: sticky;
    top: 50vh;
    width: 20px;
    height: 20px;
    background-color: var(--brand-green);
    border: 4px solid var(--charcoal-grey);
    border-radius: 50%;
    transform: translateX(-50%);
    left: 50%;
    box-shadow: 0 0 10px var(--brand-green);
}
.story-content {
    flex: 1;
}
.story-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    gap: 5%;
    padding: 80px 0;
    opacity: 0.4;
    transition: opacity 0.5s ease;
}
.story-section.active {
    opacity: 1;
}
.story-text, .story-image, .story-image-container {
    flex: 1;
    min-width: 0;
}
.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.story-section:nth-child(even) {
    flex-direction: row-reverse;
}
.story-image img, .story-image video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 0 40px rgba(93, 42, 122, 0.3);
}
.story-image-container {
    position: relative;
    aspect-ratio: 16 / 9;
}
.story-image-container img,
.story-image-container .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.story-image-container .video-overlay {
    opacity: 0.6;
    mix-blend-mode: screen;
}


/* --- Services Overview Page --- */
.service-block-detailed { display: flex; align-items: center; gap: 5%; padding: 80px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.service-block-detailed:last-child { border-bottom: none; }
.service-block-content, .service-block-image { flex: 1; }
.service-block-content h2 { font-size: 2.5rem; margin-bottom: 20px; }
.service-block-detailed:nth-child(even) { flex-direction: row-reverse; }

/* --- Generic Media Containers --- */
.intro-image, .service-block-image-container {
    position: relative;
    flex: 1;
    min-width: 0;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(93, 42, 122, 0.3);
}

.intro-image video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.service-block-image-container video,
.service-block-image-container img { /* Image Fix */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.service-video-overlay {
    mix-blend-mode: screen;
    opacity: 0.7;
}

/* --- Generic Service/Page Hero --- */
.page-hero, .service-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #111;
}
.page-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 1; 
}
.page-hero .hero-content, .service-hero .hero-content {
    background: transparent;
    padding: 0;
    backdrop-filter: none;
    z-index: 1;
}
.page-hero .hero-content .headline,
.page-hero .hero-content .sub-headline {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}


/* --- Dedicated Service Pages --- */
.who-we-help, .our-process, .deliverables, .page-cta, .service-offerings, .web-options-intro, .two-column-layout { max-width: 900px; margin: 0 auto 80px auto; text-align: center; }
.our-process h2, .deliverables h2, .service-offerings h2 { margin-bottom: 60px; }
.process-step { display: flex; text-align: left; gap: 40px; align-items: flex-start; margin-bottom: 40px; }
.step-number { font-size: 4rem; font-weight: 700; color: var(--brand-green); line-height: 1; opacity: 0.5; }
.step-content h3 { font-size: 1.8rem; margin-bottom: 10px; color: var(--crisp-white); }
.deliverables ul, .two-column-layout ul, .service-area-content ul { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 20px 40px; text-align: left; }
.two-column-layout ul { gap: 10px 20px; }
.deliverables li, .two-column-layout li, .service-area-content li { font-size: 1.1rem; font-family: var(--heading-font); }
.service-area-content ul { display: block; }
.service-area-content li { margin-bottom: 15px; }
.check-mark { color: var(--brand-green); font-weight: bold; margin-right: 15px; }
.page-cta { background-color: var(--light-grey-bg); padding: 60px; border-radius: 10px; margin-top: 60px; margin-bottom: 0; }
.page-cta h2 { color: var(--crisp-white); }
.offerings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; text-align: left;}
.offering-card { background: var(--light-grey-bg); padding: 30px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.1);}
.offering-card h3 { margin-bottom: 15px; color: var(--crisp-white);}
.two-column-layout { display: flex; gap: 5%; text-align: left; align-items: flex-start; }
.two-column-layout .column { flex: 1; }
.web-packages { gap: 3%; }
.package-card { border: 1px solid var(--brand-purple); border-radius: 10px; }
.package-title { background: var(--light-grey-bg); padding: 30px; border-bottom: 1px solid var(--brand-purple); }
.package-title h3 { margin-bottom: 5px; color: var(--crisp-white); }
.package-body { padding: 30px; }
.package-body ul { grid-template-columns: 1fr; }

/* --- Demo Sites Page --- */
#demo-sites { padding-top: 0; }

.demo-icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}
.demo-icon-item {
    text-decoration: none;
    color: var(--crisp-white);
    background-color: var(--light-grey-bg);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.demo-icon-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    border-color: var(--brand-purple);
}
.demo-icon-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--charcoal-grey);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--brand-green);
}
.demo-icon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.demo-icon-title {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--crisp-white);
}
.demo-icon-category {
    font-size: 1rem;
    color: var(--brand-green);
    font-family: var(--heading-font);
}

/* --- Insights Page --- */
#blog-grid-section { padding-bottom: 40px; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
.blog-post-card { background: var(--light-grey-bg); border-radius: 10px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); transition: transform 0.3s, box-shadow 0.3s; display: flex; flex-direction: column; }
.blog-post-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.2); border-color: var(--brand-purple); }
.blog-post-card a { text-decoration: none; color: var(--crisp-white); display: flex; flex-direction: column; height: 100%; }
.blog-post-image {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background-color: #111;
}
.blog-post-content { padding: 30px; display: flex; flex-direction: column; flex-grow: 1; }
.blog-post-category { font-family: var(--heading-font); color: var(--brand-green); font-size: 0.9rem; text-transform: uppercase; }
.blog-post-content h3 { font-size: 1.5rem; margin: 10px 0; }
.blog-post-content p { flex-grow: 1; }
.read-more { font-family: var(--heading-font); color: var(--brand-green); font-weight: 700; display: inline-block; margin-top: 20px; }
.archive-link-container { text-align: center; margin-top: 60px; }

/* --- Contact Page --- */
.contact-container {
    background: var(--light-grey-bg);
    padding: 60px;
    border-radius: 10px;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.contact-info h3 { font-size: 2rem; margin-bottom: 20px; color: var(--crisp-white); }
.contact-info ul { list-style: none; padding: 0; margin: 30px 0; }
.contact-info li { margin-bottom: 20px; }
.contact-info a { color: var(--brand-green); text-decoration: none; }
.form-group { position: relative; margin-bottom: 40px; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 2px solid #ccc;
    background: none;
    font-size: 1rem;
    font-family: var(--body-font);
    color: var(--crisp-white);
    outline: none;
    border-radius: 0;
}

.form-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
}

.form-group select option {
    background-color: var(--light-grey-bg);
}

.form-group label { position: absolute; top: 10px; left: 0; color: #999; transition: all 0.3s; pointer-events: none; }

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-bottom-color: var(--brand-green);
}

.form-group input:focus + label, .form-group input:valid + label,
.form-group textarea:focus + label, .form-group textarea:valid + label,
.form-group select:focus + label, .form-group select:valid + label {
    top: -15px;
    font-size: 0.8rem;
    color: var(--brand-green);
}

#form-success-message { text-align: center; border: 2px solid var(--brand-green); padding: 30px; border-radius: 10px; }

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .demo-icon-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Global Responsive */
    section {
        padding: 60px 5%; /* Mobile Spacing Fix */
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        background: var(--charcoal-grey);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: transform 0.5s ease-in-out;
        transform: translateX(100%);
        z-index: 1000;
    }
    .nav-links.active {
        transform: translateX(0);
    }
    .hamburger {
        display: block;
    }
    
    .sub-headline { font-size: 1.2rem; }
    .intro-content h2, #services-overview h2, #final-cta h2 { font-size: 2.2rem; }
    
    /* Page Specific Responsive */
    #introduction, .service-block-detailed, .service-block-detailed:nth-child(even), .two-column-layout, .contact-container { flex-direction: column; gap: 40px; }
    .service-card { flex-direction: column; text-align: center; } 
    .services-grid.four-column-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
    
    .scrollytelling-container {
        padding: 60px 5%;
    }
    .story-section {
        min-height: auto; /* Mobile Spacing Fix */
        padding: 40px 0;
    }
    .story-section, .story-section:nth-child(even) { 
        flex-direction: column; 
    }
    .story-content { 
        padding-left: 0; 
    }
    .timeline { 
        display: none; 
    }

    /* Hide custom cursor on mobile and restore default */
    .cursor, .cursor-follower {
        display: none;
    }
    body {
        cursor: auto;
    }

    .deliverables ul, .offerings-grid { grid-template-columns: 1fr; }
    .step-number { font-size: 2.5rem; }
    .step-content h3 { font-size: 1.5rem; }
}

@media (max-width: 576px) {
    .demo-icon-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-grid.two-column-grid, .services-grid.four-column-grid { grid-template-columns: 1fr; }
    .blog-container { padding: 20px; }
    .blog-container h3 { font-size: 1.8rem; }
}

/*
=================================
BLOG POST & ARCHIVE STYLES
=================================
*/

.blog-post-body, #archive-list-section {
    background-color: var(--light-grey-bg);
    padding: 80px 5%;
}

.blog-container, .archive-list {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--charcoal-grey);
    padding: 40px 60px;
    border-radius: 10px;
}

.blog-intro {
    font-size: 1.2rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 40px;
}

.blog-container h3 {
    font-size: 2.2rem;
    margin-top: 40px;
    margin-bottom: 25px;
    color: var(--crisp-white);
    text-align: center;
}

.blog-container p {
    margin-bottom: 25px;
}

.blog-section-image {
    display: block;
    width: 100%;
    max-width: 80%;
    height: auto;
    margin: 10px auto 30px auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 60px 0;
}

.archive-list {
    list-style: none;
    padding: 20px 40px;
}

.archive-list li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
}

.archive-list li:last-child {
    border-bottom: none;
}

.archive-list a {
    text-decoration: none;
    color: var(--crisp-white);
    display: block;
    transition: background-color 0.3s;
    padding: 15px;
    margin: -15px;
    border-radius: 5px;
}

.archive-list a:hover {
    background-color: var(--light-grey-bg);
}

.archive-list a:hover .archive-title {
    color: var(--brand-green);
}

.archive-date {
    font-family: var(--heading-font);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    display: block;
    margin-bottom: 10px;
}

.archive-title {
    font-size: 1.5rem;
    transition: color 0.3s;
}


/*
=================================
FOOTER STYLES
=================================
*/
#main-footer-section {
    background-color: #101010;
    padding: 60px 5% 40px;
    border-top: 2px solid var(--brand-green);
    text-align: center;
    margin-top: auto;
}

.footer-container .footer-logo img {
    height: 70px;
    margin-bottom: 30px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-container .footer-logo img:hover {
    opacity: 1;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px 30px;
}

.footer-nav a {
    text-decoration: none;
    color: rgba(255,255,255,0.7);
    font-family: var(--heading-font);
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--crisp-white);
}

.footer-social {
    margin-bottom: 30px;
}

.footer-social a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin: 0 15px;
    font-weight: 700;
    font-family: var(--heading-font);
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--brand-green);
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    margin-top: 30px;
}

/*
=================================
DROPDOWN BUTTON
=================================
*/
.button-dropdown-container {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

/* --- Custom Dropdown for Services Page --- */
.custom-dropdown {
    position: relative;
    display: inline-block;
    font-family: var(--heading-font);
}

.custom-dropdown-toggle {
    background-color: transparent;
    color: var(--crisp-white);
    padding: 12px 25px;
    font-size: 1rem;
    border: 2px solid var(--light-grey-bg);
    border-radius: 50px;
    width: 280px; 
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-dropdown-toggle:hover,
.custom-dropdown-toggle.active {
    border-color: var(--brand-green);
    background-color: rgba(105, 251, 210, 0.1);
}

.custom-dropdown-toggle::after {
    content: '▼';
    font-size: 0.8em;
    transform: translateY(1px);
    transition: transform 0.3s ease;
}

.custom-dropdown-toggle.active::after {
    transform: rotate(180deg) translateY(-1px);
}

.custom-dropdown-menu {
    display: none;
    position: absolute;
    background-color: var(--light-grey-bg);
    width: 100%;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    z-index: 100;
    list-style: none;
    padding: 10px 0;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    margin-top: 8px;
    max-height: 250px;
    overflow-y: auto;
}

/* Custom scrollbar for dropdown */
.custom-dropdown-menu::-webkit-scrollbar {
    width: 8px;
}
.custom-dropdown-menu::-webkit-scrollbar-track {
    background: var(--charcoal-grey);
}
.custom-dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--brand-purple);
    border-radius: 4px;
}
.custom-dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: var(--brand-green);
}

.custom-dropdown-menu.show {
    display: block;
}

.custom-dropdown-menu li {
    color: var(--crisp-white);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    transition: background-color 0.2s, color 0.2s;
}

.custom-dropdown-menu li:hover {
    background-color: var(--brand-purple);
    color: var(--crisp-white);
}


/* --- Additions for Strategic Marketing Page --- */
.cta-buttons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.page-cta .cta-buttons-container .cta-button {
    margin-top: 0;
}

.service-block-content .offerings-grid {
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 600px) {
    .service-block-content .offerings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Navigation Dropdown --- */
.nav-item-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    list-style: none;
    padding: 10px 0;
    border-radius: 8px;
    min-width: 220px;
    border: 1px solid var(--brand-green);
    z-index: 1001;
}

.nav-item-dropdown:hover .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu li {
    margin: 0;
}

.nav-dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--crisp-white);
    text-decoration: none;
    font-size: 0.9rem;
}

.nav-dropdown-menu li a:hover {
    background-color: var(--brand-purple);
}

.nav-dropdown-menu li a::after {
    display: none; /* Removes the underline animation from dropdown items */
}

/* --- Responsive Nav Dropdown --- */
@media (max-width: 768px) {
    .nav-item-dropdown {
        text-align: center;
        width: 100%;
    }

    .nav-dropdown-menu {
        display: block;
        position: static;
        background: transparent;
        backdrop-filter: none;
        border: none;
        padding: 0;
        margin-top: 10px;
        min-width: auto;
        text-align: center;
    }

    .nav-dropdown-menu li a {
        padding: 15px;
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.8);
    }
    
    .nav-item-dropdown:hover .nav-dropdown-menu {
        display: block; /* Ensures it's always visible in mobile nav */
    }
}

