/* Reset and Base Styles */
/*
переменные цветов и размеров шрифтов
 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary, .btn-green {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #fbbf24;
    border: 2px solid #fbbf24;
}

.btn-secondary:hover {
    background: #fbbf24;
    color: #000;
    transform: translateY(-2px);
}


.btn-green:hover {
    background: linear-gradient(135deg, #059669, #047857);
}

.btn-instagram {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
}

.btn-instagram:hover {
    background: linear-gradient(135deg, #ad1457, #6a1b9a);
}

.link-btn {
    background: none;
    border: none;
    color: #fbbf24;
    text-decoration: underline;
    cursor: pointer;
    font-size: 16px;
    transition: color 0.3s ease;
}

.link-btn:hover {
    color: #f59e0b;
}

.icon, .faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Global fixes to prevent horizontal scroll on mobile/tablet */
html {
    overflow-x: hidden;
}

img, video, svg {
    max-width: 100%;
    height: auto;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 700;
    font-size: 18px;
}

.logo-text h1 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.logo-text p {
    font-size: 12px;
    color: #fbbf24;
    margin-top: -2px;
}

.header-contacts {
    display: flex;
    align-items: center;
    gap: 24px;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

.phone-number .icon {
    color: #fbbf24;
}

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

.social-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-2px);
}

.whatsapp-btn:hover {
    background: rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.instagram-btn:hover {
    background: rgba(233, 30, 99, 0.3);
    color: #e91e63;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('../assets/img/background.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5), transparent);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-services {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: #fbbf24;
    font-weight: 300;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero-buttons .btn {
    font-size: 18px;
    padding: 16px 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    animation: pulse 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: linear-gradient(180deg, #111, #000);
}

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

/* Shared card base styles */
.feature-card, .service-card {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid #374151;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.feature-card {
    transition: all 0.4s ease;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
}

.feature-card:hover {
    border-color: rgba(251, 191, 36, 0.5);
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(251, 191, 36, 0.15);
}

.feature-card h3 {
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.feature-card p {
    color: #9ca3af;
}

@media (max-width: 768px) {
    .features {
        padding: 3rem 0;
    }
    .features-grid {
        gap: 1rem;
    }
    .feature-card {
        padding: 1.25rem;
    }
    .feature-card h3 {
        font-size: 1.125rem;
    }
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: linear-gradient(180deg, #000, #111);
}

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

.service-card {
    transition: all 0.5s ease;
}

.service-card:hover {
    border-color: rgba(251, 191, 36, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.2);
}

.service-image {
    position: relative;
    height: 256px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.6));
}

.service-price {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: #fbbf24;
    color: #000;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.service-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.service-content p {
    color: #9ca3af;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    margin-top: auto;
}

.service-meta span:first-child {
    color: #6b7280;
}

.service-link {
    color: #fbbf24;
    font-weight: 500;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: linear-gradient(180deg, #111, #000);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid #374151;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    background: rgba(31, 41, 55, 0.7);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #fbbf24;
}

.faq-icon {
    transition: transform 0.3s ease;
    stroke: #9ca3af;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    stroke: #fbbf24;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #9ca3af;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-contact {
    text-align: center;
    margin-top: 3rem;
}

.faq-contact p {
    color: #6b7280;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

/* Team Section */
.team {
    padding: 5rem 0;
    background: linear-gradient(180deg, #000, #111);
}

.team-members {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.team-member {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.team-member.reverse .member-image {
    order: 2;
}

.team-member.reverse .member-info {
    order: 1;
}

.member-image {
    position: relative;
}

.image-decoration {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 16px;
    transform: rotate(3deg);
    transition: transform 0.5s ease;
}

.member-image:hover .image-decoration {
    transform: rotate(6deg);
}

.member-image img {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
}

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

.member-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.member-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.member-header h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
}

.member-position {
    font-size: 1.25rem;
    color: #fbbf24;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.member-experience {
    display: inline-block;
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(251, 191, 36, 0.3);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-description {
    font-size: 1.125rem;
    color: #9ca3af;
    line-height: 1.6;
}

.member-specialization h4,
.member-achievements h4 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

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

.tag {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(251, 191, 36, 0.3);
    font-size: 0.875rem;
}

.member-achievements ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.member-achievements li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #9ca3af;
}

.member-achievements li::before {
    content: "🏆";
    font-size: 1.25rem;
}

.member-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.stat {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid #374151;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Mission Section */
.mission {
    padding: 5rem 0;
    background: linear-gradient(180deg, #000, #111);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(180deg, #111, #000);
}

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

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-card {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid #374151;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: border-color 0.3s ease;
}

.contact-card:hover {
    border-color: rgba(251, 191, 36, 0.5);
}

.contact-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
}

.contact-icon.whatsapp {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.contact-icon.instagram {
    background: rgba(233, 30, 99, 0.1);
    color: #e91e63;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-card h3 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 1rem;
}

.contact-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fbbf24;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
    margin-bottom: 0.5rem;
}

.contact-link:hover {
    color: #f59e0b;
}

.contact-card p {
    color: #6b7280;
    font-size: 0.875rem;
}

.address-info p {
    color: #9ca3af;
    margin-bottom: 0.25rem;
}

.address-info p:first-child {
    color: #fff;
    font-weight: 600;
}

.working-hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.working-hours .icon {
    width: 16px;
    height: 16px;
}

.map-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.map-info h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.map-info h3::before {
    content: "📍";
    font-size: 1.25rem;
}

.map-container {
    min-height: 320px;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #374151;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

/* Ensure 2GIS widget fits container */
.map-container iframe,
.map-container > div {
    width: 100% !important;
}

.map-container:hover {
    filter: grayscale(0%);
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-feature {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
}

.location-feature h4 {
    font-size: 1.25rem;
    color: #fbbf24;
    margin-bottom: 0.75rem;
}

.location-feature p {
    color: #9ca3af;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.location-feature ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.location-feature li {
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-feature li::before {
    content: "•";
    color: #fbbf24;
    font-weight: bold;
}

.cta-section {
    margin-top: 4rem;
}

.cta-card {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.2));
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-card h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-card p {
    font-size: 1.25rem;
    color: #9ca3af;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Footer */
.footer {
    background: #000;
    border-top: 1px solid #374151;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand .logo h3 {
    font-size: 1.25rem;
    color: #fff;
}

.footer-brand .logo p {
    font-size: 0.875rem;
    color: #fbbf24;
}

.footer-description {
    color: #6b7280;
    line-height: 1.6;
}

.footer-services h4,
.footer-contact h4 {
    font-size: 1.125rem;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-services ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-services a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-services a:hover {
    color: #fbbf24;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #6b7280;
}

.footer-contact-item .icon {
    color: #fbbf24;
    width: 16px;
    height: 16px;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #6b7280;
    font-size: 0.875rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-content {
    background: #111;
    border: 1px solid #374151;
    border-radius: 16px;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.modal-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gallery-main {
    position: relative;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.gallery-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.gallery-btn.prev {
    left: 1rem;
}

.gallery-btn.next {
    right: 1rem;
}

.gallery-btn svg {
    width: 20px;
    height: 20px;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #6b7280;
    cursor: pointer;
    transition: background 0.3s ease;
}

.gallery-dot.active {
    background: #fbbf24;
}

.modal-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.modal-info h2 {
    font-size: 2rem;
    color: #fbbf24;
}

.modal-info p {
    color: #9ca3af;
}

.modal-details h4 {
    font-size: 1.25rem;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.modal-price-time {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.price-info h5,
.time-info h5 {
    font-size: 1rem;
    color: #fbbf24;
    margin-bottom: 0.25rem;
}

.price-info p {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.time-info p {
    font-size: 1.125rem;
    color: #9ca3af;
}

.modal-features h5 {
    font-size: 1rem;
    color: #fbbf24;
    margin-bottom: 0.75rem;
}

.modal-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.modal-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #9ca3af;
}

.modal-features li::before {
    content: "•";
    color: #fbbf24;
    font-weight: bold;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fbbf24;
    flex-shrink: 0;
}

.modal-book-btn {
    margin-top: 1rem;
    font-size: 1.125rem;
    padding: 1rem 1.5rem;
    align-self: center;
    justify-self: center;
    grid-column: 1 / -1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-contacts .phone-number span {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .team-member {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-member.reverse .member-image,
    .team-member.reverse .member-info {
        order: unset;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    /* Make contact actions full width on mobile */
    .contact-card .btn,
    .contact-card .contact-link {
        width: 100%;
        display: inline-flex;
        justify-content: center;
    }
    
    /* Map height tuning for tablets/phones */
    .map-container iframe {
        height: 360px !important;
    }
    
    .member-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .modal-content {
        margin: 1rem;
        max-height: 95vh;
    }
    
    .member-image img {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 12px 0;
    }
    
    .logo-text h1 {
        font-size: 16px;
    }
    
    .logo-text p {
        font-size: 11px;
    }
    
    .hero-buttons .btn {
        font-size: 16px;
        padding: 14px 24px;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .gallery-main {
        height: 300px;
    }
    
    .cta-card {
        padding: 2rem 1rem;
    }
    
    /* Smaller contact link text on very small screens */
    .contact-link {
        font-size: 1.25rem;
    }
    
    /* Map height tuning for small phones */
    .map-container iframe {
        height: 300px !important;
    }
}
/* Mobile modal enhancements and scroll locking */
body.modal-open {
    overflow: hidden;
    touch-action: none;
}

/* Improve modal scroll behavior on touch devices */
.modal-content {
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

/* Prevent long text from causing overflow inside modal */
.modal-info p,
.modal-details p,
.modal-features li {
    word-break: break-word;
}

/* Tablet adjustments */
@media (max-width: 768px) {
    .modal.active {
        padding: 1rem;
    }
    .gallery-main {
        height: 340px;
    }
    .modal-price-time {
        grid-template-columns: 1fr;
    }
    .gallery-dots {
        gap: 0.75rem;
    }
    .gallery-dot {
        width: 14px;
        height: 14px;
    }
    .gallery-btn {
        width: 48px;
        height: 48px;
    }
    .modal-close {
        top: max(0.5rem, env(safe-area-inset-top));
        right: max(0.5rem, env(safe-area-inset-right));
        width: 44px;
        height: 44px;
    }
}

/* Small phones adjustments */
@media (max-width: 480px) {
    .modal.active {
        padding: 0.5rem;
    }
    .modal-content {
        border-radius: 12px;
    }
    .gallery-main {
        height: 300px; /* keep consistent with existing rules */
    }
    .gallery-btn {
        width: 52px;
        height: 52px;
    }
    .modal-close {
        width: 48px;
        height: 48px;
    }
}

/* Keep modal booking button full-width on small screens for usability */
@media (max-width: 768px) {
    .modal-book-btn {
        width: 100%;
        justify-content: center;
    }
}