/* 
 * Блясък 056 ЕООД - Main Stylesheet
 * Website: www.blyasak-056.bg
 */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* Header & Navigation - ПОПРАВЕНО за бял фон */
header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: #1e3c72;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #4dd0e1;
    border-bottom: 2px solid #4dd0e1;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 320px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 1rem 0;
    top: 100%;
    left: 0;
    margin-top: 1rem;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 1rem 1.5rem;
    color: #333;
    border-bottom: none;
}

.dropdown-content a:hover {
    background: #f0f8ff;
    color: #1e3c72;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #1e3c72;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Sections - ПОПРАВЕНО за по-лека тъмнина */
.hero {
    background-size: cover;
    background-position: center 0%;
    color: white;
    text-align: center;
    padding: 3rem 2rem 5rem;
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Много лека тъмнина за да се вижда снимката */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}
.hero-content h1,
.hero-content .tagline {
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem 2rem;
    border-radius: 15px;
    display: inline-block;
    backdrop-filter: blur(8px);
}

.hero-content h1 {
    margin-bottom: 1rem;
}

.hero-content .tagline {
    display: block;
    margin: 1rem auto 2rem;
    max-width: fit-content;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero h1 .highlight {
    color: #4dd0e1;
}

.hero .tagline {
    font-size: 2rem;
    opacity: 0.98;
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.page-hero {
    background: linear-gradient(135deg, rgba(30,60,114,0.95) 0%, rgba(42,82,152,0.95) 100%);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #4dd0e1;
    color: #1e3c72;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(77,208,225,0.4);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #26c6da;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(77,208,225,0.6);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    box-shadow: none;
}

.btn-outline:hover {
    background: white;
    color: #1e3c72;
}

.btn-light {
    background: white;
    color: #667eea;
}

.btn-light:hover {
    background: #f0f0f0;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1e3c72;
    font-weight: 700;
}

.section-subtitle {
    color: #666;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Services Grid */
.services-preview {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: all 0.4s;
    text-align: center;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(30,60,114,0.15);
    border-color: #4dd0e1;
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.service-card h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Features */
.features {
    padding: 5rem 2rem;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
}

.feature-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4dd0e1 0%, #26c6da 100%);
    color: white;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(77,208,225,0.3);
}

.feature-item h3 {
    color: #1e3c72;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.feature-item p {
    color: #666;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    text-align: center;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(77,208,225,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Info Bar */
.contact-bar {
    background: #f8f9fa;
    padding: 3rem 2rem;
    border-top: 3px solid #4dd0e1;
}

.contact-info {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.contact-item {
    padding: 1.5rem;
}

.contact-item .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-item h4 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item a {
    color: #666;
    text-decoration: none;
    font-size: 1.05rem;
}

.contact-item a:hover {
    color: #4dd0e1;
}

/* About Page Styles */
.about-section {
    margin-bottom: 4rem;
}

.about-section h2 {
    color: #1e3c72;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #4dd0e1;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.5rem;
}

.about-section ul {
    list-style: none;
    padding-left: 0;
}

.about-section ul li {
    font-size: 1.1rem;
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
}

.about-section ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4dd0e1;
    font-weight: bold;
    font-size: 1.3rem;
}

.company-info {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 5px solid #4dd0e1;
    margin: 3rem 0;
}

.company-info h3 {
    color: #1e3c72;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.company-info p {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.company-info strong {
    color: #1e3c72;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr !important;
    }
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(30,60,114,0.15);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.value-card h4 {
    color: #1e3c72;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Prices Page Styles */
.important-notice {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    box-shadow: 0 8px 24px rgba(255,107,107,0.3);
}

.important-notice h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.important-notice ul {
    list-style: none;
    padding-left: 0;
}

.important-notice li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.important-notice li::before {
    content: "⚠️";
    position: absolute;
    left: 0;
}

.info-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 5px solid #4dd0e1;
}

.info-box h3 {
    color: #1e3c72;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.info-box p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.categories-section {
    margin-bottom: 3rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(30,60,114,0.15);
}

.category-card h3 {
    color: #1e3c72;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4dd0e1;
    margin: 1rem 0;
}

.category-card p {
    color: #666;
    line-height: 1.7;
}

.services-list {
    margin-top: 3rem;
}

.service-item {
    background: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.service-item h3 {
    color: #1e3c72;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-item p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.price-table {
    margin-top: 1.5rem;
}

.price-row {
    display: grid;
    grid-template-columns: 3fr 2fr;
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
    gap: 1rem;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row:nth-child(even) {
    background: #f8f9fa;
}

.price-label {
    color: #333;
    font-weight: 500;
}

.price-value {
    color: #4dd0e1;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: right;
}

.note {
    background: #fff9e6;
    border-left: 4px solid #ffd700;
    padding: 1rem 1.5rem;
    margin: 1rem 0;
    border-radius: 4px;
}

.note p {
    margin: 0;
    color: #666;
}

/* Contact Page Styles */
.contact-form-section {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 3rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1e3c72;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #4dd0e1;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-method {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(30,60,114,0.15);
}

.contact-method .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-method h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
}

.contact-method a {
    color: #4dd0e1;
    text-decoration: none;
    font-weight: 600;
}

.contact-method a:hover {
    text-decoration: underline;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s;
}

.social-card:hover {
    transform: translateY(-3px);
}

.social-card a {
    text-decoration: none;
    color: #1e3c72;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.social-card .icon {
    font-size: 2.5rem;
}

/* Footer */
footer {
    background: #1a1a2e;
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: #4dd0e1;
    font-size: 1.3rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li::before {
    content: none;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #4dd0e1;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    width: 32px;
    height: 32px;
    background: rgba(77,208,225,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: #ccc;
    text-decoration: none;
}
.social-links a:hover {
    background: #4dd0e1;
    color: #fff;
    transform: translateY(-3px);
    text-decoration: none;
}
.social-links a i {
    font-size: 0.85rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

/* Service Detail Page */
.service-detail-hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.service-detail-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-benefits {
    background: #f8f9fa;
    padding: 3rem 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.benefit-item h4 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem;
    }
    
    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        background: #f8f9fa;
        margin-top: 0;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .tagline {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .price-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .price-value {
        text-align: left;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* ================== MOBILE OVERRIDES (оставени както са, само оправени синтактично) ================== */

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .logo img {
        height: 45px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem;
    }
    
    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        background: #f8f9fa;
        margin-top: 0;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }

    /* Hero мобилна версия */
    /* Hero мобилна версия */
    .hero {
        padding: 2rem 1rem 2rem !important;
        min-height: 500px;
        align-items: flex-end;
    }

    .hero-content {
        margin-top: 0 !important;
        padding-bottom: 1.5rem;
        width: 100%;
    }

    .hero-content h1 {
        font-size: 2rem !important;
    }

    .hero-content .tagline {
        font-size: 1rem !important;
        padding: 0.6rem 1rem !important;
        margin: 0 auto 1rem !important;
        margin-top: 60% !important;
    }

    .hero-buttons {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.8rem !important;
        flex-wrap: nowrap;
    }

    .hero-buttons .btn {
        width: auto !important;
        max-width: none !important;
        padding: 0.7rem 1.2rem !important;
        font-size: 0.85rem !important;
        white-space: nowrap;
    }

    /* Service cards с изображения - mobile */
    .services-grid {
        grid-template-columns: 1fr !important;
    }

    /* Service details - mobile (еднa колона) */
    div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        direction: ltr !important;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .price-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .price-value {
        text-align: left;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }

    /* FIX: FEATURES на 1 ред мобилно */
    .features-grid {
        grid-template-columns: 1fr !important;
    }
                               
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem !important;
    }

    .hero .tagline {
        font-size: 1rem !important;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .logo img {
        height: 40px;
    }
}
/* Desktop hero - видим само на десктоп */
.hero-desktop {
    display: flex !important;
}
.hero-mobile {
    display: none !important;
}

@media (max-width: 768px) {
    /* На мобилна - скриваме десктоп, показваме мобилна */
    .hero-desktop {
        display: none !important;
    }
    .hero-mobile {
        display: flex !important;
        padding: 2rem 1rem 2rem !important;
        min-height: 500px !important;
        align-items: flex-end;
    }
    .hero-mobile .hero-content {
        margin-top: 0 !important;
        padding-bottom: 1.5rem;
        width: 100%;
    }
    .hero-mobile .hero-content .tagline {
        margin-top: 0 !important;
        display: inline-block;
    }
    .hero-mobile .hero-buttons {
        flex-direction: row !important;
        justify-content: center !important;
        gap: 0.8rem !important;
    }
    .hero-mobile .hero-buttons .btn {
        width: auto !important;
        max-width: none !important;
        white-space: nowrap;
    }
}
                               /* Секция 3 - снимки */
.service-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .service-img {
        height: auto !important;
        object-fit: contain;
    }
}