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

html {
    scroll-behavior: smooth;
}

:root {
    /* Primary Colors */
    --primary: 220 85% 57%; /* #2563EB */
    --primary-dark: 220 85% 47%; /* #1D4ED8 */
    --primary-light: 220 85% 67%; /* #3B82F6 */
    
    /* Secondary Colors */
    --secondary: 280 65% 60%; /* #A855F7 */
    --accent: 45 93% 58%; /* #F59E0B */
    
    /* Neutral Colors */
    --background: 210 11% 98%; /* #F8FAFC */
    --surface: 0 0% 100%; /* #FFFFFF */
    --surface-alt: 210 11% 96%; /* #F1F5F9 */
    --border: 215 25% 88%; /* #E2E8F0 */
    --border-light: 215 16% 92%; /* #F1F5F9 */
    
    /* Text Colors */
    --text-primary: 215 25% 12%; /* #0F172A */
    --text-secondary: 215 16% 47%; /* #64748B */
    --text-muted: 215 16% 57%; /* #94A3B8 */
    --text-light: 0 0% 100%; /* #FFFFFF */
    
    /* Status Colors */
    --success: 142 71% 45%; /* #10B981 */
    --warning: 45 93% 58%; /* #F59E0B */
    --error: 0 84% 60%; /* #EF4444 */
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Typography */
    --font-family-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-family-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --container-padding: 1rem;
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
}

body {
    font-family: var(--font-family-base);
    line-height: 1.6;
    color: hsl(var(--text-primary));
    background-color: hsl(var(--background));
    font-size: 16px;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    font-weight: 600;
    line-height: 1.3;
    color: hsl(var(--text-primary));
    margin-bottom: 0.5em;
}

h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

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

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: hsl(var(--text-secondary));
}

/* Links */
a {
    color: hsl(var(--primary));
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover, a:focus {
    color: hsl(var(--primary-dark));
    text-decoration: underline;
}

/* Lists */
ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
    color: hsl(var(--text-secondary));
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
    min-height: 2.75rem;
}

.btn-primary {
    background-color: hsl(var(--primary));
    color: hsl(var(--text-light));
    border-color: hsl(var(--primary));
}

.btn-primary:hover, .btn-primary:focus {
    background-color: hsl(var(--primary-dark));
    border-color: hsl(var(--primary-dark));
    color: hsl(var(--text-light));
    text-decoration: none;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: hsl(var(--surface));
    color: hsl(var(--text-primary));
    border-color: hsl(var(--border));
}

.btn-secondary:hover, .btn-secondary:focus {
    background-color: hsl(var(--surface-alt));
    border-color: hsl(var(--border));
    color: hsl(var(--text-primary));
    text-decoration: none;
}

.btn-outline {
    background-color: transparent;
    color: hsl(var(--primary));
    border-color: hsl(var(--primary));
}

.btn-outline:hover, .btn-outline:focus {
    background-color: hsl(var(--primary));
    color: hsl(var(--text-light));
    text-decoration: none;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: hsl(var(--surface) / 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid hsl(var(--border-light));
    z-index: 1000;
    transition: all var(--transition-normal);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1.25rem;
    color: hsl(var(--text-primary));
    text-decoration: none;
}

.nav-brand:hover {
    text-decoration: none;
}

.logo {
    width: 2.5rem;
    height: 2.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-menu a {
    color: hsl(var(--text-secondary));
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a:focus,
.nav-menu a.active {
    color: hsl(var(--primary));
    text-decoration: none;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background-color: hsl(var(--primary));
    border-radius: 1px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.25rem;
}

.nav-toggle span {
    width: 1.5rem;
    height: 2px;
    background-color: hsl(var(--text-primary));
    transition: all var(--transition-fast);
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, hsl(var(--primary) / 0.05) 0%, hsl(var(--secondary) / 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: -1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, hsl(var(--text-primary)), hsl(var(--primary)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: hsl(var(--text-secondary));
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-icon {
    width: 20rem;
    height: 20rem;
    filter: drop-shadow(0 10px 30px hsl(var(--primary) / 0.2));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: hsl(var(--surface));
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.service-card {
    background-color: hsl(var(--surface));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--secondary)));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

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

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: hsl(var(--primary) / 0.2);
}

.service-card.featured {
    border-color: hsl(var(--primary));
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    color: hsl(var(--primary));
}

.service-card h3 {
    margin-bottom: 1rem;
    color: hsl(var(--text-primary));
}

.service-card p {
    margin-bottom: 1.5rem;
}

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

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

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

.service-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(var(--primary));
    padding: 1rem;
    background-color: hsl(var(--primary) / 0.1);
    border-radius: var(--radius-md);
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: hsl(var(--surface-alt));
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(var(--primary));
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: hsl(var(--text-secondary));
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-card {
    background-color: hsl(var(--surface));
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border-left: 4px solid hsl(var(--primary));
}

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

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: hsl(var(--surface));
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.testimonial-card {
    background-color: hsl(var(--surface));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all var(--transition-normal);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -1rem;
    left: 2rem;
    font-size: 4rem;
    color: hsl(var(--primary) / 0.2);
    font-family: Georgia, serif;
}

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

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-stars img {
    width: 1rem;
    height: 1rem;
    filter: invert(82%) sepia(84%) saturate(1447%) hue-rotate(359deg) brightness(102%) contrast(97%);
}

.testimonial-author {
    margin-top: 1.5rem;
    border-top: 1px solid hsl(var(--border));
    padding-top: 1rem;
}

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

.testimonial-author span {
    color: hsl(var(--text-muted));
    font-size: 0.875rem;
}

/* Newsletter Section */
.newsletter {
    padding: 4rem 0;
    background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--primary-dark)) 100%);
    color: hsl(var(--text-light));
}

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

.newsletter h2 {
    color: hsl(var(--text-light));
    margin-bottom: 1rem;
}

.newsletter p {
    color: hsl(var(--text-light) / 0.9);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.form-group {
    flex: 1;
    min-width: 250px;
    display: flex;
    gap: 1rem;
}

.form-group input[type="email"] {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-group input[type="email"]:focus {
    outline: none;
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 3px hsl(var(--primary) / 0.1);
}

.form-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    text-align: center;
    display: none;
}

.form-message.success {
    background-color: hsl(var(--success) / 0.1);
    border: 1px solid hsl(var(--success));
    color: hsl(var(--success));
}

.form-message.error {
    background-color: hsl(var(--error) / 0.1);
    border: 1px solid hsl(var(--error));
    color: hsl(var(--error));
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: hsl(var(--surface-alt));
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 2rem;
    height: 2rem;
    color: hsl(var(--primary));
    margin-top: 0.25rem;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: hsl(var(--text-primary));
}

.contact-item p {
    color: hsl(var(--text-secondary));
    margin: 0;
}

.contact-form {
    background-color: hsl(var(--surface));
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all var(--transition-fast);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 3px hsl(var(--primary) / 0.1);
}

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

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 0;
    background-color: hsl(var(--surface));
}

.why-choose-us h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    background-color: hsl(var(--surface-alt));
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
    border: 1px solid hsl(var(--border));
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    color: hsl(var(--primary));
}

/* Success Stories Section */
.success-stories {
    padding: 5rem 0;
    background-color: hsl(var(--surface-alt));
}

.success-stories h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.story-card {
    background-color: hsl(var(--surface));
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid hsl(var(--border));
    transition: all var(--transition-normal);
    text-align: center;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.story-icon {
    width: 3rem;
    height: 3rem;
    color: hsl(var(--primary));
    margin: 0 auto;
}

.story-author {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid hsl(var(--border));
}

.story-author strong {
    display: block;
    color: hsl(var(--text-primary));
    margin-bottom: 0.25rem;
}

.story-author span {
    color: hsl(var(--text-muted));
    font-size: 0.875rem;
}

/* Programs Comparison Section */
.programs-comparison {
    padding: 5rem 0;
    background-color: hsl(var(--surface));
}

.programs-comparison h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.program-column {
    background-color: hsl(var(--surface));
    border: 2px solid hsl(var(--border));
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
}

.program-column.featured {
    border-color: hsl(var(--primary));
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.program-column.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: hsl(var(--primary));
    color: hsl(var(--text-light));
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
}

.program-column:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.program-column.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.program-header {
    margin-bottom: 2rem;
}

.program-header h3 {
    margin-bottom: 1rem;
    color: hsl(var(--text-primary));
}

.program-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(var(--primary));
    margin-bottom: 1rem;
}

.program-price span {
    font-size: 1rem;
    font-weight: 400;
    color: hsl(var(--text-secondary));
}

.program-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.program-features li {
    padding: 0.75rem 0;
    color: hsl(var(--text-secondary));
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid hsl(var(--border-light));
}

.program-features li:last-child {
    border-bottom: none;
}

.program-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(var(--success));
    font-weight: bold;
}

/* Thank You Page Styles */
.thank-you-section {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, hsl(var(--primary) / 0.05) 0%, hsl(var(--secondary) / 0.05) 100%);
    min-height: 80vh;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.success-icon {
    width: 5rem;
    height: 5rem;
    color: hsl(var(--success));
    filter: drop-shadow(0 8px 16px hsl(var(--success) / 0.2));
}

.response-timeline {
    margin: 4rem 0;
    background-color: hsl(var(--surface));
    padding: 3rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    text-align: left;
}

.response-timeline h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.timeline-steps {
    display: grid;
    gap: 2rem;
}

.timeline-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: center;
}

.step-icon {
    width: 3rem;
    height: 3rem;
    background-color: hsl(var(--primary) / 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-svg {
    width: 1.5rem;
    height: 1.5rem;
    color: hsl(var(--primary));
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: hsl(var(--text-primary));
}

.step-content p {
    margin: 0;
    color: hsl(var(--text-secondary));
}

.immediate-resources {
    margin: 4rem 0;
}

.immediate-resources h2 {
    margin-bottom: 2rem;
}

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

.resource-card {
    background-color: hsl(var(--surface));
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid hsl(var(--border));
    text-align: center;
    transition: all var(--transition-normal);
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.resource-icon {
    width: 3rem;
    height: 3rem;
    color: hsl(var(--primary));
    margin: 0 auto 1rem;
}

.contact-reminder {
    background-color: hsl(var(--surface));
    padding: 3rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    margin: 4rem 0;
}

.contact-reminder h2 {
    margin-bottom: 1rem;
}

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

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-method .contact-icon {
    width: 2rem;
    height: 2rem;
    color: hsl(var(--primary));
}

.contact-method div {
    flex: 1;
}

.contact-method strong {
    display: block;
    color: hsl(var(--text-primary));
    margin-bottom: 0.25rem;
}

.contact-method span {
    color: hsl(var(--text-secondary));
}

.business-hours {
    text-align: center;
    font-style: italic;
    color: hsl(var(--text-muted));
    margin-top: 1rem;
}

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

.social-follow {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid hsl(var(--border));
}

.social-follow h3 {
    margin-bottom: 0.5rem;
}

.social-follow p {
    margin-bottom: 2rem;
    color: hsl(var(--text-secondary));
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: hsl(var(--surface-alt));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius-md);
    text-decoration: none;
    color: hsl(var(--text-secondary));
    transition: all var(--transition-fast);
}

.social-link:hover {
    background-color: hsl(var(--primary));
    color: hsl(var(--text-light));
    text-decoration: none;
    transform: translateY(-2px);
}

.social-link img {
    width: 1.25rem;
    height: 1.25rem;
}

.newsletter-preferences {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid hsl(var(--border));
    text-align: left;
}

.newsletter-preferences h3 {
    text-align: center;
    margin-bottom: 1rem;
}

.newsletter-preferences p {
    text-align: center;
    margin-bottom: 2rem;
    color: hsl(var(--text-secondary));
}

.newsletter-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    background-color: hsl(var(--surface));
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid hsl(var(--border));
}

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

.info-item strong {
    display: block;
    color: hsl(var(--text-primary));
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Footer */
.footer {
    background-color: hsl(var(--text-primary));
    color: hsl(var(--text-light));
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: hsl(var(--text-light));
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-section p {
    color: hsl(var(--text-light) / 0.8);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-section ul li a {
    color: hsl(var(--text-light) / 0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-section ul li a:hover,
.footer-section ul li a.active {
    color: hsl(var(--primary-light));
    text-decoration: none;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand .logo {
    width: 2rem;
    height: 2rem;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: hsl(var(--text-light) / 0.1);
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background-color: hsl(var(--primary));
    transform: translateY(-2px);
}

.social-links img {
    width: 1.25rem;
    height: 1.25rem;
    filter: invert(1);
}

.footer-bottom {
    border-top: 1px solid hsl(var(--text-light) / 0.2);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: hsl(var(--text-light) / 0.6);
    margin: 0;
    font-size: 0.875rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: hsl(var(--surface));
    border-top: 1px solid hsl(var(--border));
    box-shadow: var(--shadow-xl);
    padding: 1.5rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.cookie-content h3 {
    margin-bottom: 0.5rem;
    color: hsl(var(--text-primary));
}

.cookie-content p {
    margin-bottom: 1rem;
    color: hsl(var(--text-secondary));
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: hsl(var(--text-primary) / 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    padding: 1rem;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background-color: hsl(var(--surface));
    border-radius: var(--radius-xl);
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-content h3 {
    margin-bottom: 1.5rem;
    color: hsl(var(--text-primary));
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius-md);
}

.cookie-category label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: hsl(var(--text-primary));
    cursor: pointer;
}

.cookie-category input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
}

.cookie-category p {
    margin: 0.5rem 0 0 2rem;
    font-size: 0.875rem;
    color: hsl(var(--text-secondary));
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

/* Thank You Page */
.thank-you-section {
    padding: 8rem 0 4rem;
    background-color: hsl(var(--surface-alt));
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.success-icon {
    width: 5rem;
    height: 5rem;
    color: hsl(var(--success));
    margin: 0 auto;
}

.thank-you-content h1 {
    color: hsl(var(--text-primary));
    margin-bottom: 1rem;
}

.next-steps {
    margin: 3rem 0;
}

.next-steps h2 {
    margin-bottom: 2rem;
    color: hsl(var(--text-primary));
}

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

.step-card {
    background-color: hsl(var(--surface));
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: hsl(var(--primary));
    color: hsl(var(--text-light));
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-card h3 {
    color: hsl(var(--text-primary));
    margin-bottom: 1rem;
}

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

.social-follow {
    background-color: hsl(var(--surface));
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.social-follow h3 {
    color: hsl(var(--text-primary));
    margin-bottom: 1.5rem;
}

.social-follow .social-links {
    justify-content: center;
    margin: 0;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background-color: hsl(var(--surface-alt));
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-fast);
    color: hsl(var(--text-primary));
    width: auto;
    height: auto;
}

.social-link:hover {
    background-color: hsl(var(--primary));
    color: hsl(var(--text-light));
    text-decoration: none;
    transform: translateY(-2px);
}

.social-link img {
    width: 1.25rem;
    height: 1.25rem;
}

.social-link span {
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-icon {
        width: 15rem;
        height: 15rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: hsl(var(--surface));
        border-top: 1px solid hsl(var(--border));
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .form-group {
        width: 100%;
        max-width: 400px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-modal-buttons {
        flex-direction: column;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-follow .social-links {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero-icon {
        width: 12rem;
        height: 12rem;
    }
    
    .service-card,
    .testimonial-card,
    .about-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .cookie-modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .cookie-banner,
    .cookie-modal,
    .nav-toggle {
        display: none !important;
    }
    
    .hero {
        padding-top: 2rem;
    }
    
    * {
        box-shadow: none !important;
    }
    
    a {
        text-decoration: underline;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-icon {
        animation: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --border: 0 0% 0%;
        --text-secondary: 0 0% 20%;
    }
}

/* Focus Styles for Accessibility */
.btn:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid hsl(var(--primary));
    outline-offset: 2px;
}

/* Skip Link for Screen Readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: hsl(var(--surface));
    color: hsl(var(--text-primary));
    padding: 8px;
    text-decoration: none;
    z-index: 100;
    border-radius: var(--radius-sm);
}

.skip-link:focus {
    top: 6px;
}
