/* Tangled by Design - Main Styles */

:root {
    /* Color palette from logo & store */
    --charcoal: #2d2d2d;
    /* Darker, richer grey */
    --teal: #7eb8b8;
    --blush: #e8c5c5;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --accent-coral: #d49a8a;
    --nav-bg: #2d2d2d;
    /* Dark header background */
    --nav-text: #ffffff;
}

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

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

/* Headings use same font */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
}

/* Navigation */
nav {
    background-color: var(--nav-bg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    height: 60px;
}

.nav-brand-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--white);
    white-space: nowrap;
}

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

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    opacity: 0.9;
}

.nav-links a:hover {
    color: var(--teal);
    opacity: 1;
}

.nav-cta {
    background-color: var(--teal);
    color: var(--white) !important;
    /* Force white text */
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    opacity: 1;
}

.nav-cta:hover {
    background-color: #6a9f9f;
}

/* Hero Section */
.hero {
    position: relative;
    height: 60vh;
    /* Increased height for better image visibility */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 45, 45, 0.6);
    /* Dark overlay for text readability */
}

/* Infinite Ticker */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background-color: var(--light-gray);
    padding: 2rem 0;
    box-sizing: border-box;
}

.ticker {
    display: flex;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
}

.ticker:hover {
    animation-play-state: paused;
}

.ticker-item {
    flex-shrink: 0;
    width: 300px;
    margin: 0 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background: white;
    position: relative;
    text-decoration: none;
    display: block;
    color: inherit;
}

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

.ticker-item img {
    width: 100%;
    height: 350px;
    /* Adjusted height to make room for text */
    object-fit: cover;
    display: block;
}

.ticker-label {
    padding: 1rem;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--charcoal);
    background: white;
    font-size: 1.1rem;
    border-top: 1px solid #eee;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
        /* Adjust based on content width */
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Sections */
.section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--charcoal);
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--teal);
    margin-bottom: 3rem;
    font-weight: 500;
}

/* Store Spotlights / Cards */
.spotlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.spotlight-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.spotlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.spotlight-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Coming Soon Overlay */
.spotlight-card.coming-soon .spotlight-image {
    filter: blur(4px);
}

.spotlight-card.coming-soon::before {
    content: 'COMING SOON';
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(126, 184, 184, 0.95);
    color: white;
    padding: 1rem 2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    border-radius: 8px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.spotlight-content {
    padding: 1.5rem;
}

.spotlight-content h3 {
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.spotlight-content p {
    color: #666;
    margin-bottom: 1rem;
}

.spotlight-link {
    color: var(--teal);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.spotlight-link:hover {
    color: var(--accent-coral);
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-text h3 {
    color: var(--teal);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1rem;
    color: #555;
}

/* Process/Steps Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 10px;
}

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

.step h3 {
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.step p {
    color: #666;
}

/* Contact Form */
.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    background: white;
    box-shadow: 0 0 0 3px rgba(126, 184, 184, 0.1);
}

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

.submit-btn {
    background-color: var(--teal);
    color: var(--white);
    padding: 1.1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(126, 184, 184, 0.3);
}

.submit-btn:hover {
    background-color: #6a9f9f;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(126, 184, 184, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

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

/* Footer */
footer {
    background-color: var(--charcoal);
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Footer Social Icons */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-color: transparent;
}

/* Facebook Brand Color Hover */
.footer-social-link[href*="facebook"]:hover {
    background: #1877f2;
}

/* Instagram Brand Color Hover */
.footer-social-link[href*="instagram"]:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.footer-social-icon {
    width: 24px;
    height: 24px;
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

/* Contact Page Social Section */
.social-section {
    text-align: center;
    margin: 3rem auto;
    max-width: 800px;
}

.social-title {
    color: var(--charcoal);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-subtitle {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

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

.social-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-decoration: none;
    color: var(--charcoal);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.social-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon-wrapper.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0d5dbf 100%);
}

.social-icon-wrapper.instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-card:hover .social-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.social-icon-large {
    width: 36px;
    height: 36px;
    color: white;
}

.social-card h4 {
    font-size: 1.3rem;
    margin: 0;
    font-weight: 600;
}

.social-card p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* Contact Options Cards */
.contact-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-option-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.contact-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.contact-icon-wrapper.email {
    background: linear-gradient(135deg, #7eb8b8 0%, #6a9f9f 100%);
}

.contact-icon-wrapper.store {
    background: linear-gradient(135deg, #e8c5c5 0%, #d49a8a 100%);
}

.contact-icon-wrapper.location {
    background: linear-gradient(135deg, #2d2d2d 0%, #4a4a4a 100%);
}

.contact-option-card:hover .contact-icon-wrapper {
    transform: scale(1.1) rotate(-5deg);
}

.contact-icon {
    width: 40px;
    height: 40px;
    color: white;
}

.contact-option-card h3 {
    font-size: 1.4rem;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.contact-option-card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-link {
    display: inline-block;
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.contact-link:hover {
    color: #6a9f9f;
    border-bottom-color: var(--teal);
}

.location-text {
    color: var(--teal) !important;
    font-weight: 700 !important;
    font-size: 1.1rem;
    margin: 0 !important;
}

/* Creative Process Infographic */
.process-infographic {
    margin-bottom: 4rem;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    background: white;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.infographic-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.process-infographic img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Interactive Markers */
.step-marker {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--teal);
    color: white;
    border: 2px solid white;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.step-marker:hover,
.step-marker.active {
    transform: translate(-50%, -50%) scale(1.2);
    background: var(--charcoal);
    box-shadow: 0 0 0 6px rgba(126, 184, 184, 0.4);
}

/* Pulse Animation */
.step-marker::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: var(--teal);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

/* Popups */
.step-popup {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    width: 280px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    text-align: left;
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.step-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.step-popup h4 {
    color: var(--teal);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.step-popup p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

/* Popup Positioning Logic (Handled by JS mostly, but defaults here) */
.step-popup {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(10px);
}

.step-popup.active {
    transform: translate(-50%, -50%) translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.75rem 1rem;
    }

    .nav-brand {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }

    .nav-logo {
        height: 40px;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .nav-links a {
        font-size: 0.9rem;
        padding: 0.25rem 0;
    }

    .nav-cta {
        padding: 0.5rem 1.25rem;
        font-size: 0.9rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* ========================================
   FEATURE GRID - IMAGE-BACKED CARDS
   ======================================== */

.why-section {
    padding: 5rem 2rem;
}

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

.feature-card {
    position: relative;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.feature-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-image {
    transform: scale(1.05);
}

.feature-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-content {
    background: rgba(255, 255, 255, 0.98);
    padding: 2.5rem 2rem;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
}

.feature-content h3 {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-content p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ========================================
   MEET THE MAKERS SECTION
   ======================================== */

.meet-makers-section {
    padding: 5rem 2rem;
}

.meet-makers-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.makers-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateX(-30px);
}

.makers-image.animate-in {
    animation: slideInLeft 0.8s ease forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.makers-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.makers-image:hover img {
    transform: scale(1.05);
}

.makers-content {
    opacity: 0;
    transform: translateX(30px);
}

.makers-content.animate-in {
    animation: slideInRight 0.8s ease 0.2s forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.makers-content h2 {
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.makers-content h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--blush));
    border-radius: 2px;
}

.makers-intro {
    font-size: 1.2rem;
    color: var(--teal);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.makers-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.makers-cta {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.875rem 2rem;
    background: var(--teal);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(126, 184, 184, 0.3);
}

.makers-cta:hover {
    background: #6a9f9f;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(126, 184, 184, 0.4);
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        height: 350px;
    }

    .meet-makers-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .makers-content h2 {
        font-size: 2rem;
    }

    .makers-intro {
        font-size: 1.1rem;
    }
}

/* ========================================
   CALL TO ACTION SECTION
   ======================================== */

.cta-section {
    background: var(--charcoal);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(126, 184, 184, 0.1) 0%, rgba(232, 197, 197, 0.1) 100%);
    pointer-events: none;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background: var(--teal);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(126, 184, 184, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: #6a9f9f;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(126, 184, 184, 0.4);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* Responsive CTA */
@media (max-width: 768px) {
    .cta-section {
        padding: 4rem 1.5rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-text {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }
}

/* ========================================
   MOBILE NAVIGATION - HAMBURGER MENU
   ======================================== */

/* Hide hamburger by default (desktop) */
.hamburger {
    display: none;
}

.mobile-overlay {
    display: none;
}

/* Mobile styles (768px and below) */
@media (max-width: 768px) {

    /* --- Hamburger Button --- */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        width: 44px;
        /* Minimum touch target */
        height: 44px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 8px;
        position: fixed;
        top: 8px;
        right: 8px;
        z-index: 1002;
        transition: all 0.3s ease;
    }

    .hamburger:hover {
        transform: scale(1.1);
    }

    .hamburger:focus {
        outline: 3px solid var(--teal);
        outline-offset: 2px;
        border-radius: 4px;
    }

    .hamburger-line {
        display: block;
        width: 26px;
        height: 3px;
        background-color: var(--white);
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        transform-origin: center;
    }

    /* Animated X when menu is open */
    .hamburger.active .hamburger-line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active .hamburger-line:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .hamburger.active .hamburger-line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* --- Mobile Overlay Backdrop --- */
    .mobile-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 280px;
        /* Don't cover the menu panel width */
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        pointer-events: none;
    }

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        backdrop-filter: blur(4px);
    }

    /* Adjust overlay for narrow screens */
    @media (max-width: 330px) {
        .mobile-overlay {
            right: 85%;
            /* Match menu max-width */
        }
    }

    /* --- Navigation Container --- */
    .nav-container {
        min-height: 60px;
        padding: 0.75rem 1rem;
    }

    .nav-logo {
        height: 40px;
    }

    /* --- Mobile Navigation Links --- */
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 280px;
        max-width: 85%;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 80px 0 2rem 0;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    /* --- Mobile Menu Items --- */
    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 1rem 2rem;
        font-size: 1.125rem;
        font-weight: 500;
        color: var(--charcoal);
        text-align: left;
        border-bottom: 1px solid var(--light-gray);
        transition: all 0.3s ease;
    }

    .nav-links a:hover,
    .nav-links a:focus {
        background-color: rgba(126, 184, 184, 0.1);
        color: var(--teal);
        padding-left: 2.5rem;
    }

    /* Current page indicator */
    .nav-links a.current-page {
        background-color: rgba(126, 184, 184, 0.15);
        border-left: 4px solid var(--teal);
    }

    /* --- Mobile CTA Button --- */
    .nav-links .nav-cta {
        margin: 1.5rem 2rem;
        padding: 0.875rem 1.75rem;
        text-align: center;
        border-radius: 30px;
        background-color: var(--teal);
        color: var(--white);
        border-bottom: none;
        box-shadow: 0 2px 8px rgba(126, 184, 184, 0.3);
    }

    .nav-links .nav-cta:hover {
        background-color: #6a9f9f;
        transform: translateY(-2px);
        padding-left: 1.75rem;
        /* Override the hover slide */
    }

    /* --- Prevent Body Scroll When Menu Open --- */
    body.menu-open {
        overflow: hidden;
    }
}

/* ========================================
   TECHNIQUES CAROUSEL
   ======================================== */

.techniques-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 4rem;
    height: 600px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.carousel-track-container {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-track {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6) 50%, transparent);
    padding: 4rem 2rem 2rem;
    color: white;
    text-align: center;
}

.carousel-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.carousel-content p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Carousel Navigation */
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-button:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.carousel-button.prev {
    left: 20px;
}

.carousel-button.next {
    right: 20px;
}

.carousel-button.is-hidden {
    display: none;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    padding: 1rem 0;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

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

.carousel-indicator.active {
    background: var(--white);
    transform: scale(1.2);
}

/* Responsive Carousel */
@media (max-width: 768px) {
    .techniques-carousel {
        height: 500px;
    }

    .carousel-content h3 {
        font-size: 1.5rem;
    }

    .carousel-content p {
        font-size: 1rem;
    }

    .carousel-button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}