:root {
    --primary-red: #732506; /* Darkened from #8D3006 for WCAG AAA compliance (7:1 contrast) */
    --off-white: #FFFBFA;
    --dark-text: #1F120A; /* Darkened from #2C1810 for better contrast */
    --medium-text: #4A3123; /* Darkened from #5A3E2B for better readability */
    --light-text: #6B5648; /* Darkened from #8B6F5C */
    --light-gold: #D4A574; /* Light gold for better readability on dark backgrounds */
    --border-light: #F0E8E4;
    --shadow: rgba(115, 37, 6, 0.1);
    --shadow-hover: rgba(115, 37, 6, 0.15);
    --gradient-primary: linear-gradient(135deg, #732506 0%, #943507 100%);
    --gradient-light: linear-gradient(135deg, #FFFBFA 0%, #FFF5F0 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--off-white);
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Breadcrumb Navigation */
.breadcrumb {
    background: var(--off-white);
    padding: 1rem 1.5rem;
    margin-top: 82px;
}

.breadcrumb ol {
    display: flex;
    list-style: none;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.9rem;
}

.breadcrumb li {
    color: var(--medium-text);
}

.breadcrumb li + li::before {
    content: '/';
    margin: 0 0.75rem;
    color: var(--light-text);
}

.breadcrumb a {
    color: var(--primary-red);
    text-decoration: underline;
}

.breadcrumb [aria-current="page"] {
    color: var(--dark-text);
    font-weight: 500;
}

/* Skip Link for Screen Readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-red);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 0 0 4px 0;
    z-index: 9999;
}

.skip-link:focus {
    top: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    color: var(--medium-text);
}

a {
    color: var(--primary-red);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

/* Enhanced Focus States */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--primary-red);
    outline-offset: 2px;
}

/* Modern focus-visible for keyboard navigation only */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--primary-red);
    outline-offset: 2px;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header Styles */
.main-header {
    background: rgba(255, 251, 250, 0.95); /* Semi-transparent off-white */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px var(--shadow);
    transition: all 0.3s ease;
    overflow: visible; /* Allow logo to extend beyond header */
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    min-height: 60px;
}

.logo {
    position: fixed;
    left: 3rem;
    top: 10px;
    z-index: 1002;
}

.logo img {
    height: 180px;
    width: auto;
    transition: all 0.3s ease;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(141, 48, 6, 0.2));
}

.logo:hover img {
    transform: scale(1.02);
    filter: drop-shadow(0 6px 16px rgba(141, 48, 6, 0.3));
}

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

.nav-menu a {
    color: var(--dark-text);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 80%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-red);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    min-width: 44px;
    min-height: 44px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark-text);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    margin-top: 82px;
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-light);
    overflow: hidden;
}

.hero-content {
    flex: 1;
    padding: 4rem 1.5rem 4rem 250px; /* Extra left padding for logo space */
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
}

.hero-title {
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--medium-text);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-image-wrapper {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 120%;
    opacity: 0.1;
}

.hero-pattern {
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238D3006' fill-opacity='0.2'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-red);
    border: 1px solid var(--primary-red);
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
}

.btn-outline:hover {
    background: var(--primary-red);
    color: white;
}

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

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-text);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
}

/* Intro Section */
.intro-section {
    background: white;
}

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

.intro-content h2 {
    margin-bottom: 1.5rem;
}

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

.stat-card {
    background: var(--gradient-light);
    padding: 2rem;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

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

.stat-card p {
    font-size: 0.9rem;
    color: var(--medium-text);
    margin: 0;
}

/* Services Preview */
.services-preview {
    background: var(--gradient-light);
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 6px 25px var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px var(--shadow-hover);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.service-card h4 {
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    margin: 1.5rem 0;
}

.service-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--medium-text);
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

/* Testimonials */
.testimonials {
    background: white;
}

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

.testimonial-card {
    background: var(--gradient-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px var(--shadow-hover);
}

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

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author strong {
    display: block;
    color: var(--dark-text);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--light-text);
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

.cta-section .btn-primary {
    background: white;
    color: var(--primary-red);
}

.cta-section .btn-secondary {
    border-color: white;
    color: white;
}

.cta-section .btn-secondary:hover {
    background: white;
    color: var(--primary-red);
}

/* Footer */
.main-footer {
    background: var(--dark-text);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    margin-bottom: 1rem;
    height: auto;
    max-width: 150px;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.footer-column p {
    color: var(--light-gold);
    font-size: 0.95rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: white;
}

.footer-column address {
    font-style: normal;
    color: var(--light-gold);
    font-size: 0.95rem;
}

.footer-column address p {
    color: var(--light-gold);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    color: var(--light-gold);
    font-size: 0.9rem;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

/* Services Detail Page */
.services-detail {
    background: white;
}

.services-content {
    max-width: 1000px;
    margin: 0 auto;
}

.service-detail-card {
    background: var(--gradient-light);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 6px 25px var(--shadow);
}

.service-features {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature h4 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

/* Who It's For Section */
.who-its-for {
    background: var(--gradient-light);
}

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

.criteria-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 6px 25px var(--shadow);
}

.criteria-card h3 {
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.criteria-card ul {
    list-style: none;
}

.criteria-card li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--medium-text);
    line-height: 1.6;
}

.criteria-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Process Timeline */
.process {
    background: white;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: var(--border-light);
    z-index: 1;
}

.process-step:last-child::after {
    display: none;
}

.process-step h3 {
    color: var(--dark-text);
    margin-bottom: 1rem;
}

/* Creator Benefits */
.creator-benefits {
    background: var(--gradient-light);
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px var(--shadow-hover);
}

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

.benefit-card h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

/* FAQ Section */
.creator-faq {
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--gradient-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
}

.faq-item h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Form Success Message */
.form-success {
    background: #4CAF50;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
    animation: fadeInUp 0.5s ease;
}

/* Brand Services */
.brand-services {
    background: white;
}

/* Campaign Types */
.campaign-types {
    background: var(--gradient-light);
}

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

.campaign-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s ease;
}

.campaign-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px var(--shadow-hover);
}

.campaign-card h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

/* Case Studies */
.case-studies {
    background: white;
}

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

.case-study-card {
    background: var(--gradient-light);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 6px 25px var(--shadow);
    transition: all 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px var(--shadow-hover);
}

.case-study-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.case-study-header h3 {
    color: var(--dark-text);
    margin: 0;
}

.industry-tag {
    background: var(--primary-red);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.case-study-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric {
    text-align: center;
}

.metric h4 {
    color: var(--primary-red);
    font-size: 1.8rem;
    margin-bottom: 0.25rem;
}

.metric p {
    font-size: 0.85rem;
    color: var(--light-text);
    margin: 0;
}

/* Brand Process */
.brand-process {
    background: var(--gradient-light);
}

/* Brand FAQ */
.brand-faq {
    background: white;
}

/* Contact Section */
.contact-section {
    background: white;
    padding: 5rem 0;
}

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

.contact-info {
    background: var(--gradient-light);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 6px 25px var(--shadow);
    position: sticky;
    top: 100px;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block:last-child {
    margin-bottom: 0;
}

.info-block h3 {
    color: var(--primary-red);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.info-block address {
    font-style: normal;
    color: var(--medium-text);
    line-height: 1.8;
}

.social-links-contact {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links-contact a {
    color: var(--primary-red);
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-links-contact a:hover {
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--gradient-light);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 6px 25px var(--shadow);
}

.contact-form h2 {
    margin-bottom: 2rem;
    color: var(--dark-text);
}

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

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

.form-group label {
    display: block;
    color: var(--dark-text);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    background: white;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(141, 48, 6, 0.1);
}

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

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--medium-text);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

/* Modern Form Styles */
.form-type-selector {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.form-type-btn {
    flex: 1;
    max-width: 300px;
    padding: 2rem;
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.form-type-btn:hover {
    border-color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow);
}

.form-type-btn.active {
    border-color: var(--primary-red);
    background: var(--gradient-light);
}

.form-type-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.form-type-btn h3 {
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.form-type-btn p {
    color: var(--medium-text);
    font-size: 0.9rem;
    margin: 0;
}

.forms-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-section {
    display: none;
}

.form-section.active {
    display: block;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.form-header p {
    color: var(--medium-text);
    font-size: 1.1rem;
}

.form-progress {
    margin-top: 2rem;
}

.progress-bar {
    height: 8px;
    background: var(--border-light);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.5s ease;
}

.progress-text {
    color: var(--medium-text);
    font-size: 0.9rem;
}

/* Multi-step Form */
.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-step.active {
    display: block;
}

.step-title {
    color: var(--dark-text);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.form-helper {
    display: block;
    color: var(--medium-text);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.optional {
    color: var(--light-text);
    font-weight: 400;
    font-size: 0.85rem;
}

/* Custom Form Elements */
.custom-select-wrapper {
    position: relative;
}

.custom-select-wrapper::after {
    content: '▼';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--medium-text);
    font-size: 0.8rem;
}

.platform-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.platform-option {
    position: relative;
    cursor: pointer;
}

.platform-option input {
    position: absolute;
    opacity: 0;
}

.platform-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.platform-option input:checked + .platform-box {
    border-color: var(--primary-red);
    background: var(--gradient-light);
}

.platform-icon {
    font-size: 1.5rem;
}

/* Radio Cards */
.radio-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.radio-card {
    position: relative;
    cursor: pointer;
}

.radio-card input {
    position: absolute;
    opacity: 0;
}

.radio-card-content {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.radio-card input:checked + .radio-card-content {
    border-color: var(--primary-red);
    background: var(--gradient-light);
}

.radio-card-title {
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.25rem;
}

.radio-card-desc {
    font-size: 0.85rem;
    color: var(--medium-text);
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 2rem;
}

.form-actions .btn {
    min-width: 150px;
}

.form-actions .btn-secondary {
    background: white;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

/* Contact CTA */
.contact-cta {
    background: var(--gradient-light);
    padding: 5rem 0;
}

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

.contact-option {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
    text-align: center;
}

.contact-option h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

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

.social-btn {
    padding: 0.5rem 1rem;
    background: var(--gradient-light);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--gradient-primary);
    color: white;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: 50px;
    font-family: inherit;
}

.newsletter-form .btn {
    white-space: nowrap;
}

/* About Page Styles */
.mission-section {
    background: white;
    padding: 5rem 0;
}

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

.mission-content h2 {
    margin-bottom: 2rem;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--medium-text);
    margin-bottom: 1.5rem;
}

.mission-values h3 {
    color: var(--primary-red);
    margin-bottom: 2rem;
}

.values-list {
    display: grid;
    gap: 1.5rem;
}

.value-item {
    background: var(--gradient-light);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
}

.value-item h4 {
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

/* Team Section */
.team-section {
    background: var(--gradient-light);
    padding: 5rem 0;
}

.section-subtitle {
    text-align: center;
    color: var(--medium-text);
    font-size: 1.2rem;
    margin-top: -2rem;
    margin-bottom: 3rem;
}

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

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px var(--shadow-hover);
}

.member-image {
    margin-bottom: 1.5rem;
}

.placeholder-avatar {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto;
}

.team-member h3 {
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.member-title {
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Why Namika Section */
.why-namika {
    background: white;
    padding: 5rem 0;
}

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

.why-card {
    padding: 2rem;
    border-radius: 12px;
    background: var(--gradient-light);
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px var(--shadow-hover);
}

.why-card h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

/* Our Process Tabs */
.our-process {
    background: var(--gradient-light);
    padding: 5rem 0;
}

.process-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 0.75rem 2rem;
    background: white;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* FAQ Section */
.faq-section {
    background: white;
    padding: 5rem 0;
}

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

.faq-category {
    margin-bottom: 3rem;
}

.faq-category h3 {
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.faq-item {
    background: var(--gradient-light);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(141, 48, 6, 0.05);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-red);
    transition: transform 0.3s ease;
}

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

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    margin: 0;
}

/* Legal Pages */
.legal-hero {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem 0;
    margin-top: 82px;
    position: relative;
}

/* Scroll indicator for legal pages */
.legal-hero::after {
    content: '⌄';
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: white;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.legal-hero .hero-content {
    text-align: center;
    padding: 0 1.5rem;
}

.legal-hero h1 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.legal-hero .hero-subtitle {
    font-size: 1rem;
    color: white;
    opacity: 0.9;
    margin-bottom: 0;
}

.legal-date {
    font-size: 1.1rem;
    opacity: 0.9;
}

.legal-content {
    background: white;
    padding: 3rem 0;
    margin-top: -1px;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.document-meta {
    background: var(--gradient-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.document-meta p {
    margin: 0;
    color: var(--medium-text);
}

.legal-section {
    margin-bottom: 2.5rem;
    scroll-margin-top: 100px;
}

.legal-section h2 {
    color: var(--primary-red);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-light);
}

.legal-section h3 {
    color: var(--dark-text);
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.contact-info {
    background: var(--gradient-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

/* Legal page responsive adjustments */
@media (max-width: 768px) {
    .legal-hero h1 {
        font-size: 1.5rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .document-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.legal-nav a:hover {
    color: var(--primary-red);
    transform: translateX(5px);
    display: inline-block;
}

.legal-main section {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-light);
}

.legal-main section:last-child {
    border-bottom: none;
}

.legal-main h2 {
    color: var(--dark-text);
    margin-bottom: 1.5rem;
}

.legal-main h3 {
    color: var(--primary-red);
    margin: 1.5rem 0 1rem;
    font-size: 1.2rem;
}

.legal-main ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-main li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.legal-main address {
    font-style: normal;
    background: var(--gradient-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

@media (max-width: 968px) {
    .legal-wrapper {
        grid-template-columns: 1fr;
    }
    
    .legal-nav {
        position: static;
        margin-bottom: 2rem;
    }
}

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

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        position: static;
    }
    
    .criteria-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .case-study-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-type-selector {
        flex-direction: column;
    }
    
    .form-type-btn {
        max-width: 100%;
    }
    
    .platform-selector {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .radio-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .logo {
        left: 1.5rem;
    }
    
    .logo img {
        height: 120px;
    }
    
    .hero-content {
        padding: 4rem 1.5rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 82px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-wrapper {
        display: none;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo {
        left: 1rem;
        top: 5px;
    }
    
    .logo img {
        height: 100px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        font-size: 0.85rem;
        padding: 0.6rem 1.5rem;
    }

    section {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .process-step::after {
        display: none;
    }
    
    .case-study-metrics {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .tab-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .tab-btn {
        width: 100%;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .fade-in,
    .fade-in-delay,
    .fade-in-delay-2 {
        opacity: 1;
        animation: none;
    }
}

/* Print Styles */
@media print {
    .main-header,
    .main-footer,
    .hero-pattern,
    .mobile-menu-toggle {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    a {
        text-decoration: underline;
    }
    
    .legal-document {
        padding: 0;
    }
}