/* ============================================
   ELEVATE PEDIATRIC THERAPY - WEBSITE STYLES
   Design: "Golden Bubbles" — Whimsical Warmth
   Colors: Warm Amber Gold (#E8A838) primary
   Fonts: Playfair Display + Nunito + Dancing Script
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #E8A838;
    --gold-light: #F5D78E;
    --gold-dark: #C48A20;
    --cream: #FDF8F0;
    --peach: #FFF5EB;
    --charcoal: #2D2A26;
    --brown: #6B5E4F;
    --sage: #7BA68C;
    --coral: #E8785A;
    --white: #FFFFFF;
    --bubble-glow: rgba(232, 168, 56, 0.15);
    --shadow-sm: 0 2px 8px rgba(45, 42, 38, 0.06);
    --shadow-md: 0 4px 20px rgba(45, 42, 38, 0.08);
    --shadow-lg: 0 8px 40px rgba(45, 42, 38, 0.12);
    --radius: 12px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--charcoal);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

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

/* === TYPOGRAPHY === */
.section-script {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-intro {
    font-size: 1.1rem;
    color: var(--brown);
    max-width: 650px;
    margin-bottom: 2.5rem;
}

.center {
    text-align: center;
}

.center.section-intro {
    margin-left: auto;
    margin-right: auto;
}

.light {
    color: var(--white) !important;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    box-shadow: 0 4px 15px rgba(232, 168, 56, 0.3);
}

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(232, 168, 56, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--gold-dark);
    border-color: var(--gold);
}

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

.btn-icon {
    width: 20px;
    height: 20px;
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 240, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(232, 168, 56, 0.1);
    transition: all var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

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

.nav-logo-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.nav-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--charcoal);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--brown);
    position: relative;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all var(--transition);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(253, 248, 240, 0.7) 0%, rgba(253, 248, 240, 0.4) 50%, rgba(253, 248, 240, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 700px;
}

.hero-script {
    font-family: 'Dancing Script', cursive;
    font-size: 1.3rem;
    color: var(--gold-dark);
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.1;
    margin-bottom: 1.25rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.4s;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--brown);
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

.hero .btn {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.8s;
}

/* === FLOATING BUBBLES === */
.bubble {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.bubble-1 {
    width: 120px;
    height: 120px;
    background: rgba(232, 168, 56, 0.1);
    border: 1px solid rgba(232, 168, 56, 0.2);
    top: 20%;
    left: 5%;
    animation: float 10s ease-in-out infinite;
}

.bubble-2 {
    width: 60px;
    height: 60px;
    background: rgba(245, 215, 142, 0.15);
    border: 1px solid rgba(245, 215, 142, 0.3);
    top: 30%;
    right: 10%;
    animation: float 8s ease-in-out infinite 1s;
}

.bubble-3 {
    width: 90px;
    height: 90px;
    background: rgba(232, 168, 56, 0.08);
    border: 1px solid rgba(232, 168, 56, 0.15);
    bottom: 20%;
    left: 15%;
    animation: float 12s ease-in-out infinite 2s;
}

.bubble-4 {
    width: 40px;
    height: 40px;
    background: rgba(123, 166, 140, 0.1);
    border: 1px solid rgba(123, 166, 140, 0.2);
    top: 60%;
    right: 5%;
    animation: float 9s ease-in-out infinite 0.5s;
}

.bubble-5 {
    width: 70px;
    height: 70px;
    background: rgba(232, 168, 56, 0.12);
    border: 1px solid rgba(232, 168, 56, 0.2);
    bottom: 10%;
    right: 20%;
    animation: float 11s ease-in-out infinite 3s;
}

.bubble-6 {
    width: 100px;
    height: 100px;
    background: rgba(245, 215, 142, 0.1);
    border: 1px solid rgba(245, 215, 142, 0.2);
    top: 10%;
    right: 5%;
    animation: float 13s ease-in-out infinite 1.5s;
}

.bubble-7 {
    width: 50px;
    height: 50px;
    background: rgba(232, 168, 56, 0.1);
    border: 1px solid rgba(232, 168, 56, 0.2);
    bottom: 15%;
    left: 8%;
    animation: float 9s ease-in-out infinite 2.5s;
}

.bubble-8 {
    width: 80px;
    height: 80px;
    background: rgba(232, 168, 56, 0.08);
    border: 1px solid rgba(232, 168, 56, 0.15);
    top: 5%;
    left: 3%;
    animation: float 11s ease-in-out infinite;
}

.bubble-9 {
    width: 55px;
    height: 55px;
    background: rgba(123, 166, 140, 0.08);
    border: 1px solid rgba(123, 166, 140, 0.15);
    bottom: 10%;
    right: 8%;
    animation: float 10s ease-in-out infinite 2s;
}

.bubble-10 {
    width: 70px;
    height: 70px;
    background: rgba(245, 215, 142, 0.12);
    border: 1px solid rgba(245, 215, 142, 0.2);
    top: 15%;
    left: 5%;
    animation: float 12s ease-in-out infinite 1s;
}

.bubble-11 {
    width: 45px;
    height: 45px;
    background: rgba(232, 168, 56, 0.1);
    border: 1px solid rgba(232, 168, 56, 0.2);
    bottom: 20%;
    right: 3%;
    animation: float 8s ease-in-out infinite 3s;
}

.bubble-12 {
    width: 90px;
    height: 90px;
    background: rgba(232, 168, 56, 0.08);
    border: 1px solid rgba(232, 168, 56, 0.15);
    top: 20%;
    right: 5%;
    animation: float 14s ease-in-out infinite 0.5s;
}

.bubble-13 {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    top: 15%;
    left: 5%;
    animation: float 10s ease-in-out infinite;
}

.bubble-14 {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    bottom: 10%;
    right: 5%;
    animation: float 12s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(2deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}

/* === ABOUT SECTION === */
.about {
    position: relative;
    padding: 100px 0;
    background: var(--cream);
    overflow: hidden;
}

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

.about-image-col {
    position: relative;
}

.about-image-placeholder {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/5;
}

.about-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-photo-frame {
    position: absolute;
    inset: 20px;
    border: 3px solid var(--gold);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

.about-text-col .section-script {
    font-size: 1.75rem;
}

.about-intro {
    font-size: 1.15rem;
    color: var(--charcoal);
    font-weight: 500;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.about-body {
    font-size: 1rem;
    color: var(--brown);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.credential-badge {
    padding: 6px 16px;
    background: var(--bubble-glow);
    border: 1px solid rgba(232, 168, 56, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-dark);
}

/* === SERVICES SECTION === */
.services {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.services-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.services-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services .container {
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 30px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid rgba(232, 168, 56, 0.08);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(232, 168, 56, 0.2);
}

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

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

.service-desc {
    font-size: 0.95rem;
    color: var(--brown);
    line-height: 1.7;
}

.services-goals {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.goals-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--charcoal);
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.goal-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    background: var(--peach);
}

.goal-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.goal-item p {
    font-size: 0.95rem;
    color: var(--brown);
    line-height: 1.5;
}

/* === INFO SECTION === */
.info {
    position: relative;
    padding: 100px 0;
    background: var(--peach);
    overflow: hidden;
}

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

.info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.info-card-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gold-dark);
    margin-bottom: 0.5rem;
}

.info-card-content {
    font-size: 1.05rem;
    color: var(--charcoal);
    font-weight: 500;
}

.info-areas, .info-assessments {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.info-areas-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.info-areas-text {
    color: var(--brown);
    line-height: 1.7;
}

.assessment-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.assessment-tag {
    padding: 8px 20px;
    background: var(--bubble-glow);
    border: 1px solid rgba(232, 168, 56, 0.25);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-dark);
}

/* === EDUCATION SECTION === */
.education {
    padding: 100px 0;
    background: var(--cream);
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 2rem;
}

.edu-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    border-left: 4px solid var(--gold);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.edu-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.edu-year {
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gold-dark);
    background: var(--bubble-glow);
    padding: 3px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.edu-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.edu-source {
    font-size: 0.85rem;
    color: var(--brown);
    font-style: italic;
}

/* === BLOG SECTION === */
.blog {
    position: relative;
    padding: 100px 0;
    background: var(--peach);
    overflow: hidden;
}

.blog-cta {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.blog-coming {
    font-size: 1.05rem;
    color: var(--brown);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* === CONTACT SECTION === */
.contact {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.contact-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: rgba(45, 42, 38, 0.4);
}

.contact-content {
    position: relative;
    z-index: 2;
}

.contact-intro {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    padding: 30px 20px;
    transition: all var(--transition);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.contact-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.contact-item h3 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.contact-item a, .contact-item p {
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-item a:hover {
    color: var(--gold-light);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.social-links a {
    color: var(--white);
}

.social-links a:hover {
    color: var(--gold-light);
}

/* === FOOTER === */
.footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

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

.footer-logo {
    width: 60px;
    height: 72px;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-family: 'Dancing Script', cursive;
    font-size: 1.2rem;
    color: var(--gold-light);
}

.footer-grid h4 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.footer-nav a,
.footer-contact p,
.footer-social a {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
}

.footer-nav a:hover,
.footer-social a:hover {
    color: var(--gold-light);
}

.footer-compliance {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-bottom: 20px;
}

.footer-compliance p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer-compliance a {
    color: var(--gold-light);
    text-decoration: underline;
}

.footer-compliance a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* === BACK TO TOP === */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
        box-shadow: var(--shadow-md);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .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(5px, -5px);
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image-placeholder {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .goals-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .education-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .service-card {
        padding: 24px 20px;
    }
    
    .about, .services, .info, .education, .blog, .contact {
        padding: 70px 0;
    }
}
