/* =====================================================
   BÖHLER MÖWENNEST - MAIN STYLESHEET
   Responsive Design für alle Bildschirmgrößen
   ===================================================== */

/* =====================================================
   CSS VARIABLES & RESET
   ===================================================== */
:root {
    /* Colors */
    --orange: #E07B39;
    --orange-dark: #c66a2f;
    --sand: #F5E6D3;
    --ocean: #2D6A7F;
    --cream: #FDF8F3;
    --text-dark: #2C3E50;
    --text-light: #6B7B8C;
    --success: #5B8C5A;
    --white: #ffffff;
    --gray-100: #f7f7f7;
    --gray-200: #e5e5e5;
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Caveat', cursive;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px;
    --section-padding-mobile: 50px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

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

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

a {
    color: inherit;
    text-decoration: none;
}

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

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

.text-orange { color: var(--orange); }
.text-accent { font-family: var(--font-accent); }

/* =====================================================
   LAYOUT
   ===================================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding) 0;
}

.section-alt {
    background: var(--sand);
}

.section-title {
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 48px;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(224, 123, 57, 0.3);
}

.btn-secondary {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.25);
}

.btn-large {
    padding: 18px 36px;
    font-size: 16px;
}

/* =====================================================
   HEADER & NAVIGATION
   ===================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition);
}

.header.scrolled .logo {
    color: var(--text-dark);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    transition: var(--transition);
    position: relative;
}

.header.scrolled .nav-link {
    color: var(--text-dark);
}

.nav-link:hover {
    color: var(--orange);
}

.nav-link.active {
    color: var(--orange);
}

.nav-link-cta {
    background: var(--orange);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 6px;
}

.nav-link-cta:hover {
    background: var(--orange-dark);
    color: var(--white) !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.header.scrolled .mobile-menu-toggle span {
    background: var(--text-dark);
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(44, 62, 80, 0.7),
        rgba(44, 62, 80, 0.5),
        rgba(44, 62, 80, 0.8)
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-badge svg {
    color: #fbbf24;
}

.hero-title {
    color: var(--white);
    margin-bottom: 16px;
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--sand);
    margin-bottom: 32px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 8px;
    color: var(--white);
    font-size: 14px;
}

.hero-feature svg {
    color: var(--orange);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* =====================================================
   INFO BAR
   ===================================================== */
.info-bar {
    background: var(--ocean);
    padding: 24px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--white);
    font-weight: 500;
    font-size: 14px;
}

.info-item svg {
    color: var(--sand);
    flex-shrink: 0;
}

/* =====================================================
   TEASER CARDS
   ===================================================== */
.teaser-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.teaser-card {
    display: block;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.teaser-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.teaser-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.teaser-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.teaser-content {
    padding: 28px;
}

.teaser-badge {
    display: inline-block;
    background: rgba(224, 123, 57, 0.1);
    color: var(--orange);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.teaser-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.teaser-text {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.7;
}

.teaser-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--orange);
    font-weight: 600;
    font-size: 14px;
}

.teaser-link svg {
    transition: var(--transition);
}

.teaser-card:hover .teaser-link svg {
    transform: translateX(4px);
}

/* =====================================================
   HIGHLIGHTS
   ===================================================== */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.highlight-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.highlight-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(224, 123, 57, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
}

.highlight-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.highlight-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-card blockquote {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.5;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-name {
    font-weight: 600;
    color: var(--orange);
}

.author-year {
    font-size: 14px;
    color: var(--text-light);
}

.testimonial-source {
    text-align: center;
    margin-top: 32px;
    font-size: 14px;
    color: var(--text-light);
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.section-cta {
    background: linear-gradient(135deg, var(--ocean), #1e4d5c);
    color: var(--white);
    text-align: center;
}

.cta-title {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-text {
    opacity: 0.9;
    margin-bottom: 32px;
    font-size: 18px;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-links nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: var(--transition);
}

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

.footer-contact p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.7;
}

.footer-hours {
    margin-top: 8px;
    color: var(--orange) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.footer-source span {
    color: var(--orange);
}

/* =====================================================
   PAGE HEADER (für Unterseiten)
   ===================================================== */
.page-header {
    background: linear-gradient(135deg, var(--text-dark), #1a252f);
    padding: 120px 20px 60px;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 16px;
}

.page-header p {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--orange);
}

.breadcrumb span {
    color: rgba(255,255,255,0.5);
}

/* =====================================================
   CONTENT SECTIONS
   ===================================================== */
.content-section {
    padding: var(--section-padding) 0;
}

.content-section-alt {
    background: var(--sand);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-grid-reverse {
    direction: rtl;
}

.content-grid-reverse > * {
    direction: ltr;
}

.content-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.content-image img {
    width: 100%;
    height: auto;
}

/* =====================================================
   FEATURE LISTS
   ===================================================== */
.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(91, 140, 90, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(91, 140, 90, 0.2);
}

.feature-item.not-allowed {
    background: rgba(239, 68, 68, 0.05);
    border-color: rgba(239, 68, 68, 0.2);
}

.feature-item svg {
    flex-shrink: 0;
}

.feature-item.allowed svg {
    color: var(--success);
}

.feature-item.not-allowed svg {
    color: #ef4444;
}

/* =====================================================
   PRICING
   ===================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pricing-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.pricing-icon {
    width: 52px;
    height: 52px;
    background: rgba(224, 123, 57, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    flex-shrink: 0;
}

.pricing-label {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.pricing-value {
    font-weight: 600;
    font-size: 16px;
}

/* Accordion */
.accordion {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 600px;
    margin: 40px auto 0;
}

.accordion-header {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: var(--transition);
}

.accordion-header:hover {
    background: var(--gray-100);
}

.accordion-icon {
    transition: var(--transition);
}

.accordion.open .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion.open .accordion-content {
    max-height: 500px;
}

.accordion-inner {
    padding: 0 24px 24px;
}

.accordion-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
}

.accordion-row:last-child {
    border-bottom: none;
}

/* =====================================================
   LOCATION PAGE
   ===================================================== */
.location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.location-card {
    background: var(--sand);
    border-radius: 16px;
    padding: 28px;
}

.location-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.location-card h3 svg {
    color: var(--orange);
}

.distance-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.distance-row:last-child {
    border-bottom: none;
}

.activity-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.activity-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(45, 106, 127, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
}

.activity-tag svg {
    color: var(--ocean);
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-form {
    background: var(--sand);
    border-radius: 16px;
    padding: 40px;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--orange);
}

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

/* Contact Info */
.contact-info {
    background: var(--ocean);
    border-radius: 16px;
    padding: 40px;
    color: var(--white);
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 8px;
}

.contact-info .subtitle {
    opacity: 0.8;
    margin-bottom: 28px;
}

.contact-details {
    margin-bottom: 28px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-detail svg {
    color: var(--sand);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-detail strong {
    display: block;
    margin-bottom: 4px;
}

.contact-detail span {
    opacity: 0.8;
    font-size: 14px;
}

.contact-quote {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 24px;
}

.contact-quote p {
    font-family: var(--font-accent);
    font-size: 18px;
    font-style: italic;
    line-height: 1.6;
}

/* =====================================================
   GALLERY GRID
   ===================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 62, 80, 0.7), transparent);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-weight: 600;
}

/* =====================================================
   LEGAL PAGES (Impressum, Datenschutz)
   ===================================================== */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin: 40px 0 16px;
}

.legal-content h3 {
    font-size: 1.125rem;
    margin: 24px 0 12px;
}

.legal-content p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

/* Large Desktop (> 1200px) - Default styles above */

/* Desktop (1024px - 1200px) */
@media (max-width: 1200px) {
    .teaser-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 24px 24px;
        gap: 0;
        transition: right 0.3s ease;
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    }
    
    .nav.open {
        right: 0;
    }
    
    .nav-link {
        color: var(--text-dark) !important;
        padding: 16px 0;
        width: 100%;
        border-bottom: 1px solid var(--gray-200);
    }
    
    .nav-link-cta {
        margin-top: 16px;
        text-align: center;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .teaser-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-grid-reverse {
        direction: ltr;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Large (640px - 767px) */
@media (max-width: 767px) {
    :root {
        --section-padding: 50px;
    }
    
    .section-subtitle {
        margin-bottom: 32px;
    }
    
    .hero {
        padding: 100px 16px 60px;
    }
    
    .hero-features {
        gap: 12px;
    }
    
    .hero-feature {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .info-item {
        font-size: 13px;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form,
    .contact-info {
        padding: 28px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}

/* Mobile Small (< 480px) */
@media (max-width: 479px) {
    .container {
        padding: 0 16px;
    }
    
    .header .container {
        height: 60px;
    }
    
    .logo {
        font-size: 16px;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 14px 28px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .teaser-content {
        padding: 20px;
    }
    
    .teaser-title {
        font-size: 1.25rem;
    }
    
    .highlight-card {
        padding: 24px 20px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .testimonial-card blockquote {
        font-size: 1.1rem;
    }
    
    .page-header {
        padding: 100px 16px 40px;
    }
    
    .pricing-card {
        padding: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .header,
    .hero-buttons,
    .section-cta,
    .footer {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
    
    .section {
        padding: 30px 0;
    }
}
