:root {
    /* Pop Art Travel Theme Color Palette */
    --deep-teal: #008080;        /* Primary background - ocean */
    --marigold-yellow: #FFC759;  /* Header/hero blocks - sunshine */
    --terracotta-orange: #E27D60; /* Footer/accents - spices */
    --solid-black: #000000;      /* Borders and outlines */
    --sandy-beige: #F4F1DE;      /* Text and form fields */
    --bold-red: #FF6B6B;         /* Additional accent for energy */
    
    /* Typography */
    --font-family-headlines: 'Montserrat Black', 'Poppins ExtraBold', 'Arial Black', 'Helvetica Black', sans-serif;
    --font-family-body: 'Helvetica Neue', 'Arial', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.4;
    
    /* Layout */
    --border-thick: 6px;
    --border-medium: 4px;
    --border-thin: 2px;
    --panel-angle: -2deg;
    --panel-angle-reverse: 2deg;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family-body);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--solid-black);
    background-color: var(--deep-teal);
    background-image: 
        radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px, 10px 10px;
    background-position: 0 0, 10px 10px;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Pop Art Block Structure with Thick Borders */
.block-panel {
    border: var(--border-thick) solid var(--solid-black);
    background-color: var(--sandy-beige);
    padding: 2rem;
    margin: 1rem 0;
    position: relative;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.3);
}

.block-panel::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: var(--border-thin) solid rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

/* Header with Dynamic Angle */
.header {
    background-color: var(--marigold-yellow);
    border: var(--border-thick) solid var(--solid-black);
    padding: 1rem 0;
    margin: 1rem 0;
    position: relative;
    box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.4);
}

.header::after {
    content: '';
    position: absolute;
    top: var(--border-thick);
    left: var(--border-thick);
    right: var(--border-thick);
    bottom: var(--border-thick);
    border: var(--border-thin) solid rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h1 {
    font-family: var(--font-family-headlines);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--solid-black);
    text-transform: uppercase;
    letter-spacing: -1px;
    margin: 0;
    text-align: center;
}

.logo .tagline {
    font-family: var(--font-family-body);
    font-size: 1rem;
    color: var(--solid-black);
    text-align: center;
    font-weight: bold;
    margin-top: 0.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.nav-menu a {
    font-family: var(--font-family-headlines);
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--solid-black);
    text-decoration: none;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border: var(--border-medium) solid var(--solid-black);
    background-color: var(--sandy-beige);
    display: inline-block;
    transition: all 0.2s ease;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: var(--border-thin) solid rgba(0, 0, 0, 0.2);
}

.nav-menu a:hover {
    background-color: var(--terracotta-orange);
    transform: scale(1.05);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
    background-color: var(--marigold-yellow);
    border: var(--border-thick) solid var(--solid-black);
    padding: 4rem 2rem;
    margin: 2rem 0;
    text-align: center;
    position: relative;
    box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.4);
}

.hero::after {
    content: '';
    position: absolute;
    top: var(--border-thick);
    left: var(--border-thick);
    right: var(--border-thick);
    bottom: var(--border-thick);
    border: var(--border-thin) solid rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-family: var(--font-family-headlines);
    font-size: 4rem;
    font-weight: 900;
    color: var(--solid-black);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-family: var(--font-family-body);
    font-size: 1.25rem;
    color: var(--solid-black);
    max-width: 800px;
    margin: 0 auto 2rem;
    font-weight: bold;
    line-height: 1.6;
}

.cta-primary,
.cta-button,
.cta-secondary {
    font-family: var(--font-family-headlines);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--solid-black);
    text-transform: uppercase;
    background-color: var(--terracotta-orange);
    border: var(--border-medium) solid var(--solid-black);
    padding: 1rem 2rem;
    cursor: pointer;
    display: inline-block;
    transition: all 0.2s ease;
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.3);
    text-decoration: none;
    margin: 0.5rem;
    position: relative;
    z-index: 10;
}

.cta-primary::before,
.cta-button::before,
.cta-secondary::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: var(--border-thin) solid rgba(0, 0, 0, 0.2);
}

.cta-primary:hover,
.cta-button:hover,
.cta-secondary:hover {
    background-color: var(--bold-red);
    transform: scale(1.05);
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.4);
}

/* Pop Art Section Structure */
section {
    padding: 3rem 0;
}

.section-title {
    font-family: var(--font-family-headlines);
    font-size: 3rem;
    font-weight: 900;
    color: var(--solid-black);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: -1px;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.section-subtitle {
    font-family: var(--font-family-body);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--solid-black);
    text-align: center;
    margin-bottom: 2rem;
}

.section-text {
    font-family: var(--font-family-body);
    font-size: 1.125rem;
    color: var(--solid-black);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.highlight {
    background-color: var(--terracotta-orange);
    color: white;
    padding: 0.2rem 0.5rem;
    border: var(--border-thin) solid var(--solid-black);
    font-weight: bold;
}

/* Grid Layout with Pop Art Panels */
.features-grid,
.pillars-grid,
.metrics-grid,
.leaders-grid,
.contact-grid,
.locations-grid,
.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Pop Art Cards */
.feature-card,
.pillar-card,
.metric-card,
.leader-card,
.contact-card,
.location-card,
.support-card,
.advantage-item,
.timeline-phase,
.policy-section {
    background-color: var(--sandy-beige);
    border: var(--border-medium) solid var(--solid-black);
    padding: 2rem;
    position: relative;
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
}

.feature-card::before,
.pillar-card::before,
.metric-card::before,
.leader-card::before,
.contact-card::before,
.location-card::before,
.support-card::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: var(--border-thin) solid rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.feature-card:hover,
.pillar-card:hover,
.metric-card:hover,
.leader-card:hover,
.contact-card:hover,
.location-card:hover,
.support-card:hover {
    transform: rotate(1deg) scale(1.05);
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.4);
    background-color: var(--marigold-yellow);
}

.feature-card h3,
.pillar-card h3,
.metric-card h3,
.leader-card h3,
.contact-card h3,
.location-card h3,
.support-card h3 {
    font-family: var(--font-family-headlines);
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--solid-black);
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-align: center;
}

.feature-card h4,
.pillar-card h4,
.metric-card h4,
.leader-card h4,
.contact-card h4,
.location-card h4,
.support-card h4 {
    font-family: var(--font-family-headlines);
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--solid-black);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.feature-card p,
.pillar-card p,
.metric-card p,
.leader-card p,
.contact-card p,
.location-card p,
.support-card p,
.policy-section p {
    font-family: var(--font-family-body);
    font-size: 1rem;
    color: var(--solid-black);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Pop Art Illustrations */
.pillar-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--terracotta-orange);
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
    display: block;
    font-weight: 900;
}

.pillar-icon.eye {
    content: "👁";
}

.pillar-icon.lock {
    content: "🔒";
}

.pillar-icon.target {
    content: "🎯";
}

.metric-illustration {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--terracotta-orange);
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
    display: block;
    font-weight: 900;
}

/* Lists with Pop Art Styling */
.pillar-card ul,
.leader-card ul,
.timeline-phase ul,
.policy-section ul {
    list-style: none;
    margin: 1rem 0;
}

.pillar-card li,
.leader-card li,
.timeline-phase li,
.policy-section li {
    font-family: var(--font-family-body);
    font-size: 1rem;
    color: var(--solid-black);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.pillar-card li::before,
.leader-card li::before,
.timeline-phase li::before,
.policy-section li::before {
    content: "★";
    position: absolute;
    left: 0;
    color: var(--terracotta-orange);
    font-weight: bold;
}

/* Metric Cards */
.metric-number {
    font-family: var(--font-family-headlines);
    font-size: 3rem;
    font-weight: 900;
    color: var(--bold-red);
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.metric-label {
    font-family: var(--font-family-body);
    font-size: 1rem;
    color: var(--solid-black);
    text-align: center;
    font-weight: bold;
}

/* Testimonial */
.testimonial {
    background-color: var(--sandy-beige);
    border: var(--border-medium) solid var(--solid-black);
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
    text-align: center;
    position: relative;
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.3);
}

.testimonial::after {
    content: '';
    position: absolute;
    top: var(--border-medium);
    left: var(--border-medium);
    right: var(--border-medium);
    bottom: var(--border-medium);
    border: var(--border-thin) solid rgba(0, 0, 0, 0.2);
}

.testimonial blockquote {
    font-family: var(--font-family-body);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--solid-black);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial cite {
    font-family: var(--font-family-headlines);
    font-size: 1.125rem;
    color: var(--solid-black);
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
}

/* Advantage List */
.advantage-list {
    max-width: 800px;
    margin: 2rem auto;
}

.advantage-item {
    font-family: var(--font-family-body);
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0.5rem 0;
    transition: all 0.2s ease;
    position: relative;
}

.advantage-item::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: var(--border-thin) solid rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.advantage-item:hover {
    transform: translateX(10px) rotate(-1deg);
    background-color: var(--marigold-yellow);
}

/* Timeline */
.journey-timeline {
    max-width: 800px;
    margin: 2rem auto;
    position: relative;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 6px;
    background-color: var(--solid-black);
    left: 50%;
    margin-left: -3px;
    z-index: 1;
}

.timeline-phase {
    margin: 1rem 0;
    transition: all 0.2s ease;
    position: relative;
    z-index: 2;
}

.timeline-phase::before {
    content: "";
    position: absolute;
    left: -2rem;
    top: 50%;
    width: 1.5rem;
    height: 1.5rem;
    background-color: var(--bold-red);
    border: var(--border-thin) solid var(--solid-black);
    transform: translateY(-50%) rotate(45deg);
    z-index: 3;
}

.timeline-phase:hover {
    transform: rotate(-1deg) scale(1.02);
    background-color: var(--terracotta-orange);
}

/* Contact Form */
.contact-form-section {
    background-color: var(--sandy-beige);
    border: var(--border-thick) solid var(--solid-black);
    padding: 3rem 2rem;
    margin: 2rem 0;
    position: relative;
    box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.4);
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: var(--border-thin) solid rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    font-family: var(--font-family-headlines);
    font-size: 1rem;
    font-weight: 900;
    color: var(--solid-black);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-family-body);
    font-size: 1rem;
    color: var(--solid-black);
    background-color: white;
    border: var(--border-thin) solid var(--solid-black);
    padding: 0.75rem;
    width: 100%;
    box-shadow: inset 2px 2px 0 rgba(0, 0, 0, 0.1);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bold-red);
    box-shadow: inset 2px 2px 0 rgba(0, 0, 0, 0.2), 0 0 0 2px var(--bold-red);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Contact Icons */
.contact-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--terracotta-orange);
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background-color: var(--terracotta-orange);
    border: var(--border-thick) solid var(--solid-black);
    padding: 3rem 0;
    margin: 2rem 0 0 0;
    position: relative;
    box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.4);
}

.footer::after {
    content: '';
    position: absolute;
    top: var(--border-thick);
    left: var(--border-thick);
    right: var(--border-thick);
    bottom: var(--border-thick);
    border: var(--border-thin) solid rgba(0, 0, 0, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-info h3,
.footer-links a {
    font-family: var(--font-family-headlines);
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--solid-black);
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
}

.footer-info p {
    font-family: var(--font-family-body);
    font-size: 1rem;
    color: var(--solid-black);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--bold-red);
    transform: translateX(5px);
    transition: all 0.2s ease;
}

.footer-trust {
    font-family: var(--font-family-body);
    font-size: 0.875rem;
    color: var(--solid-black);
    font-weight: bold;
}

/* Special Sections */
.results {
    background-color: var(--deep-teal);
}

.results .block-panel {
    background-color: var(--sandy-beige);
}

.cta-section {
    background-color: var(--marigold-yellow);
    border: var(--border-thick) solid var(--solid-black);
    padding: 4rem 2rem;
    margin: 2rem 0;
    text-align: center;
    position: relative;
    box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.4);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: var(--border-thin) solid rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

/* Placeholder for Pop Art Illustrations */
.hero-image-placeholder,
.policy-section img,
.feature-card img,
.pillar-card img {
    background-color: var(--sandy-beige);
    border: var(--border-medium) solid var(--solid-black);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family-headlines);
    font-size: 1rem;
    color: var(--solid-black);
    text-transform: uppercase;
    font-weight: 900;
    margin: 1rem 0;
    position: relative;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
}

.hero-image-placeholder::before,
.policy-section img::before,
.feature-card img::before,
.pillar-card img::before {
    content: "POP ART ILLUSTRATION";
    position: absolute;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .features-grid,
    .pillars-grid,
    .metrics-grid,
    .leaders-grid,
    .contact-grid,
    .locations-grid,
    .support-options {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .timeline-phase::before {
        display: none;
    }
    
    .header,
    .hero,
    .contact-form-section,
    .cta-section,
    .footer {
        transform: none;
    }
    
    .nav-container {
        transform: none;
    }
    
    .journey-timeline::before {
        left: 31px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .cta-primary,
    .cta-button,
    .cta-secondary {
        font-size: 1.1rem;
        padding: 0.75rem 1rem;
    }
    
    .block-panel,
    .feature-card,
    .pillar-card,
    .metric-card,
    .leader-card,
    .contact-card,
    .location-card,
    .support-card,
    .advantage-item,
    .timeline-phase,
    .policy-section {
        padding: 1.5rem;
    }
}
