@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --molten-orange: #FF6B35;
    --molten-orange-dark: #E55A2B;
    --charcoal-dark: #1A1A1A;
    --charcoal-medium: #2D2D2D;
    --steel-gray: #4A5568;
    --light-gray: #E2E8F0;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --shadow-orange: rgba(255, 107, 53, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.text-molten-orange {
    color: var(--molten-orange) !important;
}

.bg-molten-orange {
    background-color: var(--molten-orange) !important;
}

.bg-charcoal-dark {
    background-color: var(--charcoal-dark) !important;
}

.bg-charcoal-medium {
    background-color: var(--charcoal-medium) !important;
}

.bg-steel-gray {
    background-color: var(--steel-gray) !important;
}

.btn-molten-orange {
    background-color: var(--molten-orange);
    color: var(--white);
    border: 2px solid var(--molten-orange);
    padding: 14px 32px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-molten-orange:hover {
    background-color: var(--molten-orange-dark);
    border-color: var(--molten-orange-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow-orange);
}

.btn-outline-molten {
    background-color: transparent;
    color: var(--molten-orange);
    border: 2px solid var(--molten-orange);
    padding: 14px 32px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-outline-molten:hover {
    background-color: var(--molten-orange);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow-orange);
}

.section-padding {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal-medium) 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%231A1A1A" width="100" height="100"/><circle fill="%232D2D2D" cx="20" cy="20" r="2"/><circle fill="%232D2D2D" cx="80" cy="60" r="3"/><circle fill="%232D2D2D" cx="40" cy="80" r="2"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
}

.page-hero {
    min-height: 45vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal-medium) 100%);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%231A1A1A" width="100" height="100"/><circle fill="%232D2D2D" cx="30" cy="30" r="2"/><circle fill="%232D2D2D" cx="70" cy="70" r="3"/><circle fill="%232D2D2D" cx="50" cy="20" r="1.5"/></svg>');
    opacity: 0.2;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 40px;
    transition: all 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid var(--light-gray);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-card .card-header {
    background: var(--charcoal-dark);
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card .card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--molten-orange);
}

.service-card .card-body {
    padding: 30px;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--molten-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.price-tag {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--molten-orange);
}

.price-tag span {
    font-size: 1rem;
    color: var(--steel-gray);
    font-weight: 400;
}

.feature-box {
    padding: 40px 30px;
    text-align: center;
    background: var(--white);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
}

.feature-box:hover {
    background: var(--charcoal-dark);
    color: var(--white);
    transform: translateY(-5px);
}

.feature-box:hover .feature-icon {
    color: var(--molten-orange);
    transform: scale(1.1);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    color: var(--molten-orange);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--molten-orange);
}

.section-title.centered::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    color: var(--steel-gray);
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    position: relative;
    border: 1px solid var(--light-gray);
}

.testimonial-card::before {
    content: '"';
    font-family: 'Oswald', sans-serif;
    font-size: 120px;
    color: var(--molten-orange);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    color: var(--charcoal-dark);
}

.testimonial-company {
    color: var(--steel-gray);
    font-size: 0.9rem;
}

.team-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.team-card .team-image {
    height: 280px;
    background: var(--charcoal-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.team-card .team-image svg {
    width: 100px;
    height: 100px;
    opacity: 0.3;
}

.team-card .team-info {
    padding: 25px;
    text-align: center;
}

.team-card .team-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.team-card .team-role {
    color: var(--molten-orange);
    font-weight: 500;
}

.faq-item {
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    background: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question .faq-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
    color: var(--molten-orange);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--white);
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 500px;
}

.contact-info-card {
    background: var(--charcoal-dark);
    color: var(--white);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.contact-info-card .contact-icon {
    width: 70px;
    height: 70px;
    background: var(--molten-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
}

.contact-info-card h4 {
    margin-bottom: 15px;
    color: var(--white);
}

.form-control {
    height: 55px;
    padding: 15px 20px;
    border: 2px solid var(--light-gray);
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--molten-orange);
    box-shadow: none;
}

textarea.form-control {
    height: 150px;
    resize: vertical;
}

.map-container {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    border-radius: 8px;
    border: none;
}

@media (max-width: 768px) {
    .map-container {
        height: 300px;
    }
    
    .map-container iframe {
        height: 100%;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
    background: var(--charcoal-medium);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(26, 26, 26, 0.95));
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    max-width: 450px;
    background: var(--charcoal-dark);
    color: var(--white);
    padding: 30px;
    border-radius: 8px;
    z-index: 9999;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cookie-banner h5 {
    color: var(--molten-orange);
    margin-bottom: 15px;
    font-family: 'Oswald', sans-serif;
}

.cookie-banner .btn-group {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.cookie-banner .btn {
    flex: 1;
    padding: 12px;
    font-size: 0.9rem;
}

@media (max-width: 576px) {
    .cookie-banner {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }
    
    .cookie-banner .btn-group {
        flex-direction: column;
    }
}

.navbar {
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    background: var(--charcoal-dark);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Mobile menu styles */
.navbar-collapse {
    background: var(--charcoal-dark);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.navbar-nav {
    background: var(--charcoal-dark);
    border-radius: 8px;
    padding: 1rem;
}

.navbar-toggler {
    border: 2px solid var(--molten-orange);
    border-radius: 4px;
    padding: 8px 12px;
}

.navbar-brand {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white) !important;
    letter-spacing: 2px;
}

.navbar-brand span {
    color: var(--molten-orange);
}

.nav-link {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    color: var(--white) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 15px !important;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--molten-orange) !important;
}

.navbar-toggler {
    border: 2px solid var(--molten-orange);
    border-radius: 4px;
    padding: 8px 12px;
    background: var(--charcoal-dark);
    color: var(--white);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile menu toggler styles */
@media (max-width: 991.98px) {
    .navbar-toggler {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1051;
        background: var(--molten-orange);
        border-color: var(--molten-orange);
        color: var(--white);
    }
    
    .navbar-toggler:hover {
        background: var(--molten-orange-dark);
        border-color: var(--molten-orange-dark);
    }
    
    /* Close icon for open menu */
    .navbar-toggler[aria-expanded="true"] {
        background: var(--charcoal-dark);
        border-color: var(--charcoal-dark);
    }
    
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M6 6l18 18M24 6L6 24'/%3e%3c/svg%3e");
    }
}

/* Desktop menu styles */
@media (min-width: 992px) {
    .navbar-collapse {
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        position: relative;
        z-index: auto;
    }
    
    .navbar-nav {
        background: transparent;
        border-radius: 0;
        padding: 0;
    }
    
    .navbar-nav .nav-item {
        margin-bottom: 0;
    }
    
    .navbar-nav .nav-link {
        font-size: 1rem;
        padding: 10px 15px !important;
        border-bottom: none;
        display: inline-block;
    }
    
    .navbar-nav .btn {
        margin-top: 0;
        width: auto;
    }
}

/* Mobile menu overlay styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 1050;
        padding: 80px 20px 40px;
        overflow-y: auto;
        border-radius: 0;
        border: none;
        box-shadow: none;
    }
    
    .navbar-nav {
        background: transparent;
        padding: 0;
        border-radius: 0;
    }
    
    .navbar-nav .nav-item {
        margin-bottom: 15px;
    }
    
    .navbar-nav .nav-link {
        font-size: 1.25rem;
        padding: 15px 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: block;
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
    
    .navbar-nav .btn {
        margin-top: 20px;
        width: 100%;
    }
    
    /* Mobile menu overlay background */
    .navbar-collapse.show {
        background: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    /* Mobile menu overlay animation */
    .navbar-collapse.collapsing {
        transition: all 0.3s ease;
    }
    
    .navbar-collapse.collapsed {
        display: none;
    }
    
    /* Mobile menu overlay content */
    .navbar-collapse.show .navbar-nav {
        background: transparent;
        padding: 0;
        border-radius: 0;
    }
    
    .navbar-collapse.show .navbar-nav .nav-item {
        margin-bottom: 15px;
    }
    
    .navbar-collapse.show .navbar-nav .nav-link {
        font-size: 1.25rem;
        padding: 15px 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: block;
    }
    
    .navbar-collapse.show .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
    
    .navbar-collapse.show .navbar-nav .btn {
        margin-top: 20px;
        width: 100%;
    }
    
    /* Mobile menu overlay close button */
    .navbar-collapse.show .navbar-toggler {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1051;
        background: var(--charcoal-dark);
        border-color: var(--charcoal-dark);
    }
    
    .navbar-collapse.show .navbar-toggler:hover {
        background: var(--charcoal-medium);
        border-color: var(--charcoal-medium);
    }
    
    /* Mobile menu overlay close button active */
    .navbar-collapse.show .navbar-toggler:active {
        background: var(--charcoal-dark);
        border-color: var(--charcoal-dark);
    }
    
    /* Mobile menu overlay close button icon */
    .navbar-collapse.show .navbar-toggler .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M6 6l18 18M24 6L6 24'/%3e%3c/svg%3e");
    }
    
    /* Mobile menu overlay close button focus */
    .navbar-collapse.show .navbar-toggler:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.5);
    }
    
    /* Mobile menu overlay close button transition */
    .navbar-collapse.show .navbar-toggler {
        transition: all 0.3s ease;
    }
    
    /* Mobile menu overlay close button animation */
    .navbar-collapse.show .navbar-toggler .navbar-toggler-icon {
        transition: all 0.3s ease;
    }
}

footer {
    background: var(--charcoal-dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-brand {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
    color: var(--white);
    text-decoration: none;
}

.footer-brand span {
    color: var(--molten-orange);
}

.footer-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--molten-orange);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--molten-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 50px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.stats-counter {
    background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal-medium) 100%);
    padding: 60px 0;
    color: var(--white);
}

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

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--molten-orange);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.process-step {
    position: relative;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--molten-orange);
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-area-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

.service-area-card:hover {
    background: var(--charcoal-dark);
    color: var(--white);
    transform: translateY(-5px);
}

.service-area-card:hover .service-area-icon {
    color: var(--molten-orange);
}

.service-area-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--molten-orange);
    transition: color 0.3s ease;
}

.asymmetrical-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
}

.asymmetrical-grid .grid-item-1 {
    grid-column: span 8;
}

.asymmetrical-grid .grid-item-2 {
    grid-column: span 4;
}

.asymmetrical-grid .grid-item-3 {
    grid-column: span 4;
}

.asymmetrical-grid .grid-item-4 {
    grid-column: span 8;
}

@media (max-width: 992px) {
    .asymmetrical-grid .grid-item-1,
    .asymmetrical-grid .grid-item-2,
    .asymmetrical-grid .grid-item-3,
    .asymmetrical-grid .grid-item-4 {
        grid-column: span 12;
    }
}

.spark-animation {
    position: relative;
    overflow: hidden;
}

.spark-animation::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    animation: sparkPulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes sparkPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--charcoal-medium) 0%, var(--charcoal-dark) 100%);
    color: var(--white);
    font-size: 3rem;
}

.legal-content {
    background: var(--white);
    padding: 60px;
    border-radius: 8px;
    border: 1px solid var(--light-gray);
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 20px;
    color: var(--charcoal-dark);
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-content li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 30px 20px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .price-tag {
        font-size: 2rem;
    }
}

.cta-section {
    background: linear-gradient(135deg, var(--molten-orange) 0%, var(--molten-orange-dark) 100%);
    padding: 80px 0;
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-section .btn {
    background: var(--white);
    color: var(--molten-orange);
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
}

.cta-section .btn:hover {
    background: var(--charcoal-dark);
    color: var(--white);
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--charcoal-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--molten-orange);
    border-radius: 50%;
}

.video-placeholder::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 30px;
}

.thank-you-icon {
    width: 120px;
    height: 120px;
    background: var(--molten-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 60px;
    color: var(--white);
}

.badge-custom {
    background: var(--molten-orange);
    color: var(--white);
    padding: 6px 16px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 20px;
}

.card-img-top {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: var(--charcoal-medium);
}

.text-dark-gray {
    color: var(--charcoal-dark);
}

.bg-light-gray {
    background-color: var(--light-gray);
}

.border-radius-8 {
    border-radius: 8px;
}

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

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

[class*="text-"] strong,
[class*="text-"] b,
.text-white strong, .text-white b,
.text-light strong, .text-light b {
    color: inherit;
}
