/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    /* Colors */
    --col-blue-light: #DDF3F9;
    --col-blue-dark: #6CA5B1;
    --col-pink-light: #F3C5D6;
    --col-pink-dark: #D67A9D;
    --col-text-main: #555555;
    --col-text-heading: #333333;
    --col-white: #ffffff;
    --col-logo-blue: #00205B; 
    --col-logo-purple: #6A5ACD; 
    
    /* Typography */
    --font-sans: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-script: 'Marck Script', cursive;

    /* Background Pattern */
    --bg-pattern: url('data:image/svg+xml;utf8,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><g fill="%236CA5B1" fill-opacity="0.05" fill-rule="evenodd"><path d="M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z"/></g></svg>');
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-sans);
    color: var(--col-text-main);
    line-height: 1.6;
    font-size: 16px;
    background-color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-serif);
    color: var(--col-text-heading);
    font-weight: 600;
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

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

/* =========================================
   2. LANGUAGE SWITCHER LOGIC
   ========================================= */
body.lang-en .lang-ru { display: none !important; }
body.lang-ru .lang-en { display: none !important; }

.lang-switch {
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    margin: 0;
    display: flex;
    align-items: center;
}

.lang-switch span { color: #999; transition: color 0.3s; }
.lang-switch span.active { color: var(--col-blue-dark); text-decoration: underline; }
.lang-switch span:hover { color: var(--col-pink-dark); }
.lang-separator { margin: 0 5px; color: #ccc; }

/* =========================================
   3. ANIMATIONS
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    visibility: hidden;
}
.reveal.active { opacity: 1; transform: translateY(0); visibility: visible; }

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

.slide-in-left { opacity: 0; transform: translateX(-50px); transition: all 1s ease-out; }
.slide-in-left.active { opacity: 1; transform: translateX(0); }

.slide-in-right { opacity: 0; transform: translateX(50px); transition: all 1s ease-out; }
.slide-in-right.active { opacity: 1; transform: translateX(0); }

.scale-up { opacity: 0; transform: scale(0.9); transition: all 0.8s ease; }
.scale-up.active { opacity: 1; transform: scale(1); }

.rotate-in { opacity: 0; transform: rotate(-180deg) scale(0); transition: all 1s ease; }
.rotate-in.active { opacity: 1; transform: rotate(0deg) scale(1); }

/* =========================================
   4. HEADER & NAVIGATION
   ========================================= */
.top-bar {
    background-color: var(--col-white);
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.85rem;
    color: var(--col-blue-dark);
}

.top-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.social-icons a { margin: 0 8px; color: var(--col-blue-dark); }
.social-icons a:hover { color: var(--col-pink-dark); }

.main-nav {
    background: var(--col-white);
    padding: 15px 0;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.main-nav.scrolled {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    animation: slideDown 0.3s ease forwards;
}
@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.nav-links { display: flex; gap: 30px; }
.nav-links.left { justify-self: end; padding-right: 40px; }
.nav-links.right { justify-self: start; padding-left: 40px; }

.nav-links a {
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #555;
    position: relative;
    white-space: nowrap;
    font-family: var(--font-sans);
}
.nav-links a:hover { color: var(--col-pink-dark); }
.nav-links a::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px;
    background-color: var(--col-pink-dark); transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

.logo-wrapper-text {
    justify-self: center;
    text-align: center;
    min-width: 180px;
    z-index: 1001;
}
.logo-text-link { display: flex; flex-direction: column; align-items: center; line-height: 1.2; }
.logo-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--col-logo-blue);
    letter-spacing: 2px;
    font-weight: 700;
}
.logo-subtitle {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--col-logo-purple);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: 2px;
}

/* =========================================
   5. MOBILE MENU
   ========================================= */
.mobile-toggle { 
    display: none;
    cursor: pointer;
    justify-self: end;
    z-index: 1002;
    width: 30px;
    height: 20px;
    position: relative;
}

.mobile-toggle span {
    display: block; position: absolute; height: 2px; width: 100%;
    background: var(--col-blue-dark); border-radius: 2px; opacity: 1; left: 0;
    transform: rotate(0deg); transition: .25s ease-in-out;
}
.mobile-toggle span:nth-child(1) { top: 0px; }
.mobile-toggle span:nth-child(2) { top: 9px; }
.mobile-toggle span:nth-child(3) { top: 18px; }

.mobile-toggle.open span:nth-child(1) { top: 9px; transform: rotate(135deg); background: var(--col-pink-dark); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; left: -60px; }
.mobile-toggle.open span:nth-child(3) { top: 9px; transform: rotate(-135deg); background: var(--col-pink-dark); }

.mobile-menu-drawer {
    position: absolute; top: 100%; left: 0; width: 100%;
    background: white; max-height: 0; overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1); border-top: 1px solid #f0f0f0; z-index: 999;
}
.mobile-menu-drawer.active { max-height: 600px; padding: 20px 0; }

.mobile-nav-list { list-style: none; text-align: center; padding: 0; }
.mobile-nav-list li { margin: 0; opacity: 0; transform: translateY(10px); transition: all 0.3s ease; }
.mobile-menu-drawer.active .mobile-nav-list li { opacity: 1; transform: translateY(0); }
.mobile-menu-drawer.active .mobile-nav-list li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-drawer.active .mobile-nav-list li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu-drawer.active .mobile-nav-list li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu-drawer.active .mobile-nav-list li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu-drawer.active .mobile-nav-list li:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu-drawer.active .mobile-nav-list li:nth-child(6) { transition-delay: 0.35s; }

.mobile-nav-list a {
    font-size: 1rem; font-weight: 600; color: #444; text-transform: uppercase;
    display: block; padding: 15px; border-bottom: 1px solid #f9f9f9;
}
.mobile-nav-list a:hover { color: var(--col-pink-dark); background: #fafafa; }
.mobile-lang { margin-top: 20px; display: flex; justify-content: center; padding-bottom: 10px; }

/* =========================================
   6. HERO SECTION
   ========================================= */
.hero-section { display: flex; min-height: 650px; width: 100%; position: relative; }
.hero-side {
    flex: 1; display: flex; align-items: center; justify-content: center;
    padding: 80px; position: relative; overflow: hidden;
}
.hero-side::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-image: var(--bg-pattern); opacity: 0.1; pointer-events: none;
}
.blue-side { background-color: var(--col-blue-light); }
.pink-side { background-color: var(--col-pink-light); }

.hero-content { max-width: 450px; text-align: left; position: relative; z-index: 1; }
.hero-content h2 { font-size: 3rem; letter-spacing: 3px; margin-bottom: 20px; color: #444; }
.white-text { color: #fff; font-weight: 700; }

.hero-underline { height: 4px; width: 70px; margin-bottom: 30px; border-radius: 2px; }
.blue-line { background: var(--col-blue-dark); }
.pink-line { background: #fff; }

.hero-content p { margin-bottom: 35px; font-size: 1.1rem; font-weight: 500; }

.btn-link {
    font-weight: 700; font-size: 0.9rem; letter-spacing: 2px;
    border-bottom: 2px solid currentColor; padding-bottom: 5px;
    text-transform: uppercase; position: relative; display: inline-block;
}
.btn-link::after {
    font-family: "Font Awesome 6 Free"; font-weight: 900; content: "\f061"; 
    margin-left: 10px; font-size: 0.8rem; transition: margin-left 0.3s ease;
}
.btn-link:hover::after { margin-left: 15px; }
.pink-side .btn-link { color: #fff; }
.pink-side .btn-link:hover { color: #444; }

.page-header {
    background-color: var(--col-blue-light); padding: 140px 0 80px;
    text-align: center; position: relative; overflow: hidden;
}
.page-header::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: var(--bg-pattern); opacity: 0.15;
}
.page-header h1 { font-size: 3.5rem; color: var(--col-blue-dark); position: relative; z-index: 1; letter-spacing: 2px; }
.page-header-line {
    width: 60px; height: 4px; background: linear-gradient(to right, var(--col-blue-dark), var(--col-pink-light));
    margin: 20px auto; border-radius: 2px;
}
.page-header.pink-header { background-color: #fae1ed; }
.page-header.pink-header h1 { color: var(--col-pink-dark); }
.page-header.pink-header .page-header-line { background: linear-gradient(to right, var(--col-pink-dark), var(--col-blue-dark)); }

.wave-divider { width: 100%; line-height: 0; margin-top: -80px; position: relative; z-index: 10; }
.wave-divider svg { width: 100%; height: 100px; filter: drop-shadow(0 -5px 5px rgba(0,0,0,0.02)); }

/* =========================================
   7. SECTIONS & COMPONENTS
   ========================================= */
.section { padding: 100px 0; position: relative; }
.bg-light { background-color: #f9f9f9; }
.bg-pattern { background-color: #fff; background-image: var(--bg-pattern); }

/* --- RESTORED UTILITIES FOR CENTERING --- */
.text-center { text-align: center; }
.section-header { text-align: center; max-width: 850px; margin: 0 auto 60px; }

.decorated-section::before, .decorated-section::after {
    content: ''; position: absolute; width: 150px; height: 150px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M10,50 Q30,10 50,50 Q70,90 90,50" stroke="%23D67A9D" fill="none" opacity="0.1" stroke-width="2"/></svg>');
    background-repeat: no-repeat; z-index: 0;
}
.decorated-section::before { top: 20px; left: 20px; transform: rotate(-45deg); }
.decorated-section::after { bottom: 20px; right: 20px; transform: rotate(135deg); }

.serif-title { font-size: 2.8rem; font-weight: 500; margin-bottom: 15px; position: relative; }
.intro-p { max-width: 750px; margin: 0 auto; color: #666; font-size: 1.1rem; text-align: center; }

.heading-with-flare { display: inline-block; position: relative; }
.heading-with-flare::before, .heading-with-flare::after {
    content: ''; display: inline-block; width: 8px; height: 8px;
    background-color: var(--col-pink-light); border-radius: 50%;
    vertical-align: middle; margin: 0 15px; opacity: 0.6;
}

.script-highlight { font-family: var(--font-script); color: var(--col-pink-dark); font-size: 4rem; margin-left: 10px; font-weight: 400; }
.highlight { color: var(--col-pink-dark); font-style: italic; position: relative; font-weight: 600; }
.highlight::after {
    content: ''; position: absolute; bottom: 4px; left: 0; width: 100%; height: 8px;
    background-color: var(--col-pink-light); z-index: -1; opacity: 0.5; border-radius: 4px;
}

.divider-ornament {
    display: flex; align-items: center; justify-content: center; gap: 15px;
    color: var(--col-blue-dark); margin: 25px 0 35px; opacity: 0.8; font-size: 1rem;
}
.divider-ornament .line { height: 1px; width: 60px; background: currentColor; }

.btn-outline {
    display: inline-block; margin-top: 35px; padding: 14px 35px;
    border: 2px solid var(--col-blue-dark); font-size: 0.85rem; letter-spacing: 2px;
    text-transform: uppercase; color: var(--col-blue-dark); font-weight: 600;
    background: transparent; position: relative; overflow: hidden; z-index: 1;
}
.btn-outline::before {
    content: ''; position: absolute; top: 0; left: 0; width: 0%; height: 100%;
    background: var(--col-blue-dark); z-index: -1; transition: width 0.3s ease;
}
.btn-outline:hover { color: #fff; }
.btn-outline:hover::before { width: 100%; }

.flex-container { display: flex; align-items: center; gap: 80px; position: relative; z-index: 1; }
.text-col { flex: 1; }
.img-col { flex: 1; }

.image-frame img { border-radius: 8px; box-shadow: 20px 20px 0 var(--col-pink-light), 0 5px 15px rgba(0,0,0,0.1); }
.decorated-frame { position: relative; }
.decorated-frame::after {
    content: ''; position: absolute; bottom: -20px; right: -20px; width: 60px; height: 60px;
    border-right: 4px solid var(--col-blue-dark); border-bottom: 4px solid var(--col-blue-dark); opacity: 0.5;
}

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-bottom: 60px; }
.service-item {
    text-align: center; padding: 30px 20px; background: #fff; border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-item:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.decorated-item { position: relative; overflow: hidden; }
.decorated-item::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(to right, var(--col-pink-light), var(--col-blue-light));
    opacity: 0; transition: opacity 0.3s ease;
}
.decorated-item:hover::before { opacity: 1; }

.icon-box {
    width: 110px; height: 110px; margin: 0 auto 25px; border: 2px dashed var(--col-pink-light);
    border-radius: 50%; display: flex; align-items: center; justify-content: center; padding: 6px;
}
.icon-inner {
    width: 100%; height: 100%; background: linear-gradient(135deg, var(--col-pink-light), var(--col-pink-dark));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 2.2rem; box-shadow: inset 0 2px 5px rgba(0,0,0,0.1);
}
.service-item h3 { font-size: 1.4rem; margin-bottom: 15px; font-weight: 600; color: var(--col-blue-dark); }
.service-item p { font-size: 1rem; color: #666; }
.services-footer { text-align: center; color: var(--col-blue-dark); font-weight: 600; font-size: 1.1rem; }

.process-steps { flex: 1; padding-right: 30px; }
.step { display: flex; gap: 25px; margin-bottom: 40px; position: relative; }
.step:not(:last-child)::after {
    content: ''; position: absolute; left: 30px; top: 60px; bottom: -20px; width: 1px; background: var(--col-blue-light); z-index: 0;
}
.step-icon {
    width: 60px; height: 60px; background: linear-gradient(135deg, var(--col-blue-dark), var(--col-blue-light));
    color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 1.4rem; box-shadow: 0 4px 10px rgba(108, 165, 177, 0.3); position: relative; z-index: 1;
}
.decorated-icon::before {
    content: ''; position: absolute; top: -4px; left: -4px; right: -4px; bottom: -4px;
    border-radius: 50%; border: 1px solid var(--col-blue-light); opacity: 0.6;
}
.step-text h4 { color: var(--col-blue-dark); margin-bottom: 8px; font-size: 1.2rem; font-weight: 600; }
.step-text p { font-size: 1rem; color: #666; }

.reviews-section { background-color: #fff; position: relative; }
.reviews-slider-container { max-width: 900px; margin: 0 auto; position: relative; padding: 20px 50px; }
.review-slide { display: none; text-align: center; animation: fadeEffect 0.6s ease; }
.review-slide.active { display: block; }
@keyframes fadeEffect { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.quote-icon { font-size: 2rem; color: var(--col-pink-light); margin-bottom: 20px; opacity: 0.5; }
.review-text { font-style: italic; font-size: 1.15rem; line-height: 1.8; color: #555; margin-bottom: 30px; }
.review-author { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.author-avatar {
    width: 60px; height: 60px; background: linear-gradient(135deg, var(--col-blue-light), var(--col-pink-light));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.avatar-placeholder { font-weight: 700; color: #fff; font-size: 1.2rem; }
.slider-arrow {
    position: absolute; top: 40%; transform: translateY(-50%); background: transparent; border: none;
    font-size: 1.5rem; color: var(--col-blue-dark); cursor: pointer; padding: 15px; z-index: 10;
}
.slider-arrow:hover { color: var(--col-pink-dark); transform: translateY(-50%) scale(1.2); }
.prev-btn { left: 0; } .next-btn { right: 0; }
.slider-dots { text-align: center; margin-top: 30px; }
.dot { cursor: pointer; height: 10px; width: 10px; margin: 0 5px; background-color: #ddd; border-radius: 50%; display: inline-block; transition: background 0.3s; }
.dot.active, .dot:hover { background-color: var(--col-pink-light); }

/* =========================================
   8. SPECIFIC PAGE STYLES
   ========================================= */
.contact-details { display: flex; flex-direction: column; gap: 30px; }
.detail-item { display: flex; align-items: center; gap: 20px; }
.icon-box.small { width: 60px; height: 60px; margin: 0; font-size: 1.2rem; }
.contact-form-wrapper { background: #fff; padding: 40px; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid #eee; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.9rem; color: var(--col-blue-dark); }
.main-contact-form input, .main-contact-form select, .main-contact-form textarea {
    width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; background: #fafafa; font-family: var(--font-sans);
}
.main-contact-form input:focus { border-color: var(--col-blue-dark); outline: none; }

.blog-list { display: flex; flex-direction: column; gap: 40px; max-width: 900px; margin: 0 auto; }
.blog-card {
    display: flex; align-items: center; background-color: #f8fcfd; border-radius: 100px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); transition: transform 0.3s ease;
    overflow: hidden; padding-right: 50px; border: 1px solid #eef;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.blog-img {
    width: 250px; height: 180px; flex-shrink: 0; position: relative; overflow: hidden;
    border-top-left-radius: 100px; border-bottom-left-radius: 100px;
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-content { flex: 1; padding: 20px 40px; text-align: left; }
.blog-content h3 { font-size: 1.4rem; color: var(--col-blue-dark); margin-bottom: 10px; }
.blog-content p { font-size: 0.95rem; color: #666; margin-bottom: 0; }

.about-credentials {
    background-color: #fafafa; padding: 30px; border-left: 5px solid var(--col-pink-light); margin-top: 30px; border-radius: 4px;
}

/* =========================================
   9. FOOTER
   ========================================= */
.main-footer { background: #fff; border-top: 1px solid #eaeaea; padding-top: 80px; position: relative; }
.main-footer::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px;
    background: repeating-linear-gradient(45deg, var(--col-pink-light), var(--col-pink-light) 10px, var(--col-blue-light) 10px, var(--col-blue-light) 20px);
}
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; padding-bottom: 70px; }
.footer-widget h4 {
    color: var(--col-pink-dark); font-size: 0.9rem; letter-spacing: 1.5px; margin-bottom: 25px; position: relative; display: inline-block;
}
.footer-widget h4::after {
    content: ''; position: absolute; bottom: -8px; left: 0; width: 40px; height: 2px; background: var(--col-pink-light);
}
.footer-logo-title { font-family: var(--font-serif); font-size: 1.8rem; color: var(--col-logo-blue); font-weight: 700; line-height: 1; }
.footer-logo-subtitle { font-family: var(--font-sans); font-size: 0.7rem; color: var(--col-logo-purple); letter-spacing: 3px; }
.subscribe-form { display: flex; margin-top: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.subscribe-form input { flex: 1; padding: 12px 15px; border: 1px solid #eee; background: #fdfdfd; }
.subscribe-form button { background: var(--col-blue-dark); color: #fff; border: none; padding: 0 20px; cursor: pointer; font-weight: 600; }
.footer-nav li { margin-bottom: 12px; }
.footer-nav a { font-size: 0.95rem; color: #666; position: relative; display: flex; align-items: center; }
.footer-nav a::before {
    content: ''; display: inline-block; width: 6px; height: 6px; background: var(--col-pink-light); transform: rotate(45deg); margin-right: 12px;
}
.footer-nav a:hover { color: var(--col-pink-dark); }
.post-preview img { border-radius: 6px; border: 3px solid #fff; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.copyright { text-align: center; padding: 25px 0; border-top: 1px solid #eee; font-size: 0.85rem; color: #888; }

/* =========================================
   10. MEDIA QUERIES (RESPONSIVE)
   ========================================= */
@media (max-width: 992px) {
    .top-bar { display: none; }
    .nav-container { display: flex; justify-content: space-between; padding: 10px 20px; }
    .nav-links { display: none; }
    .mobile-toggle { display: block; }
    .logo-wrapper-text { text-align: left; }
    
    .hero-section { flex-direction: column; min-height: auto; }
    .hero-side { padding: 60px 20px; }
    .hero-content h2 { font-size: 2.2rem; }
    
    .flex-container { flex-direction: column; gap: 40px; }
    .text-col, .img-col { width: 100%; }
    
    .services-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
    .blog-list { gap: 20px; }
}

@media (max-width: 768px) {
    .blog-card { flex-direction: column; border-radius: 20px; padding: 0; }
    .blog-img { width: 100%; height: 200px; border-radius: 20px 20px 0 0; }
    .blog-content { padding: 25px; text-align: center; }
    .reviews-slider-container { padding: 0; }
    .slider-arrow { display: none; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-widget h4 { display: inline-block; }
    .footer-widget h4::after { left: 50%; transform: translateX(-50%); }
    .subscribe-form { flex-direction: column; }
    .subscribe-form input { margin-bottom: 10px; width: 100%; }
    .subscribe-form button { width: 100%; padding: 12px; }
}