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

:root {
    --primary-color: #FF6B35;
    --primary-dark: #E85A2A;
    --primary-light: #FF8C61;
    --secondary-color: #2C3E50;
    --accent-color: #FFA768;
    --dark: #1A1A1A;
    --dark-gray: #2C3E50;
    --medium-gray: #5A6C7D;
    --light-gray: #E8ECEF;
    --lighter-gray: #F5F7FA;
    --white: #FFFFFF;
    --success: #10b981;
    --gradient: linear-gradient(135deg, #FF6B35 0%, #FFA768 100%);
    --gradient-reverse: linear-gradient(135deg, #FFA768 0%, #FF6B35 100%);
    --dark-gradient: linear-gradient(135deg, #2C3E50 0%, #1A1A1A 100%);
    --shadow-sm: 0 2px 8px rgba(44, 62, 80, 0.08);
    --shadow-md: 0 4px 16px rgba(44, 62, 80, 0.12);
    --shadow-lg: 0 8px 32px rgba(44, 62, 80, 0.16);
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
    background: var(--white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    padding: 12px 0;
    border-bottom: 3px solid var(--primary-color);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 20px;
    font-weight: 700;
}

.logo-text {
    color: var(--dark-gray);
}

.logo-icon {
    font-size: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.logo-icon img {
    max-height: 80px;
    max-width: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.premium {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.nav a {
    font-weight: 600;
    position: relative;
    padding: 5px 0;
    color: var(--dark-gray);
    font-size: 15px;
}

.nav a:hover {
    color: var(--primary-color);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient);
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--dark-gray);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    padding: 80px 30px 30px;
    flex-direction: column;
    gap: 8px;
    z-index: 1000;
    transition: right 0.3s ease;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav a {
    padding: 15px 20px;
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-nav a:hover {
    background: var(--lighter-gray);
    color: var(--primary-color);
}

.mobile-nav-phone {
    margin-top: 20px;
    background: var(--gradient);
    color: white !important;
    text-align: center;
    padding: 16px 20px !important;
    font-size: 17px !important;
}

.mobile-nav-phone:hover {
    background: var(--gradient-reverse) !important;
}

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

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 107, 53, 0.45);
    background: var(--gradient-reverse);
}

.btn-secondary {
    background: white;
    color: var(--dark-gray);
    border: 2px solid var(--dark-gray);
}

.btn-secondary:hover {
    background: var(--dark-gray);
    color: white;
    border-color: var(--dark-gray);
}

.btn-header {
    background: var(--gradient);
    color: white;
    padding: 10px 24px;
    font-size: 14px;
}

.btn-header:hover {
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
    transform: translateY(-1px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 17px;
}

.btn-service {
    width: 100%;
    justify-content: center;
    background: var(--dark-gray);
    color: white;
}

.btn-service:hover {
    background: var(--gradient);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.phone-icon {
    font-size: 18px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark-gradient);
    padding-top: 100px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Optimize video for mobile */
@media (max-width: 768px) {
    .hero-video {
        /* Keep video visible but optimize performance */
        will-change: transform;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    /* Darker overlay on mobile for better text readability */
    .hero-overlay {
        background: linear-gradient(135deg, rgba(44, 62, 80, 0.85) 0%, rgba(26, 26, 26, 0.8) 100%);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.75) 0%, rgba(26, 26, 26, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: var(--lighter-gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.benefit-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}

.benefit-card p {
    color: var(--medium-gray);
    line-height: 1.8;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--dark-gray);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title .highlight {
    position: relative;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 12px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 167, 104, 0.2) 100%);
    z-index: -1;
    border-radius: 4px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 60px;
}

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

.service-card {
    background: white;
    border: 2px solid var(--light-gray);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.2);
}

.service-card.featured {
    background: var(--gradient);
    color: white;
    border: none;
    transform: scale(1.05);
}

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

.popular-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.service-image {
    font-size: 80px;
    margin-bottom: 20px;
    text-align: center;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-description {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-card.featured .service-description {
    color: rgba(255, 255, 255, 0.9);
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.service-card.featured .service-price {
    color: white;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: var(--lighter-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover .overlay-text {
    background: rgba(255, 107, 53, 0.95);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.before-after {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.label {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
}

.label.before {
    background: #ef4444;
}

.label.after {
    background: #10b981;
}

.placeholder-image {
    font-size: 80px;
}

.placeholder-image.shine {
    animation: shine 2s ease-in-out infinite;
}

@keyframes shine {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.gallery-note {
    text-align: center;
    color: var(--gray);
    font-style: italic;
    margin-top: 20px;
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: white;
}

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

.review-card {
    background: var(--lighter-gray);
    padding: 30px;
    border-radius: 20px;
    border-left: 5px solid var(--primary-color);
    transition: all 0.3s ease;
}

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

.review-header {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 5px;
}

.review-rating {
    font-size: 14px;
    color: var(--accent-color);
}

.review-text {
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 15px;
    font-style: italic;
}

.review-date {
    color: var(--medium-gray);
    font-size: 14px;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: var(--gradient);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta .btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    font-weight: 700;
}

.cta .btn-primary:hover {
    background: var(--lighter-gray);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

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

/* Contacts Section */
.contacts {
    padding: 100px 0;
    background: var(--lighter-gray);
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.contact-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--medium-gray);
    line-height: 1.6;
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.map-container {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 400px;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 450px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}

.map-icon {
    font-size: 100px;
    margin-bottom: 20px;
}

.map-placeholder p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.map-note {
    color: var(--medium-gray);
    font-size: 14px !important;
    font-weight: 400 !important;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: white;
    padding: 40px 0;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer-text {
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */

/* Tablet (landscape) */
@media (max-width: 1024px) {
    .hero {
        padding-top: 90px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet (portrait) and below */
@media (max-width: 968px) {
    .header {
        padding: 10px 0;
    }

    .logo {
        font-size: 16px;
    }

    .logo-icon {
        width: 50px;
        height: 50px;
    }

    .logo-icon img {
        max-width: 50px;
        max-height: 50px;
    }

    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-nav {
        display: flex;
    }

    .btn-header {
        display: none;
    }

    .hero {
        padding-top: 80px;
        min-height: 80vh;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 32px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .service-card.featured {
        transform: scale(1);
    }

    .service-card.featured:hover {
        transform: translateY(-5px);
    }

    .map-container,
    .map-image {
        min-height: 350px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }

    .header {
        padding: 8px 0;
    }

    .logo {
        font-size: 14px;
        gap: 12px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .logo-icon img {
        max-width: 40px;
        max-height: 40px;
    }

    .btn-header {
        padding: 8px 16px;
        font-size: 13px;
    }

    .hero {
        padding-top: 70px;
        min-height: 100vh;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 40px;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
        padding: 14px 32px;
        font-size: 15px;
    }

    .hero-stats {
        gap: 25px;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 13px;
    }

    .benefits,
    .services,
    .gallery,
    .reviews,
    .contacts,
    .cta {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card {
        padding: 30px 20px;
    }

    .benefit-icon {
        font-size: 48px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-image {
        font-size: 60px;
    }

    .service-title {
        font-size: 20px;
    }

    .service-price {
        font-size: 28px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .review-card {
        padding: 20px;
    }

    .cta-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .cta-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .contact-item {
        padding: 20px;
    }

    .contact-icon {
        font-size: 32px;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .map-container,
    .map-image {
        min-height: 300px;
    }

    .footer-logo {
        font-size: 18px;
        gap: 8px;
    }

    .footer-logo .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 24px;
    }

    .footer-text {
        font-size: 14px;
    }
}

/* Extra small mobile */
@media (max-width: 375px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .btn-large {
        padding: 12px 24px;
        font-size: 14px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 12px;
    }

    .section-title {
        font-size: 24px;
    }

    .service-price {
        font-size: 24px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--primary-color);
    color: white;
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Larger tap targets for touch devices */
    .btn {
        min-height: 48px;
        padding: 14px 32px;
    }

    .nav a,
    .mobile-nav a {
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    /* Remove hover effects on touch devices */
    .benefit-card:hover,
    .service-card:hover,
    .gallery-item:hover,
    .review-card:hover,
    .contact-item:hover {
        transform: none;
    }

    /* Improve video playback on mobile */
    video {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
