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

:root {
    /* Base Dark Palette */
    --bg-dark: #121212; /* Deep background color */
    --bg-card: #1e1e1e; /* Slightly lighter for cards/boxes */
    --primary-color: #f0f0f0; /* Light text for main content */
    --secondary-color: #4a90e2; /* A professional, deep blue */
    --accent-color: #4CAF50; /* Innovative/Techy Green for contrast and CTAs */
    --text-color: #e0e0e0; /* Main body text color */
    --text-light: #b0b0b0; /* Subtext, captions, etc. */
    --bg-light: #1a1a1a; /* Dark alternative background */
    --bg-white: #1e1e1e; /* Dark "white" replacement */
    --border-color: #333333; /* Subtle separators */
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.6);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-dark);
    /* Optional: Add a subtle texture pattern if you download one from transparenttextures.com or similar */
    /* background-image: url('assets/dark-texture.png'); */
    /* background-size: cover; */
    /* background-repeat: repeat; */
    /* background-attachment: fixed; */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

em {
    font-style: italic;
    color: var(--secondary-color);
}

strong {
    font-weight: 600;
    color: var(--primary-color);
}

/* Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Navigation */
header {
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

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

.logo-link {
    display: block;
    text-decoration: none;
}

.ww-logo {
    width: 220px;
    height: auto;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.cta-link {
    background-color: var(--accent-color);
    color: var(--bg-dark) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-link:hover {
    background-color: #388e3c;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    color: white;
    padding: 6rem 0;
    text-align: center;

    /* Mesh fabric background */
    background-image: url("assets/bg-tailor-mesh-dark.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 1;
}

/* Animated overlay that "breathes" like fabric being worked */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(8, 12, 24, 0.95) 0%,
        rgba(10, 32, 24, 0.9) 50%,
        rgba(8, 12, 24, 0.95) 100%
    );
    background-size: 200% 200%;
    animation: heroOverlayDrift 18s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes heroOverlayDrift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-title {
    font-size: 2.75rem;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-title em {
    color: var(--accent-color);
    font-style: italic;
}

.hero-highlight {
    display: inline-block;
    position: relative;
    animation: heroHighlightPulse 3.5s ease-in-out infinite;
}

@keyframes heroHighlightPulse {
    0%, 100% {
        transform: translateY(0);
        text-shadow: 0 0 0 rgba(76, 175, 80, 0);
    }
    50% {
        transform: translateY(-2px);
        text-shadow: 0 0 12px rgba(76, 175, 80, 0.6);
    }
}

.intro-box {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
}

.intro-box.hidden {
    opacity: 0;
    transform: translateY(-20px);
    visibility: hidden;
    pointer-events: none;
}

.intro-box p {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.intro-box p:last-child {
    margin-bottom: 0;
}

.intro-box strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--bg-dark);
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.5);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background-color: #388e3c;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: #3b7ad6;
    transform: translateY(-2px);
}

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

.section-alt {
    background-color: var(--bg-card);
}

.section-dark {
    background-color: #0b0b0b;
    color: white;
}

.section-dark h2,
.section-dark p {
    color: white;
}

.content-block {
    max-width: 800px;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.centered {
    text-align: center;
    margin: 0 auto;
}

.highlight-text {
    font-size: 1.15rem;
    padding: 1.5rem;
    background-color: rgba(74, 144, 226, 0.1);
    border-left: 4px solid var(--secondary-color);
    border-radius: 6px;
    margin-top: 1.5rem;
    color: var(--text-color);
}

/* Lists */
.feature-list,
.process-list {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.feature-list li,
.process-list li {
    margin-bottom: 1.25rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
}

.feature-list li::before {
    content: "⚡";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.15rem;
}

.process-list {
    counter-reset: process-counter;
}

.process-list li {
    counter-increment: process-counter;
    padding-left: 3rem;
}

.process-list li::before {
    content: counter(process-counter);
    position: absolute;
    left: 0;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
}

/* Philosophy Line */
.philosophy-line {
    font-size: 1.25rem;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 8px;
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

/* Gallery Section */
.gallery-section {
    background-color: var(--bg-dark);
}

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

.gallery-card {
    position: relative;
    background-color: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.2);
}

/* Different card backgrounds */
.card-minimal,
.card-simple {
    background-image: url("assets/bg-tailor-mesh-dark.jpg");
    background-size: cover;
    background-position: center;
}

.card-minimal::before,
.card-simple::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(30, 30, 30, 0.92);
    z-index: 0;
}

.card-bold,
.card-creative {
    background-image: url("assets/bg-tailor-sequin-folds.jpg");
    background-size: cover;
    background-position: center;
}

.card-bold::before,
.card-creative::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(30, 30, 30, 0.92);
    z-index: 0;
}

.card-thumbnail {
    position: relative;
    padding: 2rem;
    z-index: 1;
}

.card-mockup {
    background-color: rgba(18, 18, 18, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mockup-header {
    height: 8px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 4px;
    width: 60%;
}

.mockup-hero {
    height: 50px;
    background-color: rgba(74, 144, 226, 0.2);
    border-radius: 6px;
}

.mockup-content {
    height: 30px;
    background-color: rgba(240, 240, 240, 0.1);
    border-radius: 4px;
}

.mockup-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    flex: 1;
}

.mockup-services::before,
.mockup-services::after {
    content: "";
    background-color: rgba(240, 240, 240, 0.1);
    border-radius: 4px;
}

.mockup-cta {
    height: 20px;
    background-color: rgba(76, 175, 80, 0.3);
    border-radius: 4px;
    width: 50%;
    margin: 0 auto;
}

.mockup-headline {
    height: 40px;
    background-color: rgba(76, 175, 80, 0.3);
    border-radius: 6px;
}

.mockup-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.mockup-features::before,
.mockup-features::after {
    content: "";
    height: 15px;
    background-color: rgba(240, 240, 240, 0.1);
    border-radius: 4px;
}

.mockup-form {
    flex: 1;
    background-color: rgba(240, 240, 240, 0.1);
    border-radius: 6px;
}

.mockup-calendar {
    height: 40px;
    background-color: rgba(74, 144, 226, 0.2);
    border-radius: 6px;
}

.mockup-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    flex: 1;
}

.mockup-gallery::before,
.mockup-gallery::after {
    content: "";
    background-color: rgba(240, 240, 240, 0.1);
    border-radius: 4px;
}

.mockup-onepage {
    flex: 1;
    background: linear-gradient(to bottom, 
        rgba(74, 144, 226, 0.2) 0%, 
        rgba(240, 240, 240, 0.1) 40%, 
        rgba(76, 175, 80, 0.2) 100%);
    border-radius: 6px;
}

.card-content {
    position: relative;
    padding: 1.5rem;
    z-index: 1;
}

.card-label {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card-content h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.card-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2rem;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.step-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.step-content p {
    font-size: 1.05rem;
    color: var(--text-color);
    line-height: 1.7;
}

/* Experience List */
.experience-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    max-width: 800px;
}

.experience-list li {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background-color: var(--bg-card);
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.experience-list li strong {
    display: block;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

/* Personal CTA Strip */
.cta-strip {
    position: relative;
    overflow: hidden;
    background-color: #050505;
    padding: 5rem 0;
}

.cta-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("assets/bg-tailor-sequin-folds.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
}

.cta-strip > * {
    position: relative;
    z-index: 1;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.15rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Social Proof Section */
.social-proof-section {
    background-color: var(--bg-card);
}

.testimonial-placeholder {
    margin-top: 3rem;
    padding: 3rem;
    background-color: rgba(76, 175, 80, 0.05);
    border: 2px dashed var(--border-color);
    border-radius: 12px;
}

.coming-testimonial {
    font-size: 1.5rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-note {
    font-size: 1rem;
    color: var(--accent-color);
}

/* Coming Soon */
.coming-soon {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
    padding: 3rem 0;
}

/* Free Offer Section */
.offer-section {
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--secondary-color);
    color: #ffffff;
    background-color: #050505;
}

/* Sequin fabric background */
.offer-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("assets/bg-tailor-sequin-folds.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.25;
    filter: grayscale(0.1);
    z-index: 0;
}

/* Soft glow/shimmer over the sequins */
.offer-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.25), transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(0, 0, 0, 0.7), transparent 55%);
    mix-blend-mode: screen;
    opacity: 0;
    animation: sequinGlow 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes sequinGlow {
    0%, 100% { opacity: 0.1; }
    50%      { opacity: 0.5; }
}

/* Keep content above the textures */
.offer-section > * {
    position: relative;
    z-index: 1;
}

.offer-header {
    text-align: center;
    margin-bottom: 2rem;
}

.offer-badge {
    position: relative;
    overflow: hidden;
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

/* Subtle line shimmer */
.offer-badge::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.35),
        rgba(255, 255, 255, 0)
    );
    transform: skewX(-25deg);
    animation: badgeShimmer 4s infinite;
}

@keyframes badgeShimmer {
    0%   { left: -150%; }
    40%  { left: 150%; }
    100% { left: 150%; }
}

.offer-intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.offer-details {
    background-color: var(--bg-dark);
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid var(--secondary-color);
    margin: 2rem 0;
}

.offer-details h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

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

.offer-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.05rem;
    line-height: 1.7;
}

.offer-list li:last-child {
    border-bottom: none;
}

.offer-cta {
    text-align: center;
    margin-top: 2.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 8px;
}

.offer-cta p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
}

/* Application Form Section */
.application-section {
    background-color: var(--bg-white);
}

.application-form {
    max-width: 700px;
    margin: 2rem auto 0;
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 2rem;
}

.form-section h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.application-form .btn {
    width: 100%;
    margin-top: 1rem;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-wrapper h3,
.contact-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.form-group label {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background-color: var(--bg-card);
    color: var(--primary-color);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: #2a2a2a;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2), 0 0 12px rgba(76, 175, 80, 0.3);
    transform: scale(1.01);
}

.form-group select {
    cursor: pointer;
}

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

.contact-form .btn {
    margin-top: 0.5rem;
    width: 100%;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    text-align: left;
}

.contact-icon {
    font-size: 2rem;
    line-height: 1;
}

.contact-details h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #388e3c;
    text-decoration: underline;
}

.response-time {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 1rem;
    text-align: left;
}

/* Footer */
footer {
    background-color: #0d0d0d;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

footer p {
    color: var(--text-light);
    margin: 0;
}

/* Scroll Reveal Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: transform, opacity;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-content {
    will-change: transform, opacity;
}

/* Stagger animation for child elements */
.is-visible .content-block > * {
    animation: fadeInUp 0.6s ease-out backwards;
}

.is-visible .content-block > *:nth-child(1) { animation-delay: 0.1s; }
.is-visible .content-block > *:nth-child(2) { animation-delay: 0.2s; }
.is-visible .content-block > *:nth-child(3) { animation-delay: 0.3s; }
.is-visible .content-block > *:nth-child(4) { animation-delay: 0.4s; }
.is-visible .content-block > *:nth-child(5) { animation-delay: 0.5s; }

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

/* Enhanced form focus state */
.form-group.is-focused label {
    color: var(--accent-color);
    transform: translateX(3px);
}

/* Reduced Motion Accessibility */
@media (prefers-reduced-motion: reduce) {
    /* Kill continuous keyframe animations */
    .hero::before,
    .hero-highlight,
    .offer-section::after,
    .offer-badge::after {
        animation: none !important;
    }

    /* Make reveal instant */
    .animate-on-scroll {
        opacity: 1 !important;
        transform: none !important;
    }

    /* Disable all transitions */
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

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

    /* Reduce backdrop-filter on mobile for performance */
    .intro-box {
        backdrop-filter: none;
        background-color: rgba(0, 0, 0, 0.6);
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .hero {
        padding: 3rem 0;
    }

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

    .intro-box {
        padding: 1.5rem;
    }

    .intro-box p {
        font-size: 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    h2 {
        font-size: 1.75rem;
    }

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

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

    .application-form {
        padding: 1.5rem;
    }

    .offer-details {
        padding: 1.5rem;
    }

    .offer-cta {
        padding: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-step {
        flex-direction: column;
        gap: 1rem;
    }

    .step-number {
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .testimonial-placeholder {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .ww-logo {
        width: 180px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}
