/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Графская роскошь */
    --primary-dark: #1a1a2e;
    --primary-light: #16213e;
    --accent-gold: #ffd700;
    --accent-gold-dark: #ffb700;
    --text-white: #ffffff;
    --text-light: #f5f5f5;
    --text-gray: #cccccc;
    --text-dark: #333333;
    --background-light: #f8f9fa;
    --border-light: #e9ecef;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--text-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Buttons */
.cta-button, .price-button, .submit-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: var(--primary-dark);
    text-decoration: none;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button:hover, .price-button:hover, .submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(248, 249, 250, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition-fast);
}

.logo-small {
    height: 48px;
    width: auto;
    transition: var(--transition-fast);
}

.nav-logo a:hover .logo-small {
    transform: scale(1.05);
}

/* Fallback для логотипа в навигации */
.nav-logo a::before {
    content: 'FotoGraf';
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-dark);
    display: none;
}

.nav-logo a:not(:has(img))::before {
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-menu a:hover {
    color: #e6a800;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e6a800;
    transition: var(--transition-fast);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-dark);
    margin: 3px 0;
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8)), 
                url('../assets/images/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Убираем старый паттерн точек - теперь используем фоновое изображение */
/* .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
} */

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-image {
    height: 240px;
    width: auto;
}

/* Убираем hover эффект - логотип не должен реагировать на наведение */
/* .hero-logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(2px 2px 12px rgba(0, 0, 0, 0.8)) 
            drop-shadow(0 0 30px rgba(255, 215, 0, 0.5));
} */

.hero-subtitle {
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6), 0 0 15px rgba(0, 0, 0, 0.4);
}

.hero-description {
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 0, 0, 0.3);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    width: 30px;
    height: 50px;
    border: 2px solid var(--accent-gold);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(20px); opacity: 0; }
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-gold);
}

/* Service Sections */
.service-section {
    padding: 60px 0;
    background: var(--text-white);
    overflow: hidden;
}

.service-section:nth-child(even) {
    background: var(--background-light);
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
    display: flex;
    align-items: center;
    gap: 4rem;
    min-height: 500px;
}

.service-container.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    max-width: 500px;
    aspect-ratio: 1/1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    border-radius: 15px;
}

.service-image:hover img {
    transform: scale(1.05);
}

.service-content {
    flex: 1;
    padding: 2rem 0;
}

.service-content h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    position: relative;
}

.service-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--accent-gold);
}

.service-description {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.feature h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
}

.service-cta {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.service-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Local Sections */
.local {
    padding: var(--section-padding);
    background: var(--text-white);
}

.local-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.local-card {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    color: var(--text-white);
    padding: 2.5rem;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.local-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: var(--transition-smooth);
}

.local-card:hover::before {
    transform: translateX(100%);
}

.local-card h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.local-card p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.local-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.local-features span {
    background: rgba(255, 215, 0, 0.2);
    color: var(--accent-gold);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}



/* Prices Section */
.prices {
    padding: var(--section-padding);
    background: var(--text-white);
}

.prices-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 1800px;
    margin: 0 auto;
    justify-content: center;
}

.price-card {
    background: var(--text-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid var(--border-light);
    position: relative;
}

.price-card.featured {
    border-color: var(--accent-gold);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

/* Автоматическое центрирование всех карточек */
.price-card {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 350px;
    display: flex;
    flex-direction: column;
}

.price-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    white-space: nowrap;
}

.price-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.price-card li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-light);
}

.price-card li:last-child {
    border-bottom: none;
}

/* Rush Option Block */
.rush-option {
    margin-top: 3rem;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(26, 26, 46, 0.3);
    border: 2px solid var(--accent-gold);
    animation: rushGlow 3s ease-in-out infinite alternate;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.rush-option:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(26, 26, 46, 0.4), 0 0 50px rgba(255, 215, 0, 0.3);
}

.rush-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: rushShine 4s ease-in-out infinite;
}

.rush-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.rush-icon {
    font-size: 3rem;
    animation: rushPulse 2s ease-in-out infinite;
    transition: var(--transition-smooth);
}

.rush-option:hover .rush-icon {
    transform: scale(1.2) rotate(5deg);
    animation: rushPulse 1s ease-in-out infinite;
}

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

.rush-text h3 {
    color: var(--accent-gold);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.rush-option:hover .rush-text h3 {
    transform: scale(1.05);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.rush-text p {
    color: var(--text-white);
    font-size: 1.2rem;
    margin: 0;
    font-weight: 500;
}

.rush-price {
    color: var(--accent-gold);
    font-weight: 900;
    font-size: 1.4rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.rush-option:hover .rush-price {
    transform: scale(1.1);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    color: #fff;
}

.rush-sparkle {
    font-size: 2rem;
    animation: rushSparkle 3s ease-in-out infinite;
    transition: var(--transition-smooth);
}

.rush-option:hover .rush-sparkle {
    transform: scale(1.3) rotate(15deg);
    animation: rushSparkle 1.5s ease-in-out infinite;
}

@keyframes rushGlow {
    0% {
        box-shadow: 0 15px 40px rgba(26, 26, 46, 0.3), 0 0 20px rgba(255, 215, 0, 0.2);
    }
    100% {
        box-shadow: 0 15px 40px rgba(26, 26, 46, 0.3), 0 0 40px rgba(255, 215, 0, 0.4);
    }
}

@keyframes rushShine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes rushPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes rushSparkle {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
    50% {
        transform: rotate(180deg) scale(1.2);
        opacity: 0.7;
    }
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: var(--background-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: var(--primary-dark);
    margin-bottom: 2rem;
}

.about-text p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-gold);
    font-family: var(--font-heading);
}

.stat-label {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-photo {
    width: 247px;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
}

.about-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.about-placeholder {
    width: 300px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 1.5rem;
}

/* Reviews Section */
.reviews {
    padding: var(--section-padding);
    background: var(--text-white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-smooth);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.review-stars {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-card p {
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1rem;
}

.review-author {
    color: var(--primary-dark);
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background: var(--background-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    color: var(--primary-dark);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 30px;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-button {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-button.whatsapp {
    background: #25d366;
    color: var(--text-white);
}

.contact-button.telegram {
    background: #0088cc;
    color: var(--text-white);
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-form h3 {
    color: var(--primary-dark);
    margin-bottom: 2rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--text-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 80px 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h4 {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: var(--font-body);
    font-weight: 700;
}

.footer-column:first-child,
.footer-column:nth-child(2) {
    text-align: left;
}

.footer-column:last-child {
    text-align: center;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 80px;
    margin: 0 auto;
}

.logo-large {
    height: 90px;
    width: auto;
    margin-bottom: 1rem;
}

/* Fallback для логотипа в футере */
.footer-logo::before {
    content: 'FotoGraf';
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent-gold);
    display: none;
    margin-bottom: 0.5rem;
}

.footer-logo:not(:has(img))::before {
    display: block;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.footer-contacts .contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.footer-contacts .contact-icon {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-link:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(248, 249, 250, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 0;
        padding: 0.5rem 2rem;
    }
    
    .nav-menu a {
        display: block;
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--border-light);
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-logo-image {
        height: 200px;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-column:first-child,
    .footer-column:nth-child(2),
    .footer-column:last-child {
        text-align: center;
    }
    
    .footer-logo {
        order: -1;
        margin-bottom: 1rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .local-grid {
        grid-template-columns: 1fr;
    }
    
    .service-container {
        flex-direction: column;
        gap: 2rem;
        min-height: auto;
        padding: 2rem 0;
    }
    
    .service-container.reverse {
        flex-direction: column;
    }
    
    .service-image {
        order: -1;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        aspect-ratio: 1/1;
    }
    
    .service-content {
        padding: 1rem 0;
    }
    
    .service-content h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .service-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .service-description {
        text-align: center;
    }
    
    .service-features {
        gap: 1rem;
    }
    
    .feature {
        text-align: center;
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .feature h4,
    .feature p {
        text-align: center;
        width: 100%;
    }
    
    .feature-icon {
        margin-top: 0;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .service-cta {
        display: inline-block;
        margin: 0 auto;
        text-align: center;
        width: auto;
    }
    
    .service-content {
        text-align: center;
    }
    
    .prices-grid {
        max-width: 400px;
    }
    
    .price-card {
        flex: 0 0 100%;
        min-width: auto;
    }
    
    .rush-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .rush-icon {
        font-size: 2.5rem;
    }
    
    .rush-text h3 {
        font-size: 1.5rem;
    }
    
    .rush-text p {
        font-size: 1rem;
    }
    
    .rush-sparkle {
        font-size: 1.5rem;
    }
    

}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-logo-image {
        height: 160px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .service-card,
    .price-card,
    .review-card {
        padding: 1.5rem;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: modalFadeIn 0.3s ease-out;
}

.modal-content {
    background: var(--text-white);
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    position: relative;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    color: var(--text-white);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: var(--text-white);
    font-size: 1.5rem;
}

.modal-close {
    color: var(--text-white);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-smooth);
    line-height: 1;
}

.modal-close:hover {
    color: var(--accent-gold);
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem;
    color: var(--text-dark);
}

.modal-body p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.modal-info {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--accent-gold);
}

.modal-info ul {
    list-style: none;
    margin: 1rem 0 0 0;
    padding: 0;
}

.modal-info li {
    padding: 0.5rem 0;
    font-weight: 500;
}

.modal-note {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 183, 0, 0.1));
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.modal-note p {
    margin-bottom: 0.5rem;
}

.modal-footer {
    padding: 1.5rem 2rem;
    background: var(--background-light);
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.modal-button {
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    min-width: 120px;
}

.modal-button.cancel {
    background: var(--text-gray);
    color: var(--text-white);
}

.modal-button.cancel:hover {
    background: #999;
    transform: translateY(-2px);
}

.modal-button.confirm {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.modal-button.confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Modal responsive */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-footer {
        padding: 1rem 1.5rem;
        flex-direction: column;
    }
    
    .modal-button {
        width: 100%;
    }
}
