/* -------------------------------------------------------------
 * Theme: MoonPie Kids Workshop Style System
 * Primary: Navy (#103F6B)
 * Accent/Secondary: Yellow/Orange (#F8B036)
 * Background: Soft Cream (#FAF6EE)
 * Supporting: Sky Blue (#84B7E0), Cloud White (#FFFFFF), Green (#4CAF50), Purple (#9C27B0)
 * Fonts: Fredoka (Playful headings), Quicksand (Subheadings), Outfit (Body)
 * ------------------------------------------------------------- */

:root {
    --color-bg: #FAF6EE;
    --color-primary: #103F6B;
    --color-primary-light: #1D4B7A;
    --color-accent: #F8B036;
    --color-accent-dark: #e0921b;
    --color-blue: #84B7E0;
    --color-blue-light: #A5D5F5;
    --color-white: #FFFFFF;
    
    --color-green: #4CAF50;
    --color-purple: #9C27B0;
    
    --font-heading: 'Fredoka', sans-serif;
    --font-sub: 'Quicksand', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    --shadow-sm: 0 4px 10px rgba(16, 63, 107, 0.05);
    --shadow-md: 0 8px 24px rgba(16, 63, 107, 0.1);
    --shadow-lg: 0 16px 40px rgba(16, 63, 107, 0.15);
    
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-round: 50px;
    
    --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* CSS Resets & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg);
    color: var(--color-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    position: relative;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
}

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

/* Starry and Cloudy Space Background Elements */
.space-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.star {
    position: absolute;
    color: var(--color-accent);
    opacity: 0.3;
    user-select: none;
}

.star-1 { top: 15%; left: 5%; font-size: 24px; animation: pulseStar 3s infinite ease-in-out; }
.star-2 { top: 25%; right: 10%; font-size: 18px; animation: pulseStar 4s infinite ease-in-out 1s; }
.star-3 { top: 60%; left: 8%; font-size: 20px; animation: pulseStar 3.5s infinite ease-in-out 0.5s; }
.star-4 { top: 75%; right: 5%; font-size: 26px; animation: pulseStar 4.5s infinite ease-in-out 1.5s; }
.star-5 { top: 45%; left: 50%; font-size: 16px; animation: pulseStar 3.8s infinite ease-in-out; }

.cloud {
    position: absolute;
    color: var(--color-white);
    opacity: 0.5;
    font-size: 60px;
    filter: drop-shadow(0 4px 10px rgba(132, 183, 224, 0.15));
}

.cloud-1 { top: 10%; left: -50px; animation: floatCloud 25s infinite linear; }
.cloud-2 { top: 55%; right: -50px; animation: floatCloudReverse 30s infinite linear; }

@keyframes pulseStar {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.3); opacity: 0.6; }
}

@keyframes floatCloud {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(110vw); }
}

@keyframes floatCloudReverse {
    0% { transform: translateX(100px); }
    100% { transform: translateX(-110vw); }
}

/* Button UI Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 16px;
    padding: 12px 28px;
    border-radius: var(--radius-round);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

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

.btn-sm {
    padding: 8px 18px;
    font-size: 14px;
}

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

.btn-primary:hover {
    background-color: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(248, 176, 54, 0.4);
}

.btn-secondary {
    background-color: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary-light);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    box-shadow: none;
}

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

/* Header & Navigation Styles */
.main-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(250, 246, 238, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid rgba(16, 63, 107, 0.08);
    transition: var(--transition);
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-moon {
    font-size: 32px;
    filter: drop-shadow(0 2px 4px rgba(248, 176, 54, 0.3));
    animation: floatingMoon 4s infinite ease-in-out;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.1;
}

.logo-sub {
    font-family: var(--font-sub);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-accent-dark);
    margin-top: 2px;
}

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

.nav-link {
    font-family: var(--font-sub);
    font-weight: 700;
    color: var(--color-primary);
    font-size: 16px;
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: var(--color-accent);
    transition: var(--transition);
    border-radius: var(--radius-round);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-nav-contact {
    padding: 10px 22px;
    font-size: 15px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--color-primary);
    cursor: pointer;
}

/* Hero Section Styles */
.hero-section {
    padding: 60px 0 80px;
    position: relative;
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 40px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-tagline {
    margin-bottom: 20px;
}

.capsule {
    background-color: rgba(132, 183, 224, 0.15);
    color: var(--color-primary-light);
    font-family: var(--font-sub);
    font-weight: 700;
    padding: 8px 18px;
    border-radius: var(--radius-round);
    font-size: 14px;
    border: 1px solid rgba(16, 63, 107, 0.1);
}

.hero-title {
    font-size: 54px;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.hero-title .highlight {
    color: var(--color-accent-dark);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    background-color: rgba(248, 176, 54, 0.2);
    bottom: 8px;
    left: 0;
    z-index: -1;
    border-radius: var(--radius-round);
}

.hero-description {
    font-size: 18px;
    color: var(--color-primary-light);
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-illustration {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.illustrator-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
}

.hero-svg {
    width: 100%;
    height: auto;
}

/* Animations in Hero Illustration SVG */
@keyframes floatingMoon {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(-3deg); }
}

.animated-rocket {
    animation: floatingRocket 6s infinite ease-in-out;
    transform-origin: 390px 140px;
}

@keyframes floatingRocket {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    50% { transform: translateY(-15px) translateX(15px) rotate(2deg); }
}

.animated-astronaut {
    animation: floatingAstronaut 8s infinite ease-in-out;
}

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

.waving-arm {
    animation: wavingArm 2s infinite ease-in-out;
    transform-origin: 315px 250px;
}

@keyframes wavingArm {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(15deg); }
}

/* Section Common Styles */
section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 60px;
}

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

.sub-title {
    font-family: var(--font-sub);
    font-weight: 700;
    color: var(--color-accent-dark);
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 38px;
    color: var(--color-primary);
    margin-bottom: 18px;
    line-height: 1.25;
}

.section-desc {
    font-size: 17px;
    color: var(--color-primary-light);
}

/* About/Values Section Styles */
.about-section {
    background-color: var(--color-white);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    box-shadow: 0 -10px 40px rgba(16, 63, 107, 0.03);
}

/* Enriched About Grid Layout */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    margin-bottom: 70px;
    align-items: center;
}

.about-intro-content {
    display: flex;
    flex-direction: column;
}

.about-highlight-text {
    font-size: 19px;
    color: var(--color-primary-light);
    margin-bottom: 30px;
    font-weight: 500;
    border-left: 4px solid var(--color-accent);
    padding-left: 20px;
}

.rich-features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.rf-icon {
    min-width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background-color: rgba(132, 183, 224, 0.15);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-sm);
}

.rf-text h4 {
    font-size: 17px;
    margin-bottom: 6px;
    color: var(--color-primary);
}

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

/* Stats/Tecrübe Panels */
.about-stats-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-box {
    background-color: var(--color-bg);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: center;
    border: 2px dashed rgba(16, 63, 107, 0.15);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-3px);
    border-color: var(--color-accent);
    background-color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--color-accent-dark);
    font-weight: 700;
    margin-bottom: 6px;
}

.stat-label {
    font-family: var(--font-sub);
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    border-top: 2px solid rgba(16, 63, 107, 0.05);
    padding-top: 60px;
}

.value-card {
    background-color: var(--color-bg);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 2px solid transparent;
    transition: var(--transition);
}

.value-icon {
    font-size: 32px;
    width: 65px;
    height: 65px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.value-card p {
    font-size: 15px;
    color: var(--color-primary-light);
    margin-bottom: 24px;
    flex-grow: 1;
}

.value-label {
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: var(--radius-round);
}

/* Card Specific Themes (Blue, Yellow, Green, Purple) */
.color-blue .value-icon { background-color: var(--color-blue); }
.color-blue .value-label { background-color: rgba(132, 183, 224, 0.15); color: var(--color-primary-light); }
.color-blue:hover { border-color: var(--color-blue); transform: translateY(-5px); box-shadow: 0 12px 30px rgba(132, 183, 224, 0.15); }

.color-yellow .value-icon { background-color: var(--color-accent); }
.color-yellow .value-label { background-color: rgba(248, 176, 54, 0.15); color: var(--color-accent-dark); }
.color-yellow:hover { border-color: var(--color-accent); transform: translateY(-5px); box-shadow: 0 12px 30px rgba(248, 176, 54, 0.15); }

.color-green .value-icon { background-color: var(--color-green); }
.color-green .value-label { background-color: rgba(76, 175, 80, 0.15); color: var(--color-green); }
.color-green:hover { border-color: var(--color-green); transform: translateY(-5px); box-shadow: 0 12px 30px rgba(76, 175, 80, 0.15); }

.color-purple .value-icon { background-color: var(--color-purple); }
.color-purple .value-label { background-color: rgba(156, 39, 176, 0.15); color: var(--color-purple); }
.color-purple:hover { border-color: var(--color-purple); transform: translateY(-5px); box-shadow: 0 12px 30px rgba(156, 39, 176, 0.15); }

/* Workshops Section Styles */
.workshops-section {
    background-color: var(--color-bg);
}

.workshops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.workshop-card {
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.workshop-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(16, 63, 107, 0.08);
}

/* Fixed Centered Icons inside Workshops cards, preventing badge overlay */
.workshop-image {
    position: relative;
    height: 180px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.inner-icon {
    font-size: 64px;
    color: var(--color-white);
    opacity: 0.9;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.workshop-card:hover .inner-icon {
    transform: scale(1.15) rotate(5deg);
}

.bg-grad-1 { background: linear-gradient(135deg, var(--color-blue), #5C9BD1); }
.bg-grad-2 { background: linear-gradient(135deg, var(--color-accent), #e0921b); }
.bg-grad-3 { background: linear-gradient(135deg, var(--color-purple), #7B1FA2); }
.bg-grad-4 { background: linear-gradient(135deg, var(--color-green), #388E3C); }

/* Move Badge to top-right to avoid overlap with perfectly centered icons */
.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--color-white);
    color: var(--color-primary);
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: var(--radius-round);
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.workshop-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.workshop-info h3 {
    font-size: 19px;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.workshop-info p {
    font-size: 14px;
    color: var(--color-primary-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.workshop-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(16, 63, 107, 0.08);
    padding-top: 16px;
}

.duration {
    font-size: 13px;
    color: var(--color-primary-light);
    font-family: var(--font-sub);
    font-weight: 700;
}

.duration i {
    color: var(--color-accent-dark);
}

/* Call-to-action Banner Box */
.banner-box {
    background: radial-gradient(circle at 90% 10%, rgba(248, 176, 54, 0.15) 0%, transparent 60%), var(--color-primary);
    color: var(--color-white);
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.banner-box h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.banner-box p {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.banner-box .btn-primary {
    background-color: var(--color-accent);
    color: var(--color-primary);
}

.banner-box .btn-primary:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

/* Contact & Map Section Styles */
.contact-section {
    background-color: var(--color-white);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    box-shadow: 0 -10px 40px rgba(16, 63, 107, 0.03);
}

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

.contact-info-panel {
    display: flex;
    flex-direction: column;
}

.panel-title {
    font-size: 34px;
    margin-bottom: 16px;
}

.panel-desc {
    color: var(--color-primary-light);
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.item-icon {
    font-size: 20px;
    color: var(--color-accent-dark);
    margin-top: 2px;
}

.item-text strong {
    font-family: var(--font-sub);
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary);
}

.item-text p {
    font-size: 16px;
    color: var(--color-primary-light);
}

.item-text a:hover {
    color: var(--color-accent-dark);
}

.social-links-area {
    display: flex;
    gap: 14px;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-round);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.05);
}

.social-icon.wa { background-color: #25D366; }
.social-icon.wa:hover { box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4); }

.social-icon.ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%); }
.social-icon.ig:hover { box-shadow: 0 6px 18px rgba(214, 36, 159, 0.4); }

.social-icon.fb { background-color: #1877F2; }
.social-icon.fb:hover { box-shadow: 0 6px 18px rgba(24, 119, 242, 0.4); }

/* Map Design Panel */
.map-panel {
    width: 100%;
}

.map-container {
    height: 420px;
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    border: 3px solid rgba(16, 63, 107, 0.08);
    box-shadow: var(--shadow-md);
}

.map-overlay-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-sm);
    padding: 20px;
    border: 1px solid rgba(16, 63, 107, 0.08);
    box-shadow: var(--shadow-md);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.map-overlay-info i {
    font-size: 26px;
    color: var(--color-accent-dark);
    margin-bottom: 8px;
}

.map-overlay-info h3 {
    font-size: 17px;
    margin-bottom: 4px;
}

.map-overlay-info p {
    font-size: 13px;
    color: var(--color-primary-light);
    margin-bottom: 14px;
}

.map-overlay-info .btn {
    padding: 8px 18px;
    font-size: 13px;
}

/* Footer Section */
.main-footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 40px 0;
    font-family: var(--font-sub);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}

.footer-tagline {
    font-size: 13px;
    opacity: 0.8;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-copy {
    font-size: 12px;
    opacity: 0.6;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

/* Floating WhatsApp Link styling */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--color-white);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 99;
    transition: var(--transition);
}

.floating-wa:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #20BA5A;
}

/* Floating WhatsApp tooltip */
.floating-wa .tooltip-text {
    visibility: hidden;
    width: 140px;
    background-color: var(--color-primary);
    color: var(--color-white);
    text-align: center;
    border-radius: var(--radius-sm);
    padding: 6px 10px;
    position: absolute;
    z-index: 100;
    right: 75px;
    font-family: var(--font-sub);
    font-size: 13px;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transition: opacity 0.3s;
}

.floating-wa .tooltip-text::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--color-primary);
}

.floating-wa:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Media Queries for Responsive Design */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-illustration {
        order: -1;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats-panel {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .map-container {
        height: 350px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--color-bg);
        flex-direction: column;
        gap: 0;
        box-shadow: var(--shadow-md);
        border-bottom: 2px solid rgba(16, 63, 107, 0.08);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out;
    }
    
    .nav-menu.active {
        max-height: 350px;
    }
    
    .nav-link {
        width: 100%;
        padding: 16px 24px;
        border-bottom: 1px solid rgba(16, 63, 107, 0.04);
        display: block;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .btn-nav-contact {
        width: calc(100% - 48px);
        margin: 16px 24px 24px;
    }
    
    .hero-actions {
        justify-content: center;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .banner-box {
        padding: 36px 24px;
    }
    
    .banner-box h3 {
        font-size: 22px;
    }
}
