/* =============================================
   Happy Smiles Pediatric Dentistry
   Pediatric Demo Site Styles
   ============================================= */

:root {
    --primary: #6366F1;        /* Friendly purple */
    --primary-dark: #4F46E5;
    --secondary: #F472B6;      /* Playful pink */
    --accent: #34D399;         /* Fresh green */
    --yellow: #FBBF24;         /* Cheerful yellow */
    --orange: #FB923C;         /* Warm orange */
    
    --dark: #1E293B;
    --text: #334155;
    --text-light: #64748B;
    --light: #F8FAFC;
    --white: #FFFFFF;
    --border: #E2E8F0;
    
    --font: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

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

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    background: transparent;
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    border: 2px solid var(--primary);
    transition: var(--transition);
    cursor: pointer;
}

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

.btn-white {
    display: inline-block;
    padding: 16px 32px;
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    display: inline-block;
    padding: 16px 32px;
    background: transparent;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    border: 2px solid var(--white);
    transition: var(--transition);
}

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

.btn-nav {
    padding: 12px 24px;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    border-radius: 50px;
}

.btn-nav:hover {
    background: var(--primary-dark);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 16px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-menu a {
    font-weight: 600;
    color: var(--text);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #EEF2FF 0%, #FCE7F3 50%, #FEF3C7 100%);
    overflow: hidden;
}

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

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.hero h1 {
    margin-bottom: 20px;
    color: var(--dark);
}

.hero p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text);
}

.trust-icon {
    color: var(--yellow);
    font-size: 1.25rem;
}

.hero-image-placeholder {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 24px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    box-shadow: var(--shadow-lg);
}

/* Welcome Section */
.welcome {
    padding: 80px 0;
    margin-top: -40px;
}

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

.welcome-card {
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.welcome-card:hover {
    transform: translateY(-8px);
}

.welcome-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.welcome-card h3 {
    margin-bottom: 12px;
    color: var(--dark);
}

.welcome-card p {
    color: var(--text-light);
    margin: 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.section-label {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #EEF2FF, #FCE7F3);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.125rem;
    margin: 0;
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
    background: var(--light);
}

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

.service-card {
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 16px;
}

.service-link {
    color: var(--primary);
    font-weight: 700;
}

.service-link:hover {
    color: var(--primary-dark);
}

.services-cta {
    text-align: center;
    margin-top: 48px;
}

/* Why Us */
.why-us {
    padding: 80px 0;
}

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

.why-content .section-label {
    margin-bottom: 16px;
}

.why-content h2 {
    margin-bottom: 16px;
}

.why-intro {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-item {
    display: flex;
    gap: 16px;
}

.why-check {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--accent), #10B981);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.why-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--dark);
}

.why-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9375rem;
}

.why-image-placeholder {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 24px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    box-shadow: var(--shadow-lg);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #EEF2FF 0%, #FCE7F3 100%);
}

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

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.testimonial-stars {
    color: var(--yellow);
    font-size: 1.25rem;
    margin-bottom: 16px;
    letter-spacing: 4px;
}

.testimonial-card > p {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--dark);
}

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

/* CTA */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    text-align: center;
}

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

.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 32px;
}

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

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

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

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

.footer-brand .logo-text {
    background: linear-gradient(135deg, #A5B4FC, #F9A8D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: #94A3B8;
    margin: 0;
}

.footer h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: #94A3B8;
}

.footer ul li a:hover {
    color: var(--white);
}

.footer-contact p {
    color: #94A3B8;
    margin-bottom: 8px;
}

.footer-contact a {
    color: #94A3B8;
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #334155;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #64748B;
    font-size: 0.875rem;
    margin: 0;
}

.demo-notice a {
    color: var(--secondary);
}

.demo-notice a:hover {
    color: #F9A8D4;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .hero-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image-placeholder,
    .why-image-placeholder {
        height: 300px;
    }
    
    .welcome-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-white,
    .btn-outline {
        width: 100%;
        text-align: center;
    }
}
/* =============================================
   Additional Styles for Inner Pages
   Append to style.css
   ============================================= */

/* Page Header */
.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #EEF2FF 0%, #FCE7F3 50%, #FEF3C7 100%);
    text-align: center;
}

.page-header h1 {
    margin-bottom: 16px;
}

.page-header > .container > p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Full Page */
.services-full {
    padding: 80px 0;
}

.service-detail {
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail.alt {
    background: var(--light);
    margin: 0 -24px;
    padding: 60px 24px;
}

.service-detail-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-detail-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-detail-content h2 {
    margin-bottom: 20px;
}

.service-detail-content h4 {
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--dark);
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    border-bottom: 1px solid var(--border);
}

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

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* About Page */
.about-story {
    padding: 80px 0;
}

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

.story-image-placeholder {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 24px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
}

.story-content h2 {
    margin-bottom: 20px;
}

/* Team Section */
.team {
    padding: 80px 0;
    background: var(--light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.team-card {
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
}

.team-photo-placeholder {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
}

.team-card h3 {
    margin-bottom: 4px;
}

.team-title {
    color: var(--primary);
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.team-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin: 0;
}

/* Values Section */
.values {
    padding: 80px 0;
}

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

.value-card {
    text-align: center;
    padding: 32px 24px;
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

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

.value-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin: 0;
}

/* Office Tour */
.office-tour {
    padding: 80px 0;
    background: var(--light);
}

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

.tour-image-placeholder {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 16px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info h2 {
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 32px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--light);
    border-radius: 12px;
}

.contact-card-icon {
    font-size: 1.5rem;
}

.contact-card h4 {
    margin-bottom: 4px;
    font-size: 1rem;
}

.contact-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9375rem;
}

.contact-card a {
    color: var(--primary);
}

.office-hours h4 {
    margin-bottom: 16px;
}

.office-hours ul {
    list-style: none;
}

.office-hours li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9375rem;
}

.office-hours li:last-child {
    border-bottom: none;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--light);
    padding: 40px;
    border-radius: 24px;
}

.contact-form-wrapper h2 {
    margin-bottom: 8px;
}

.contact-form-wrapper > p {
    color: var(--text-light);
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9375rem;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-family: var(--font);
    font-size: 1rem;
    transition: var(--transition);
}

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

.contact-form .btn-primary {
    margin-top: 8px;
}

/* Map Section */
.map-section {
    height: 400px;
}

.map-placeholder {
    height: 100%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-weight: 600;
}

/* Parents Page */
.parent-section {
    padding: 80px 0;
}

.parent-section.alt-bg {
    background: var(--light);
}

.parent-content {
    max-width: 900px;
    margin: 0 auto;
}

.parent-content h2 {
    margin-bottom: 16px;
}

.parent-content > p {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 40px;
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.tip-card {
    background: var(--white);
    padding: 28px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.tip-number {
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 16px;
}

.tip-card h4 {
    margin-bottom: 8px;
}

.tip-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin: 0;
}

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.timeline-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.timeline-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.timeline-content h4 {
    margin-bottom: 4px;
}

.timeline-content p {
    color: var(--text-light);
    margin: 0;
}

/* Age Cards */
.age-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.age-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.age-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 20px;
    color: var(--white);
}

.age-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.age-header h4 {
    color: var(--white);
    margin: 0;
}

.age-tips {
    list-style: none;
    padding: 24px;
}

.age-tips li {
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    font-size: 0.9375rem;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.age-tips li:last-child {
    border-bottom: none;
}

.age-tips li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.info-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.info-card h4 {
    margin-bottom: 16px;
    color: var(--primary);
}

.info-card p {
    color: var(--text-light);
}

.simple-list {
    list-style: none;
    margin: 16px 0;
}

.simple-list li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text);
}

.simple-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--white);
    padding: 28px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.faq-item h4 {
    margin-bottom: 12px;
    color: var(--dark);
}

.faq-item p {
    color: var(--text-light);
    margin: 0;
}

/* Responsive - Inner Pages */
@media (max-width: 900px) {
    .story-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid,
    .age-tabs {
        grid-template-columns: 1fr;
    }
    
    .values-grid,
    .tour-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .tips-grid,
    .values-grid,
    .tour-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
}
