/* Edit Ads Pro - Production CSS */
/* Brand Colors:
   Primary Blue: #236CD8
   Accent Cyan: #21B5DE
   Background: #0B1220
   Text/Base: #FFFFFF
   Muted/Lines: #0E223D
*/

/* Font Faces - DM Sans */
@font-face {
    font-family: 'DM Sans';
    src: url('/assets/fonts/dm-sans-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('/assets/fonts/dm-sans-medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('/assets/fonts/dm-sans-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* CSS Reset and Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: "Century Gothic", "Segoe UI", "Helvetica Neue", Arial, system-ui, sans-serif;
    background-color: #0B1220;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.08) 1px, transparent 0);
    background-size: 20px 20px;
    color: #FFFFFF;
    line-height: 1.6;
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'DM Sans', "Century Gothic", "Segoe UI", sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #21B5DE;
    text-decoration: none;
    transition: color 0.15s ease;
}

a:hover {
    color: #236CD8;
}

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* Skip to Content */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #236CD8;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    transition: top 0.3s;
}

.skip-to-content:focus {
    top: 6px;
}

/* Header and Navigation */
.header {
    position: sticky;
    top: 0;
    background: rgba(11, 18, 32, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #0E223D;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.logo {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    width: 25px;
    height: 2px;
    background: #FFFFFF;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-links a {
    color: #FFFFFF;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.15s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
    color: #21B5DE;
}

.nav-links a[aria-current="page"]::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #21B5DE;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0B1220;
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-top: 1px solid #0E223D;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .nav-toggle.active .hamburger:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .nav-toggle.active .hamburger:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #236CD8 0%, #21B5DE 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(35, 108, 216, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1e5cb8 0%, #1c9abe 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(35, 108, 216, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #0E223D;
}

.btn-secondary:hover {
    background: #0E223D;
    border-color: #21B5DE;
    color: #21B5DE;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    margin-top: 1rem;
}

.btn-watch-reel {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-watch-reel:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(35, 108, 216, 0.6);
    animation: glow 1.5s ease-in-out infinite alternate;
}

.btn:focus {
    outline: 2px solid #21B5DE;
    outline-offset: 2px;
}

.btn:active {
    transform: translateY(1px);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

@keyframes glow {
    from {
        box-shadow: 0 8px 25px rgba(35, 108, 216, 0.6);
    }
    to {
        box-shadow: 0 12px 35px rgba(35, 108, 216, 0.8);
    }
}

@keyframes glow {
    from {
        box-shadow: 0 8px 25px rgba(35, 108, 216, 0.6);
    }
    to {
        box-shadow: 0 12px 35px rgba(35, 108, 216, 0.8), 0 0 30px rgba(33, 181, 222, 0.4);
    }
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: none;
}

.btn-floating {
    border-radius: 2rem;
    padding: 1rem 1.5rem;
    box-shadow: 0 8px 24px rgba(35, 108, 216, 0.4);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

@media (max-width: 768px) {
    .floating-cta {
        display: block;
    }
}

/* Hero Section */
.hero {
    padding: 4rem 0 6rem;
    background: linear-gradient(135deg, #0B1220 0%, #0E223D 50%, #0B1220 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(35, 108, 216, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(33, 181, 222, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.hero-title {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #21B5DE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: #FFFFFF;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-video {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Video Player */
.video-player {
    position: relative;
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    aspect-ratio: 16/9;
}

.video-player iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: none;
    border-radius: 1rem;
}

.video-element {
    width: 100%;
    height: auto;
    display: block;
}

.video-controls {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
}

.video-play-pause,
.video-mute {
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: #FFFFFF;
    padding: 0.5rem;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background 0.15s ease;
}

.video-play-pause:hover,
.video-mute:hover {
    background: rgba(0, 0, 0, 0.9);
}

/* Sections */
section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #FFFFFF;
    opacity: 0.8;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Logo Strip */
.logo-strip {
    background: #0E223D;
    padding: 2rem 0;
    border-top: 1px solid rgba(33, 181, 222, 0.1);
    border-bottom: 1px solid rgba(33, 181, 222, 0.1);
}

.logos-intro {
    text-align: center;
    color: #FFFFFF;
    opacity: 0.7;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
}

.logo-item {
    text-align: center;
}

.logo-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    color: #FFFFFF;
    opacity: 0.8;
    transition: opacity 0.15s ease;
}

.logo-item:hover .logo-text {
    opacity: 1;
    color: #21B5DE;
}

/* Service Cards */
.services-preview {
    background: linear-gradient(135deg, #0B1220 0%, #0E223D 100%);
}

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

.service-preview-card,
.service-card,
.service-package-card {
    background: rgba(14, 34, 61, 0.3);
    border: 1px solid #0E223D;
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.15s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.service-preview-card:hover,
.service-card:hover,
.service-package-card:hover {
    background: rgba(14, 34, 61, 0.5);
    border-color: #21B5DE;
    transform: translateY(-4px);
}

/* Service Package Card specific styles for What We Do section */
.service-package-card {
    background: rgba(14, 34, 61, 0.4);
    border: 1px solid rgba(33, 181, 222, 0.2);
}

.service-package-card:hover {
    background: rgba(14, 34, 61, 0.6);
    border-color: #21B5DE;
    box-shadow: 0 8px 24px rgba(33, 181, 222, 0.15);
}

.service-package-card.most-popular {
    border-color: #21B5DE;
    background: rgba(33, 181, 222, 0.1);
    transform: scale(1.02);
    position: relative;
}

.service-package-card.most-popular::before {
    content: "MOST POPULAR";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #236CD8 0%, #21B5DE 100%);
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(35, 108, 216, 0.3);
}

.service-package-card.client-favorite::before {
    content: "CLIENT FAVORITE";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.service-package-card.loved-by-clients::before {
    content: "LOVED BY CLIENTS";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(78, 205, 196, 0.3);
}

.service-header {
    margin-bottom: 1.5rem;
}

.service-title {
    color: #FFFFFF;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.service-icon {
    color: #21B5DE;
    margin-bottom: 1.5rem;
}

.service-package-card h3 {
    color: #FFFFFF;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

.service-package-card .service-icon {
    display: none;
}

.service-package-card .service-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin-bottom: 2rem;
}

.service-description {
    color: #FFFFFF;
    opacity: 0.8;
    margin-bottom: 2rem;
    line-height: 1.5;
    font-size: 1rem;
}

.learn-more {
    color: #21B5DE;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    text-decoration: none;
}

.learn-more:hover {
    color: #236CD8;
}

.service-features {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
    flex-grow: 1;
}

.service-features h4 {
    color: #FFFFFF;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-package-card .service-features li {
    position: relative;
    padding-left: 1.5rem;
    gap: 0;
}

.service-package-card .service-features li::before {
    content: "★";
    position: absolute;
    left: 0;
    color: #21B5DE;
    font-weight: bold;
    font-size: 1.1rem;
}

.service-features svg {
    color: #21B5DE;
    margin-top: 0.1rem;
}

.service-deliverables {
    margin-bottom: 2rem;
}

.service-deliverables h4 {
    color: #FFFFFF;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-deliverables ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-deliverables li {
    color: #FFFFFF;
    opacity: 0.85;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
    font-size: 0.9rem;
}

.service-deliverables li:before {
    content: "•";
    color: #21B5DE;
    position: absolute;
    left: 0;
}

.service-cta {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.service-pricing {
    color: #21B5DE;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-features svg {
    color: #21B5DE;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.service-cta {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid #0E223D;
    text-align: center;
}

.service-pricing {
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.service-cta .btn {
    width: 100%;
    font-weight: 600;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.services-cta .btn {
    font-size: 1.125rem;
    font-weight: 700;
    padding: 1rem 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Featured Reel */
.featured-reel {
    background: #0E223D;
}

.reel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 768px) {
    .reel-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.value-bullets {
    list-style: none;
    margin: 2rem 0;
}

.value-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.value-bullets svg {
    color: #21B5DE;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Testimonials */
.mini-testimonials {
    background: linear-gradient(135deg, #0E223D 0%, #0B1220 100%);
}

.testimonials-section {
    padding: 4rem 0;
}

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

.mini-testimonial,
.testimonial-card {
    background: rgba(14, 34, 61, 0.3);
    border: 1px solid #0E223D;
    border-radius: 1rem;
    padding: 0;
    transition: all 0.15s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.mini-testimonial:hover,
.testimonial-card:hover {
    background: rgba(14, 34, 61, 0.5);
    border-color: #21B5DE;
    transform: translateY(-2px);
}

.testimonial-media {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 1rem 1rem 0 0;
    position: relative;
}

.testimonial-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: #0B1220;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.testimonial-text {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.mini-testimonial blockquote,
.testimonial-card blockquote {
    font-style: italic;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    position: relative;
    flex-grow: 1;
}

.mini-testimonial blockquote::before,
.testimonial-card blockquote::before {
    content: '"';
    font-size: 3rem;
    color: #21B5DE;
    position: absolute;
    top: -1rem;
    left: -0.5rem;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.author-info {
    flex-grow: 1;
}

.author-name {
    color: #21B5DE;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.author-role {
    font-weight: 600;
    margin-bottom: 0.25rem;
    opacity: 0.9;
}

.author-company {
    opacity: 0.7;
    font-size: 0.875rem;
    margin: 0;
}

.testimonial-author strong {
    color: #21B5DE;
    display: block;
}

.testimonial-tag {
    background: rgba(33, 181, 222, 0.2);
    color: #21B5DE;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    flex-shrink: 0;
    margin-left: 1rem;
    align-self: flex-start;
}

.testimonials-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Testimonials Page */
.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.carousel-container {
    overflow: hidden;
    border-radius: 1rem;
}

.carousel-slide {
    display: none;
}

.carousel-slide.active {
    display: block;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.carousel-prev,
.carousel-next {
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: #FFFFFF;
    padding: 1rem;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    transition: background 0.15s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(0, 0, 0, 0.9);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.15s ease;
}

.carousel-dot.active {
    background: #21B5DE;
}

.testimonials-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.filter-btn {
    background: transparent;
    border: 2px solid #0E223D;
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.15s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #21B5DE;
    border-color: #21B5DE;
    color: #0B1220;
}

/* Project Cards */
.projects-grid {
    padding: 4rem 0;
}

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

.project-card {
    background: rgba(14, 34, 61, 0.3);
    border: 1px solid #0E223D;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.15s ease;
}

.project-card:hover {
    background: rgba(14, 34, 61, 0.5);
    border-color: #21B5DE;
    transform: translateY(-4px);
}

.project-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.15s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-content {
    padding: 2rem;
}

.project-title {
    color: #21B5DE;
    margin-bottom: 0.5rem;
}

.project-campaigns {
    font-style: italic;
    color: #FFFFFF;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.tag {
    background: rgba(33, 181, 222, 0.2);
    color: #21B5DE;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.project-results {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #0E223D;
}

.project-results h4 {
    color: #21B5DE;
    margin-bottom: 0.5rem;
}

.project-results ul {
    list-style: none;
}

.project-results li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.project-results li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #21B5DE;
}

/* Team Cards */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto 0;
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.team-member-card {
    background: #0E223D;
    border: 1px solid #1e3a5f;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.team-member-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(33, 181, 222, 0.1);
    border-color: #21B5DE;
}

.team-member-photo {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.team-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member-card:hover .team-member-photo img {
    transform: scale(1.02);
}

.team-member-details {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.member-name {
    color: #FFFFFF;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-title {
    color: #B0BEC5;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.member-specialties {
    margin-top: auto;
    padding-top: 1rem;
}

.specialties-text {
    color: #21B5DE;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    margin: 0;
    padding: 0.75rem 1rem;
    background: rgba(33, 181, 222, 0.1);
    border: 1px solid rgba(33, 181, 222, 0.3);
    border-radius: 6px;
    line-height: 1.3;
}

/* Team Values & Stats */
.team-values {
    background: #0E223D;
    padding: 4rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.value-item {
    text-align: center;
}

.value-number {
    font-family: 'DM Sans', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #21B5DE;
    margin-bottom: 1rem;
}

.team-stats {
    background: linear-gradient(135deg, #236CD8 0%, #21B5DE 100%);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-family: 'DM Sans', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-weight: 600;
    color: #FFFFFF;
    opacity: 0.9;
}

/* Team Preview Section */
.team-preview {
    background: #0E223D;
    padding: 4rem 0;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.team-intro h3 {
    color: #FFFFFF;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.team-intro p {
    color: #C2C8D0;
    font-size: 1.125rem;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.team-member {
    text-align: center;
    background: #0B1220;
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(33, 181, 222, 0.15);
}

.team-member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #21B5DE;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-info h4 {
    color: #FFFFFF;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-member-position {
    color: #21B5DE;
    font-size: 0.875rem;
    font-weight: 500;
}

.team-member-bio {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin: 1rem 0;
    line-height: 1.5;
}

.team-specialties {
    margin-top: 1.5rem;
}

.team-specialties h5 {
    color: #21B5DE;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-align: center;
}

.team-specialties ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-specialties li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

.team-specialties li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: #21B5DE;
    font-size: 0.8rem;
}

.team-cta {
    text-align: center;
}

.team-cta-top {
    text-align: center;
    margin: 2rem 0 3rem;
}

.btn-glow {
    transition: all 0.3s ease;
}

.btn-glow:hover {
    box-shadow: 0 0 20px rgba(33, 181, 222, 0.6),
                0 0 40px rgba(33, 181, 222, 0.4),
                0 0 60px rgba(33, 181, 222, 0.2);
    transform: translateY(-2px);
}

/* CTA Band */
.cta-band {
    background: linear-gradient(135deg, #236CD8 0%, #21B5DE 100%);
    padding: 4rem 0;
}

.cta-content {
    text-align: center;
}

.cta-text h2 {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.cta-text p {
    color: #FFFFFF;
    opacity: 0.9;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* FAQ Section */
.faq-section {
    background: #0E223D;
    padding: 4rem 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #0B1220;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 1.5rem 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.15s ease;
}

.faq-question:hover {
    color: #21B5DE;
}

.faq-icon {
    transition: transform 0.15s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: #FFFFFF;
    opacity: 0.8;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 1rem;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.modal-content {
    background: #0B1220;
    border: 1px solid #0E223D;
    border-radius: 1rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 1002;
}

.modal-large {
    max-width: 900px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #0E223D;
}

.modal-close {
    background: none;
    border: none;
    color: #FFFFFF;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: background 0.15s ease;
}

.modal-close:hover {
    background: #0E223D;
}

.modal-body {
    padding: 2rem;
}

.checklist {
    list-style: none;
    margin: 2rem 0;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.checklist svg {
    color: #21B5DE;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.schedule-embed iframe {
    border-radius: 0.5rem;
}

.schedule-fallback {
    text-align: center;
    padding: 2rem;
    background: rgba(14, 34, 61, 0.3);
    border-radius: 0.5rem;
    margin-top: 1rem;
}

/* Forms */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #FFFFFF;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #0E223D;
    border-radius: 0.5rem;
    background: #0B1220;
    color: #FFFFFF;
    font-family: inherit;
    transition: border-color 0.15s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #21B5DE;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Toast Notifications */
.toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: #0B1220;
    border: 1px solid #21B5DE;
    border-radius: 0.5rem;
    padding: 1rem;
    z-index: 1003;
    animation: slideIn 0.3s ease;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.toast-icon {
    color: #21B5DE;
    flex-shrink: 0;
}

.toast-message h4 {
    color: #21B5DE;
    margin-bottom: 0.25rem;
}

.toast-message p {
    color: #FFFFFF;
    opacity: 0.8;
    margin: 0;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Book Page Specific */
.book-hero {
    text-align: center;
    padding: 4rem 0 2rem;
}

.book-hero h1 {
    color: #21B5DE;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.book-hero .hero-subtitle {
    color: #FFFFFF;
    opacity: 0.9;
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.book-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .book-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.call-checklist {
    margin: 2rem 0;
}

.checklist-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.check-icon {
    background: #21B5DE;
    color: #0B1220;
    padding: 0.5rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.check-content h3 {
    color: #21B5DE;
    margin-bottom: 0.5rem;
}

.book-social-proof {
    background: rgba(14, 34, 61, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 2rem;
}

.proof-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0;
}

.proof-logo {
    background: rgba(33, 181, 222, 0.2);
    color: #21B5DE;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.schedule-container {
    background: rgba(14, 34, 61, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid #0E223D;
}

.behind-scenes-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0E223D 0%, #0B1220 100%);
    text-align: center;
}

.behind-scenes-cta h2 {
    color: #21B5DE;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.behind-scenes-cta p {
    color: #FFFFFF;
    opacity: 0.9;
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Error Page */
.error-page {
    padding: 6rem 0;
    text-align: center;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-number {
    font-size: 8rem;
    font-weight: 700;
    color: #21B5DE;
    margin-bottom: 1rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.error-links {
    margin-top: 3rem;
    text-align: left;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.error-links ul {
    list-style: none;
}

.error-links li {
    margin-bottom: 0.5rem;
}

/* Behind The Scenes Section */
.behind-scenes {
    padding: 5rem 0;
    background: #0E223D;
}

.behind-scenes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.behind-scenes-card {
    background: linear-gradient(135deg, rgba(33, 181, 222, 0.05) 0%, rgba(21, 131, 167, 0.05) 100%);
    border: 1px solid rgba(33, 181, 222, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.behind-scenes-card:hover {
    transform: translateY(-8px);
    border-color: rgba(33, 181, 222, 0.3);
    box-shadow: 0 20px 40px rgba(33, 181, 222, 0.1);
}

.behind-scenes-media {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.behind-scenes-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.behind-scenes-card:hover .behind-scenes-media img {
    transform: scale(1.05);
}

.behind-scenes-text {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.behind-scenes-text h3 {
    color: #21B5DE;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.campaigns-edited {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.campaign-label {
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.campaign-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.campaign-list li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    padding-left: 1.25rem;
    position: relative;
}

.campaign-list li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: #21B5DE;
    font-weight: bold;
}

.video-compilation {
    margin-top: auto;
}

.video-container {
    background: rgba(33, 181, 222, 0.1);
    border-radius: 0.5rem;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #21B5DE;
    text-align: center;
}

.video-placeholder svg {
    margin-bottom: 1rem;
    opacity: 0.7;
}

.video-placeholder p {
    margin: 0;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .behind-scenes-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .behind-scenes-media {
        height: 180px;
    }

    .behind-scenes-text {
        padding: 1.5rem;
    }
}

/* Footer */
.footer {
    background: #0E223D;
    border-top: 1px solid rgba(33, 181, 222, 0.1);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .footer-content {
        gap: 2rem;
    }
}

.footer-logo {
    font-family: 'DM Sans', sans-serif;
    color: #21B5DE;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: #FFFFFF;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-column {
    text-align: center;
}

.footer-column h4 {
    color: #21B5DE;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #FFFFFF;
    opacity: 0.8;
    transition: all 0.15s ease;
}

.footer-column a:hover {
    opacity: 1;
    color: #21B5DE;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.social-links a {
    color: #FFFFFF;
    opacity: 0.8;
    transition: all 0.15s ease;
}

.social-links a:hover {
    opacity: 1;
    color: #21B5DE;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #0B1220;
    color: #FFFFFF;
    opacity: 0.6;
}

/* Arrow styles removed */

/* Animations and Utilities */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .services-grid,
    .testimonials-grid,
    .projects-container,
    .team-container {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .header,
    .floating-cta,
    .modal,
    .toast {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .container {
        max-width: none !important;
    }
}

/* Watch Reel Modal */
.reel-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #0E223D;
    padding-bottom: 1rem;
    flex-wrap: wrap;
}

.reel-tab {
    background: transparent;
    border: none;
    color: #FFFFFF;
    opacity: 0.7;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.15s ease;
    font-weight: 500;
}

.reel-tab:hover,
.reel-tab.active {
    background: rgba(33, 181, 222, 0.2);
    color: #21B5DE;
    opacity: 1;
}

.reel-content {
    position: relative;
}

.reel-video {
    display: none;
}

.reel-video.active {
    display: block;
}

.reel-video h4 {
    color: #21B5DE;
    margin: 1.5rem 0 0.5rem;
}

.reel-video p {
    color: #FFFFFF;
    opacity: 0.8;
    margin: 0;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-blue: #4A90E2;
        --accent-cyan: #50C8F0;
        --background: #000000;
        --text-base: #FFFFFF;
        --muted-lines: #666666;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .btn-floating {
        animation: none;
    }
}

/* Focus Visible Support */
.btn:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid #21B5DE;
    outline-offset: 2px;
}

/* Toast Notifications */
.notification-container {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1003;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Pricing Form Styles */
.pricing-hero {
    background: linear-gradient(135deg, #0B1220 0%, #0E223D 100%);
    padding: 6rem 0 4rem;
    text-align: center;
}

.pricing-hero-content .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.pricing-hero-content .hero-subtitle {
    font-size: 1.25rem;
    color: #B0BEC5;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #21B5DE;
    font-weight: 500;
}

.benefit-item svg {
    color: #21B5DE;
}

.pricing-form-section {
    padding: 4rem 0;
    background: #FFFFFF;
}

.pricing-form-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-form {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #0B1220;
    margin-bottom: 0.5rem;
}

.form-note {
    font-weight: 400;
    font-size: 0.9rem;
    color: #666;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #E1E5E9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #236CD8;
    box-shadow: 0 0 0 3px rgba(35, 108, 216, 0.1);
}

.form-group input[aria-invalid="true"],
.form-group select[aria-invalid="true"],
.form-group textarea[aria-invalid="true"] {
    border-color: #DC3545;
}

.checkbox-group,
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-label,
.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 400 !important;
}

.checkbox-label input[type="checkbox"],
.radio-label input[type="radio"] {
    width: auto;
    margin: 0;
}

.form-error {
    color: #DC3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.form-disclaimer {
    font-size: 0.875rem;
    color: #666;
    text-align: center;
    margin-top: 1rem;
}

.trust-column {
    background: #F8F9FA;
    padding: 2rem;
    border-radius: 12px;
}

.trust-content h3 {
    color: #0B1220;
    margin-bottom: 1.5rem;
    text-align: center;
}

.trust-logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.trust-logo {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.trust-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.reel-preview h4 {
    color: #0B1220;
    margin-bottom: 1rem;
    text-align: center;
}

.video-thumbnail iframe {
    border-radius: 8px;
}

/* Thank You Page Styles */
.thank-you-hero {
    background: linear-gradient(135deg, #0B1220 0%, #0E223D 100%);
    padding: 6rem 0 4rem;
    text-align: center;
}

.success-icon {
    margin-bottom: 2rem;
}

.success-icon svg {
    color: #21B5DE;
}

.thank-you-content .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.thank-you-content .hero-subtitle {
    font-size: 1.25rem;
    color: #B0BEC5;
    margin-bottom: 2rem;
}

.confirmation-details {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.services-list {
    text-align: left;
    margin: 1rem 0;
    color: #21B5DE;
}

.thank-you-trust {
    padding: 4rem 0;
    background: #FFFFFF;
    text-align: center;
}

.trust-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 2rem auto 0;
}

.trust-logos-grid .trust-logo {
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    filter: grayscale(100%);
    opacity: 0.6;
}

.next-steps {
    padding: 4rem 0;
    background: #F8F9FA;
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #0B1220;
}

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

.next-step-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.next-step-card h3 {
    color: #0B1220;
    margin-bottom: 1rem;
}

.next-step-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.calendly-section {
    padding: 4rem 0;
    background: #FFFFFF;
}

.calendly-details {
    max-width: 800px;
    margin: 0 auto;
}

.calendly-toggle {
    background: #F8F9FA;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    border: 2px solid #E1E5E9;
    transition: all 0.3s ease;
}

.calendly-toggle:hover {
    border-color: #236CD8;
}

.calendly-toggle h3 {
    margin-bottom: 0.5rem;
    color: #0B1220;
}

.calendly-toggle p {
    color: #666;
    margin: 0;
}

.calendly-embed {
    padding: 2rem 0;
}

.calendly-fallback {
    text-align: center;
    margin-top: 1rem;
}

.thank-you-contact {
    padding: 4rem 0;
    background: #0B1220;
    text-align: center;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
    color: #FFFFFF;
}

.contact-card h3 {
    color: #21B5DE;
    margin-bottom: 1rem;
}

.contact-card a {
    color: #21B5DE;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Services Pricing Group */
.services-pricing-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-option {
    border: 2px solid #E1E5E9;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #0B1220;
}

.service-option:hover {
    border-color: #236CD8;
    box-shadow: 0 4px 20px rgba(35, 108, 216, 0.1);
}

.service-checkbox-label {
    display: block;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

.service-checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(135deg, #0B1220 0%, #0E223D 100%);
    padding: 6rem 0 4rem;
    text-align: center;
}

.services-hero h1 {
    color: #FFFFFF;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.services-hero .hero-subtitle {
    color: #FFFFFF;
    opacity: 0.8;
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.services-list {
    padding: 6rem 0;
    background: #FFFFFF;
}

.services-value {
    padding: 6rem 0;
    background: #F8F9FA;
}

.services-value .section-title {
    text-align: center;
    color: #0B1220;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
}

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

.value-card {
    background: #FFFFFF;
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.value-icon {
    color: #21B5DE;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    color: #0B1220;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.value-card p {
    color: #4A5568;
    line-height: 1.6;
    margin: 0;
}

.pricing-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0B1220 0%, #0E223D 100%);
    text-align: center;
}

.cta-content h2 {
    color: #FFFFFF;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: #FFFFFF;
    opacity: 0.8;
    font-size: 1.25rem;
    margin-bottom: 3rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.pricing-note {
    opacity: 0.7;
}

.pricing-note p {
    margin: 0;
    font-size: 0.9rem;
}

.service-content {
    padding: 1.5rem;
    background: rgba(14, 34, 61, 0.4);
    border-radius: 10px;
    margin: 2px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(33, 181, 222, 0.2);
}

.service-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #FFFFFF;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #21B5DE;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    padding-left: 1rem;
    position: relative;
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #21B5DE;
    font-weight: bold;
}

.service-checkbox-label input[type="checkbox"]:checked + .service-content {
    background: rgba(33, 181, 222, 0.2);
    border: 1px solid #21B5DE;
}

.service-checkbox-label input[type="checkbox"]:checked + .service-content .service-header {
    border-bottom-color: #21B5DE;
}

.service-option:has(input[type="checkbox"]:checked) {
    border-color: #21B5DE;
    background: rgba(33, 181, 222, 0.1);
    box-shadow: 0 8px 24px rgba(33, 181, 222, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-form-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .service-features {
        grid-template-columns: 1fr;
    }
}

    .hero-benefits {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .trust-logos {
        grid-template-columns: 1fr;
    }

    .next-steps-grid {
        grid-template-columns: 1fr;
    }

    .trust-logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-hero-content .hero-title,
    .thank-you-content .hero-title {
        font-size: 2rem;
    }

    .checkbox-group,
    .radio-group {
        gap: 1rem;
    }
}