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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: #f7fafc;
    overflow-x: hidden;
}

a[href^="tel:"] {
    text-decoration: none !important;
    color: inherit !important;
}

.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
}

.logo img {
    width: 160px;
    height: auto;
    border-radius: 20%;
    position: fixed;
}

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

.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    min-width: 200px;
    list-style: none;
    padding: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 0.8rem 1.2rem;
    display: block;
    color: #4a5568;
    text-decoration: none;
    border-bottom: 1px solid #f7fafc;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.nav-menu a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.nav-menu a:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #4a5568;
    font-size: 1.5rem;
    cursor: pointer;
}

.hero {
    position: relative;
    height: 85vh;
    width: 100%;
    overflow: hidden;
    margin-top: 80px;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.621);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: white;
    padding: 0 2rem;
}

.hero-slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    z-index: 3;
    padding: 0 2rem;
    transform: translateY(-50%);
}

.slider-prev,
.slider-next {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255, 255, 255, 0.4);
}

.hero-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: white;
    transform: scale(1.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

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

.btn {
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    box-shadow: 0 3px 12px rgba(255, 107, 107, 0.3);
}

.btn-secondary {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.stats {
    background: white;
    padding: 60px 0;
    border-top: 1px solid #e2e8f0;
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-card:nth-child(1) .stat-number { color: #667eea; }
.stat-card:nth-child(2) .stat-number { color: #f093fb; }
.stat-card:nth-child(3) .stat-number { color: #4ecdc4; }
.stat-card:nth-child(4) .stat-number { color: #45b7d1; }

.stat-label {
    color: #718096;
    font-weight: 500;
}

.services {
    padding: 100px 0;
    background: #1a202c;
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 1rem;
}

.services .section-title {
    color: white;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

.section-title-light,
.stats .section-title {
    color: white !important;
}

.section-subtitle-light,
.stats .section-subtitle {
    color: rgba(255,255,255,0.9) !important;
}

.services .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
}

.service-card:nth-child(1)::before { background: linear-gradient(135deg, #667eea, #764ba2); }
.service-card:nth-child(2)::before { background: linear-gradient(135deg, #f093fb, #f5576c); }
.service-card:nth-child(3)::before { background: linear-gradient(135deg, #4ecdc4, #44a08d); }
.service-card:nth-child(4)::before { background: linear-gradient(135deg, #45b7d1, #96c93d); }
.service-card:nth-child(5)::before { background: linear-gradient(135deg, #fa709a, #fee140); }
.service-card:nth-child(6)::before { background: linear-gradient(135deg, #a8edea, #fed6e3); }
.service-card:nth-child(7)::before { background: linear-gradient(135deg, #ff9a9e, #fecfef); }
.service-card:nth-child(8)::before { background: linear-gradient(135deg, #a18cd1, #fbc2eb); }

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.service-card:nth-child(1) .service-icon { background: linear-gradient(135deg, #667eea, #764ba2); }
.service-card:nth-child(2) .service-icon { background: linear-gradient(135deg, #f093fb, #f5576c); }
.service-card:nth-child(3) .service-icon { background: linear-gradient(135deg, #4ecdc4, #44a08d); }
.service-card:nth-child(4) .service-icon { background: linear-gradient(135deg, #45b7d1, #96c93d); }
.service-card:nth-child(5) .service-icon { background: linear-gradient(135deg, #fa709a, #fee140); }
.service-card:nth-child(6) .service-icon { background: linear-gradient(135deg, #a8edea, #fed6e3); }
.service-card:nth-child(7) .service-icon { background: linear-gradient(135deg, #ff9a9e, #fecfef); }
.service-card:nth-child(8) .service-icon { background: linear-gradient(135deg, #a18cd1, #fbc2eb); }

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.services .service-card h3 {
    color: #1a202c;
}

.service-card p {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.services .service-card p {
    color: rgba(26, 32, 44, 0.8);
}

.service-btn {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.service-btn:hover {
    gap: 1rem;
}

.about {
    padding: 100px 0;
    background: white;
}

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

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

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
}

.feature-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: white;
    font-weight: bold;
}

.feature:nth-child(odd) .feature-icon { background: #10b981; }
.feature:nth-child(even) .feature-icon { background: #3b82f6; }

.service-areas {
    padding: 100px 0;
    background-image: url('images/Commercial chimney after  5.jpg');
    color: white;
    position: relative;
}

.service-areas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.621);
}

.service-areas .container {
    position: relative;
    z-index: 2;
}

.service-areas .section-title,
.service-areas .section-subtitle {
    color: white !important;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.area-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.area-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.area-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.area-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white !important;
}

.area-card p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.contact {
    padding: 100px 0;
    background: #f7fafc;
}

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

.contact-cards {
    display: grid;
    gap: 3.5rem;
}

.contact-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.contact-card:nth-child(1) .contact-card-icon { background: linear-gradient(135deg, #667eea, #764ba2); }
.contact-card:nth-child(2) .contact-card-icon { background: linear-gradient(135deg, #f093fb, #f5576c); }
.contact-card:nth-child(3) .contact-card-icon { background: linear-gradient(135deg, #4ecdc4, #44a08d); }
.contact-card:nth-child(4) .contact-card-icon { background: linear-gradient(135deg, #45b7d1, #96c93d); }

.contact-form {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid #e2e8f0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
}

.contact-info {
    padding: 100px 0;
    background: white;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-method {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.contact-method:nth-child(1) .contact-icon { background: linear-gradient(135deg, #667eea, #764ba2); }
.contact-method:nth-child(2) .contact-icon { background: linear-gradient(135deg, #f093fb, #f5576c); }
.contact-method:nth-child(3) .contact-icon { background: linear-gradient(135deg, #4ecdc4, #44a08d); }
.contact-method:nth-child(4) .contact-icon { background: linear-gradient(135deg, #45b7d1, #96c93d); }

.contact-method h3 {
    font-size: 1.4rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.contact-method p {
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.contact-details {
    color: #667eea;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-details a {
    color: inherit;
    text-decoration: none;
}

.contact-details a:hover {
    color: #764ba2;
}

.contact-form-section {
    padding: 100px 0;
    background: #f7fafc;
}

.contact-form h2 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.contact-form .subtitle {
    color: #718096;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.location-info {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.map-container {
    height: 300px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.location-details {
    padding: 2rem;
}

.location-details h3 {
    font-size: 1.4rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 12px;
}

.location-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.location-text h4 {
    color: #2d3748;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.location-text p {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.5;
}

.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    background: #f7fafc;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #edf2f7;
}

.faq-question h4 {
    font-size: 1.1rem;
    color: #2d3748;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #667eea;
    font-weight: 300;
}

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

.faq-answer.active {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.emergency-contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    text-align: center;
}

.emergency-content {
    max-width: 600px;
    margin: 0 auto;
}

.emergency-contact h2 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 1rem;
}

.emergency-contact p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.emergency-numbers {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.emergency-number {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 16px;
    min-width: 200px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.emergency-number:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}

.emergency-number h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.emergency-number h3 a {
    color: #667eea;
    text-decoration: none;
}

.emergency-number p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin: 0;
}

.gallery-filter {
    padding: 60px 0;
    background: white;
    border-bottom: 1px solid #e2e8f0;
}

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

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid #e2e8f0;
    background: white;
    color: #4a5568;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    border-color: #667eea;
    background: #667eea;
    color: white;
}

.gallery-section {
    padding: 60px 0;
    background: #f7fafc;
}

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

.gallery-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.gallery-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    color: white;
}

.gallery-overlay h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.gallery-info {
    padding: 1.5rem;
}

.gallery-category {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.gallery-info h3 {
    font-size: 1.2rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.gallery-info p {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.5;
}

.before-after {
    padding: 60px 0;
    background: white;
}

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

.before-after-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.before-after-item:hover {
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
}

.comparison-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 200px;
}

.before-image,
.after-image {
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.image-label {
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.before-image .image-label {
    background: rgba(239, 68, 68, 0.9);
}

.after-image .image-label {
    background: rgba(16, 185, 129, 0.9);
}

.comparison-info {
    padding: 1.5rem;
}

.comparison-info h4 {
    color: #2d3748;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.comparison-info p {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.6;
}

.video-section {
    padding: 60px 0;
    background: #f7fafc;
}

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

.video-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.video-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
}

.video-info {
    padding: 1.5rem;
}

.video-info h4 {
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.video-info p {
    color: #4a5568;
    font-size: 0.9rem;
}

.testimonials {
    padding: 60px 0;
    background: white;
}

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

.testimonial-item {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.testimonial-content {
    font-style: italic;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.author-info h5 {
    color: #2d3748;
    margin-bottom: 0.2rem;
}

.author-info p {
    color: #718096;
    font-size: 0.8rem;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    padding: 2rem;
}

.modal-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
}

.modal-image {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 12px;
}

.modal-close {
    position: absolute;
    top: -3rem;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
}

.footer {
    background: #1a202c;
    color: white;
    padding: 80px 0 30px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #667eea;
}

.footer-section p,
.footer-section a {
    color: #a0aec0;
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #667eea;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #667eea;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 2rem;
    text-align: center;
    color: #718096;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    z-index: 9999;
    transition: width 0.3s ease;
}

.about-text h2 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 60px 0;
    margin-top: 80px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stats {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    padding: 60px 0;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-item .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-item .stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.breadcrumb {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: white;
}

.about-story {
    padding: 60px 0;
    background: white;
}

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

.mvv-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

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

.mvv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.mvv-card:nth-child(1) .mvv-icon { background: linear-gradient(135deg, #667eea, #764ba2); }
.mvv-card:nth-child(2) .mvv-icon { background: linear-gradient(135deg, #f093fb, #f5576c); }
.mvv-card:nth-child(3) .mvv-icon { background: linear-gradient(135deg, #4ecdc4, #44a08d); }

.mvv-card h3 {
    font-size: 1.4rem;
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 700;
}

.mvv-card p {
    color: #4a5568;
    line-height: 1.6;
}

.team {
    padding: 60px 0;
    background: white;
}

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

.team-member {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.team-member:hover {
    border-color: #667eea;
    transform: translateY(-5px);
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.team-member:nth-child(1) .team-avatar { background: linear-gradient(135deg, #667eea, #764ba2); }
.team-member:nth-child(2) .team-avatar { background: linear-gradient(135deg, #f093fb, #f5576c); }
.team-member:nth-child(3) .team-avatar { background: linear-gradient(135deg, #4ecdc4, #44a08d); }
.team-member:nth-child(4) .team-avatar { background: linear-gradient(135deg, #45b7d1, #96c93d); }

.team-member h4 {
    font-size: 1.2rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.team-role {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1rem;
}

.why-choose {
    padding: 60px 0;
    background: #f7fafc;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

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

.feature-card:nth-child(even) {
    border-left-color: #f093fb;
}

.feature-card:nth-child(3n) {
    border-left-color: #4ecdc4;
}

.feature-card .feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-item .stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-item .stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-section {
    padding: 60px 0;
    background: white;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.2rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #4a5568;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-section .btn-secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.cta-section .btn-secondary:hover {
    background: #667eea;
    color: white;
}

.about-highlight {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    margin: 2rem 0;
}

.service-categories {
    padding: 100px 0;
    background: white;
}

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

.category-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
}

.category-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.category-card:nth-child(1) .category-icon { background: linear-gradient(135deg, #667eea, #764ba2); }
.category-card:nth-child(2) .category-icon { background: linear-gradient(135deg, #f093fb, #f5576c); }
.category-card:nth-child(3) .category-icon { background: linear-gradient(135deg, #4ecdc4, #44a08d); }

.category-card h3 {
    font-size: 1.4rem;
    color: #2d3748;
    margin-bottom: 0.8rem;
}

.category-card p {
    color: #718096;
    margin-bottom: 1.5rem;
}

.category-services {
    list-style: none;
    text-align: left;
}

.category-services li {
    padding: 0.3rem 0;
    color: #4a5568;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-services li::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    width: 16px;
    height: 16px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.detailed-services {
    padding: 100px 0;
    background: #f7fafc;
}

.service-detail {
    background: white;
    border-radius: 16px;
    margin-bottom: 2rem;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.service-detail-header {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-detail-header:hover {
    background: #f7fafc;
}

.service-detail-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.service-detail:nth-child(1) .service-detail-icon { background: linear-gradient(135deg, #667eea, #764ba2); }
.service-detail:nth-child(2) .service-detail-icon { background: linear-gradient(135deg, #f093fb, #f5576c); }
.service-detail:nth-child(3) .service-detail-icon { background: linear-gradient(135deg, #4ecdc4, #44a08d); }
.service-detail:nth-child(4) .service-detail-icon { background: linear-gradient(135deg, #45b7d1, #96c93d); }
.service-detail:nth-child(5) .service-detail-icon { background: linear-gradient(135deg, #fa709a, #fee140); }
.service-detail:nth-child(6) .service-detail-icon { background: linear-gradient(135deg, #a8edea, #fed6e3); }
.service-detail:nth-child(7) .service-detail-icon { background: linear-gradient(135deg, #ff9a9e, #fecfef); }
.service-detail:nth-child(8) .service-detail-icon { background: linear-gradient(135deg, #a18cd1, #fbc2eb); }

.service-detail-content {
    flex: 1;
}

.service-detail h3 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 0.3rem;
}

.service-detail-price {
    color: #667eea;
    font-weight: 600;
    font-size: 0.9rem;
}

.service-detail-body {
    padding: 0 2rem 2rem 2rem;
    display: none;
}

.service-detail-body.active {
    display: block;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.service-feature {
    background: #f7fafc;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-feature::before {
    content: "⭐";
    font-size: 1rem;
}

.pricing {
    padding: 100px 0;
    background: white;
}

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

.pricing-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border-color: #667eea;
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card:hover {
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
}

.pricing-title {
    font-size: 1.4rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.pricing-period {
    color: #718096;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-features li::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-top: 1px solid #e2e8f0;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: #f7fafc;
        margin-top: 0.5rem;
    }

    .dropdown-menu a {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .container {
        padding: 0 1rem;
    }

    .services-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 1.8rem;
    }

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

    .footer-company {
        max-width: none;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .contact-info-item {
        margin-bottom: 1rem;
    }

    .contact-methods {
        display: grid;
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .emergency-numbers {
        flex-direction: column;
        align-items: center;
    }

    .categories-grid,
    .service-detail-body {
        display: none;
    }

    .service-detail-body.active {
        display: block;
    }

    .gallery-grid,
    .before-after-grid,
    .video-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .comparison-images {
        grid-template-columns: 1fr;
        height: 400px;
    }

    .filter-buttons {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
    }

    .modal {
        padding: 1rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .service-grid,
    .pricing-grid,
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        justify-content: center;
    }

    .pricing-card.featured {
        transform: none;
    }

    .location-content {
        grid-template-columns: 1fr;
    }

    .service-categories {
        padding: 60px 0;
        background: white;
    }

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

    .category-card {
        background: white;
        border-radius: 16px;
        padding: 2rem;
        border: 2px solid #e2e8f0;
        transition: all 0.3s ease;
        text-align: center;
    }

    .category-card:hover {
        border-color: #667eea;
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
    }

    .category-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 1.5rem;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
    }

    .category-card:nth-child(1) .category-icon { background: linear-gradient(135deg, #667eea, #764ba2); }
    .category-card:nth-child(2) .category-icon { background: linear-gradient(135deg, #f093fb, #f5576c); }
    .category-card:nth-child(3) .category-icon { background: linear-gradient(135deg, #4ecdc4, #44a08d); }

    .category-card h3 {
        font-size: 1.4rem;
        color: #2d3748;
        margin-bottom: 0.8rem;
    }

    .category-card p {
        color: #718096;
        margin-bottom: 1.5rem;
    }

    .category-services {
        list-style: none;
        text-align: left;
    }

    .category-services li {
        padding: 0.3rem 0;
        color: #4a5568;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .category-services li::before {
        content: "✓";
        color: #10b981;
        font-weight: bold;
        width: 16px;
        height: 16px;
        background: rgba(16, 185, 129, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.7rem;
    }

    .detailed-services {
        padding: 60px 0;
        background: #f7fafc;
    }

    .service-detail {
        background: white;
        border-radius: 16px;
        margin-bottom: 2rem;
        overflow: hidden;
        border: 1px solid #e2e8f0;
    }

    .service-detail-header {
        padding: 1.5rem 2rem;
        display: flex;
        align-items: center;
        gap: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .service-detail-header:hover {
        background: #f7fafc;
    }

    .service-detail-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
    }

    .service-detail:nth-child(1) .service-detail-icon { background: linear-gradient(135deg, #667eea, #764ba2); }
    .service-detail:nth-child(2) .service-detail-icon { background: linear-gradient(135deg, #f093fb, #f5576c); }
    .service-detail:nth-child(3) .service-detail-icon { background: linear-gradient(135deg, #4ecdc4, #44a08d); }
    .service-detail:nth-child(4) .service-detail-icon { background: linear-gradient(135deg, #45b7d1, #96c93d); }
    .service-detail:nth-child(5) .service-detail-icon { background: linear-gradient(135deg, #fa709a, #fee140); }
    .service-detail:nth-child(6) .service-detail-icon { background: linear-gradient(135deg, #a8edea, #fed6e3); }
    .service-detail:nth-child(7) .service-detail-icon { background: linear-gradient(135deg, #ff9a9e, #fecfef); }
    .service-detail:nth-child(8) .service-detail-icon { background: linear-gradient(135deg, #a18cd1, #fbc2eb); }

    .service-detail-content {
        flex: 1;
    }

    .service-detail h3 {
        font-size: 1.3rem;
        color: #2d3748;
        margin-bottom: 0.3rem;
    }

    .service-detail-price {
        color: #667eea;
        font-weight: 600;
        font-size: 0.9rem;
    }

    .service-detail-body {
        padding: 0 2rem 2rem 2rem;
        display: none;
    }

    .service-detail-body.active {
        display: block;
    }

    .service-features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .service-feature {
        background: #f7fafc;
        padding: 1rem;
        border-radius: 8px;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .service-feature::before {
        content: "⭐";
        font-size: 1rem;
    }

    .pricing {
        padding: 60px 0;
        background: white;
    }

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

    .pricing-card {
        background: white;
        border: 2px solid #e2e8f0;
        border-radius: 16px;
        padding: 2rem;
        text-align: center;
        transition: all 0.3s ease;
        position: relative;
    }

    .pricing-card.featured {
        border-color: #667eea;
        transform: scale(1.05);
    }

    .pricing-card.featured::before {
        content: "Most Popular";
        position: absolute;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(135deg, #667eea, #764ba2);
        color: white;
        padding: 0.3rem 1rem;
        border-radius: 15px;
        font-size: 0.8rem;
        font-weight: 600;
    }

    .pricing-card:hover {
        border-color: #667eea;
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
    }

    .pricing-title {
        font-size: 1.4rem;
        color: #2d3748;
        margin-bottom: 1rem;
    }

    .pricing-price {
        font-size: 2.5rem;
        font-weight: 700;
        color: #667eea;
        margin-bottom: 0.5rem;
    }

    .pricing-period {
        color: #718096;
        margin-bottom: 2rem;
    }

    .pricing-features {
        list-style: none;
        margin-bottom: 2rem;
    }

    .pricing-features li {
        padding: 0.5rem 0;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .pricing-features li::before {
        content: "✓";
        color: #10b981;
        font-weight: bold;
    }

    .footer-company .logo-footer {
        font-size: 1.5rem;
        font-weight: 700;
        color: #667eea;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .footer-company .logo-footer::before {
        content: "✨";
        font-size: 1.2rem;
    }

    .gallery-filter {
        padding: 40px 0;
        background: white;
        border-bottom: 1px solid #e2e8f0;
    }

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

    .filter-btn {
        padding: 0.8rem 1.5rem;
        border: 2px solid #e2e8f0;
        background: white;
        color: #4a5568;
        border-radius: 25px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-weight: 500;
    }

    .filter-btn.active,
    .filter-btn:hover {
        border-color: #667eea;
        background: #667eea;
        color: white;
    }

    .gallery-section {
        padding: 60px 0;
        background: #f7fafc;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        justify-items: center;
    }

    .gallery-item {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        cursor: pointer;
        max-width: 320px;
        width: 100%;
    }

    .gallery-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }

    .gallery-image {
        width: 100%;
        height: 250px;
        background-size: cover;
        background-position: center;
        position: relative;
    }

    .gallery-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
        opacity: 0;
        transition: all 0.3s ease;
        display: flex;
        align-items: flex-end;
        padding: 1.5rem;
    }

    .gallery-item:hover .gallery-overlay {
        opacity: 1;
    }

    .gallery-overlay-content {
        color: white;
    }

    .gallery-overlay h4 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }

    .gallery-overlay p {
        font-size: 0.9rem;
        opacity: 0.9;
    }

    .gallery-info {
        padding: 1.5rem;
    }

    .gallery-category {
        display: inline-block;
        background: linear-gradient(135deg, #667eea, #764ba2);
        color: white;
        padding: 0.3rem 0.8rem;
        border-radius: 15px;
        font-size: 0.8rem;
        font-weight: 500;
        margin-bottom: 1rem;
    }

    .gallery-info h3 {
        font-size: 1.2rem;
        color: #2d3748;
        margin-bottom: 0.5rem;
    }

    .gallery-info p {
        color: #4a5568;
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .before-after {
        padding: 60px 0;
        background: white;
    }

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

    .before-after-item {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        border: 2px solid #e2e8f0;
        transition: all 0.3s ease;
    }

    .before-after-item:hover {
        border-color: #667eea;
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
    }

    .comparison-images {
        display: grid;
        grid-template-columns: 1fr 1fr;
        height: 200px;
    }

    .before-image,
    .after-image {
        background-size: cover;
        background-position: center;
        position: relative;
        display: flex;
        align-items: flex-end;
        padding: 1rem;
    }

    .image-label {
        background: rgba(0,0,0,0.7);
        color: white;
        padding: 0.3rem 0.8rem;
        border-radius: 15px;
        font-size: 0.8rem;
        font-weight: 600;
    }

    .before-image .image-label {
        background: rgba(239, 68, 68, 0.9);
    }

    .after-image .image-label {
        background: rgba(16, 185, 129, 0.9);
    }

    .comparison-info {
        padding: 1.5rem;
    }

    .comparison-info h4 {
        color: #2d3748;
        margin-bottom: 0.8rem;
        font-size: 1.1rem;
    }

    .comparison-info p {
        color: #4a5568;
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.9);
        z-index: 2000;
        padding: 2rem;
    }

    .modal-content {
        position: relative;
        max-width: 800px;
        margin: 0 auto;
        top: 50%;
        transform: translateY(-50%);
    }

    .modal-image {
        width: 100%;
        max-height: 70vh;
        object-fit: contain;
        border-radius: 12px;
    }

    .modal-close {
        position: absolute;
        top: -3rem;
        right: 0;
        color: white;
        font-size: 2rem;
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.2);
        border-radius: 50%;
    }

    .testimonials {
        padding: 60px 0;
        background: white;
    }

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

    .testimonial-item {
        background: #f7fafc;
        padding: 2rem;
        border-radius: 16px;
        border-left: 4px solid #667eea;
        transition: all 0.3s ease;
    }

    .testimonial-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }

    .testimonial-content {
        font-style: italic;
        color: #4a5568;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: linear-gradient(135deg, #667eea, #764ba2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: bold;
        font-size: 1.2rem;
    }

    .author-info h5 {
        color: #2d3748;
        margin-bottom: 0.2rem;
    }

    .author-info p {
        color: #718096;
        font-size: 0.8rem;
    }

    .video-section {
        padding: 60px 0;
        background: #f7fafc;
    }

    .video-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
        justify-items: center;
    }

    .video-item {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        max-width: 350px;
        width: 100%;
    }

    .video-thumbnail {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 16px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .video-thumbnail:hover {
        transform: scale(1.05);
    }

    .video-info {
        padding: 1.5rem;
    }

    .video-info h4 {
        color: #2d3748;
        margin-bottom: 0.5rem;
    }

    .video-info p {
        color: #4a5568;
        font-size: 0.9rem;
    }

    .contact-info {
        padding: 60px 0;
        background: white;
    }

    .contact-methods {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .contact-method {
        background: white;
        padding: 2.5rem;
        border-radius: 16px;
        text-align: center;
        border: 2px solid #e2e8f0;
        transition: all 0.3s ease;
    }

    .contact-method:hover {
        border-color: #667eea;
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
    }

    .contact-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 1.5rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: white;
    }

    .contact-method:nth-child(1) .contact-icon { background: linear-gradient(135deg, #667eea, #764ba2); }
    .contact-method:nth-child(2) .contact-icon { background: linear-gradient(135deg, #f093fb, #f5576c); }
    .contact-method:nth-child(3) .contact-icon { background: linear-gradient(135deg, #4ecdc4, #44a08d); }
    .contact-method:nth-child(4) .contact-icon { background: linear-gradient(135deg, #45b7d1, #96c93d); }

    .contact-method h3 {
        font-size: 1.4rem;
        color: #2d3748;
        margin-bottom: 1rem;
    }

    .contact-method p {
        color: #4a5568;
        margin-bottom: 1.5rem;
    }

    .contact-details {
        color: #667eea;
        font-weight: 600;
        font-size: 1.1rem;
    }

    .contact-details a {
        color: inherit;
        text-decoration: none;
    }

    .contact-details a:hover {
        color: #764ba2;
    }

    .contact-form-section {
        padding: 60px 0;
        background: #f7fafc;
    }

    .contact-form h2 {
        font-size: 1.8rem;
        color: #2d3748;
        margin-bottom: 0.5rem;
    }

    .contact-form .subtitle {
        color: #718096;
        margin-bottom: 2rem;
    }

    .location-info {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid #e2e8f0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

    .map-container {
        height: 300px;
        background: linear-gradient(135deg, #667eea, #764ba2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.2rem;
    }

    .location-details {
        padding: 2rem;
    }

    .location-details h3 {
        font-size: 1.4rem;
        color: #2d3748;
        margin-bottom: 1.5rem;
    }

    .location-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;
        padding: 1rem;
        background: #f7fafc;
        border-radius: 12px;
    }

    .location-icon {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #667eea, #764ba2);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .location-text h4 {
        color: #2d3748;
        margin-bottom: 0.3rem;
        font-size: 1rem;
    }

    .location-text p {
        color: #4a5568;
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .faq-section {
        padding: 60px 0;
        background: white;
    }

    .faq-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .faq-item {
        background: white;
        border: 2px solid #e2e8f0;
        border-radius: 12px;
        margin-bottom: 1rem;
        overflow: hidden;
    }

    .faq-question {
        padding: 1.5rem;
        cursor: pointer;
        background: #f7fafc;
        border-bottom: 1px solid #e2e8f0;
        transition: all 0.3s ease;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .faq-question:hover {
        background: #edf2f7;
    }

    .faq-question h4 {
        color: #2d3748;
        font-weight: 600;
    }

    .faq-toggle {
        font-size: 1.2rem;
        color: #667eea;
        transition: transform 0.3s ease;
    }

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

    .faq-answer.active {
        padding: 1.5rem;
        max-height: 200px;
    }

    .faq-answer p {
        color: #4a5568;
        line-height: 1.6;
    }

    .emergency-contact {
        padding: 60px 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        text-align: center;
    }

    .emergency-content {
        max-width: 600px;
        margin: 0 auto;
    }

    .emergency-contact h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .emergency-contact p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        opacity: 0.9;
    }

    .emergency-numbers {
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .emergency-number {
        background: rgba(255, 255, 255, 0.1);
        padding: 1.5rem 2rem;
        border-radius: 15px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .emergency-number h3 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .emergency-number p {
        font-size: 0.9rem;
        opacity: 0.8;
        margin: 0;
    }

    .hero-section {
        padding: 80px 0;
        background: white;
    }

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

    .hero-text h2 {
        font-size: 2.5rem;
        color: #2d3748;
        margin-bottom: 1.5rem;
        font-weight: 700;
    }

    .hero-text p {
        font-size: 1.1rem;
        color: #718096;
        margin-bottom: 2rem;
        line-height: 1.7;
    }

    .hero-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .hero-feature {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem;
    }

    .hero-feature-icon {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: #10b981;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
        font-weight: bold;
    }

    .hero-image {
        position: relative;
    }

    .hero-image img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: 20px;
    }

    .hero-stats {
        display: flex;
        gap: 2rem;
        margin-top: 2rem;
    }

    .hero-stat {
        text-align: center;
    }

    .hero-stat-number {
        font-size: 2rem;
        font-weight: 700;
        color: #667eea;
    }

    .hero-stat-label {
        font-size: 0.9rem;
        color: #718096;
    }

    .service-details {
        padding: 80px 0;
        background: #f7fafc;
    }

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

    .service-card {
        background: white;
        border-radius: 16px;
        padding: 2rem;
        border: 1px solid #e2e8f0;
        transition: all 0.3s ease;
    }

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

    .service-card ul {
        list-style: none;
        margin-top: 1rem;
    }

    .service-card li {
        padding: 0.3rem 0;
        color: #4a5568;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .service-card li::before {
        content: "✓";
        color: #10b981;
        font-weight: bold;
        width: 16px;
        height: 16px;
        background: rgba(16, 185, 129, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.7rem;
    }

    .pricing-section {
        padding: 80px 0;
        background: white;
    }

    .pricing-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .pricing-header h2 {
        font-size: 2.5rem;
        color: #2d3748;
        margin-bottom: 1rem;
        font-weight: 700;
    }

    .pricing-header p {
        font-size: 1.1rem;
        color: #718096;
    }

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

    .pricing-card {
        background: white;
        border: 2px solid #e2e8f0;
        border-radius: 20px;
        padding: 2.5rem 2rem;
        text-align: center;
        transition: all 0.3s ease;
        position: relative;
    }

    .pricing-card.featured {
        border-color: #667eea;
        transform: scale(1.05);
        box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
    }

    .pricing-card.featured::before {
        content: "Most Popular";
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(135deg, #667eea, #764ba2);
        color: white;
        padding: 0.5rem 1.5rem;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 600;
    }

    .pricing-card:hover {
        border-color: #667eea;
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
    }

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

    .pricing-card .pricing-title {
        font-size: 1.4rem;
        color: #2d3748;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .pricing-card .pricing-price {
        font-size: 3rem;
        font-weight: 800;
        color: #667eea;
        margin-bottom: 0.5rem;
    }

    .pricing-card .pricing-period {
        color: #718096;
        margin-bottom: 2rem;
        font-size: 0.9rem;
    }

    .pricing-card .pricing-features {
        list-style: none;
        margin-bottom: 2rem;
        text-align: left;
    }

    .pricing-card .pricing-features li {
        padding: 0.5rem 0;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: #4a5568;
    }

    .pricing-card .pricing-features li::before {
        content: "✓";
        color: #10b981;
        font-weight: bold;
        width: 20px;
        height: 20px;
        background: rgba(16, 185, 129, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
    }

    .btn-secondary {
        background: linear-gradient(135deg, #f093fb, #f5576c);
    }

    .process-section {
        padding: 80px 0;
        background: #1a202c;
        color: white;
    }

    .process-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .process-header h2 {
        font-size: 2.5rem;
        color: white;
        margin-bottom: 1rem;
        font-weight: 700;
    }

    .process-header p {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.8);
    }

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

    .process-step {
        text-align: center;
        position: relative;
    }

    .process-step-number {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: linear-gradient(135deg, #667eea, #764ba2);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 700;
        margin: 0 auto 1.5rem;
    }

    .process-step h3 {
        font-size: 1.3rem;
        color: white;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .process-step p {
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.6;
    }

    .gallery-section {
        padding: 80px 0;
        background: white;
    }

    .gallery-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .gallery-header h2 {
        font-size: 2.5rem;
        color: #2d3748;
        margin-bottom: 1rem;
        font-weight: 700;
    }

    .gallery-header p {
        color: #718096;
    }

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

    .gallery-section .gallery-item {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        aspect-ratio: 4/3;
    }

    .gallery-section .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.3s ease;
    }

    .gallery-section .gallery-item:hover img {
        transform: scale(1.05);
    }

    .gallery-section .gallery-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
        opacity: 0;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 600;
    }

    .gallery-section .gallery-item:hover .gallery-overlay {
        opacity: 1;
    }

    .cta-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        text-align: center;
    }

    .cta-section .cta-content h2 {
        font-size: 2.5rem;
        color: white;
        margin-bottom: 1rem;
        font-weight: 700;
    }

    .cta-section .cta-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        opacity: 0.9;
    }

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

    .btn-cta {
        background: #0a295b;
        color: #667eea !important;
        padding: 15px 30px;
        border: none;
        border-radius: 30px;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.3s ease;
        font-size: 1rem;
    }

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

    .btn-cta-secondary {
        background: transparent;
        color: white;
        border: 2px solid white;
    }

    .btn-cta-secondary:hover {
        background: white;
        color: #667eea;
    }

    .page-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('images/background2.jpg') center/cover;
        opacity: 0.2;
        z-index: 1;
    }

    .page-header h1 {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .logo-footer {
        font-size: 1.5rem;
        font-weight: 700;
        color: #667eea;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .logo-footer::before {
        content: "✨";
        font-size: 1.2rem;
    }

    .gallery-filter {
        padding: 40px 0;
        background: white;
        border-bottom: 1px solid #e2e8f0;
    }

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

    .filter-btn {
        padding: 0.8rem 1.5rem;
        border: 2px solid #e2e8f0;
        background: white;
        color: #4a5568;
        border-radius: 25px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-weight: 500;
    }

    .filter-btn.active,
    .filter-btn:hover {
        border-color: #667eea;
        background: #667eea;
        color: white;
    }

    .gallery-section {
        padding: 60px 0;
        background: #f7fafc;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        justify-items: center;
    }

    .gallery-item {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        cursor: pointer;
        max-width: 320px;
        width: 100%;
    }

    .gallery-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }

    .gallery-image {
        width: 100%;
        height: 250px;
        background-size: cover;
        background-position: center;
        position: relative;
    }

    .gallery-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
        opacity: 0;
        transition: all 0.3s ease;
        display: flex;
        align-items: flex-end;
        padding: 1.5rem;
    }

    .gallery-item:hover .gallery-overlay {
        opacity: 1;
    }

    .gallery-overlay-content {
        color: white;
    }

    .gallery-overlay h4 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }

    .gallery-overlay p {
        font-size: 0.9rem;
        opacity: 0.9;
    }

    .gallery-info {
        padding: 1.5rem;
    }

    .gallery-category {
        display: inline-block;
        background: linear-gradient(135deg, #667eea, #764ba2);
        color: white;
        padding: 0.3rem 0.8rem;
        border-radius: 15px;
        font-size: 0.8rem;
        font-weight: 500;
        margin-bottom: 1rem;
    }

    .gallery-info h3 {
        font-size: 1.2rem;
        color: #2d3748;
        margin-bottom: 0.5rem;
    }

    .gallery-info p {
        color: #4a5568;
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .before-after {
        padding: 60px 0;
        background: white;
    }

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

    .before-after-item {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        border: 2px solid #e2e8f0;
        transition: all 0.3s ease;
    }

    .before-after-item:hover {
        border-color: #667eea;
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
    }

    .comparison-images {
        display: grid;
        grid-template-columns: 1fr 1fr;
        height: 200px;
    }

    .before-image,
    .after-image {
        background-size: cover;
        background-position: center;
        position: relative;
        display: flex;
        align-items: flex-end;
        padding: 1rem;
    }

    .image-label {
        background: rgba(0,0,0,0.7);
        color: white;
        padding: 0.3rem 0.8rem;
        border-radius: 15px;
        font-size: 0.8rem;
        font-weight: 600;
    }

    .before-image .image-label {
        background: rgba(239, 68, 68, 0.9);
    }

    .after-image .image-label {
        background: rgba(16, 185, 129, 0.9);
    }

    .comparison-info {
        padding: 1.5rem;
    }

    .comparison-info h4 {
        color: #2d3748;
        margin-bottom: 0.8rem;
        font-size: 1.1rem;
    }

    .comparison-info p {
        color: #4a5568;
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.9);
        z-index: 2000;
        padding: 2rem;
    }

    .modal-content {
        position: relative;
        max-width: 800px;
        margin: 0 auto;
        top: 50%;
        transform: translateY(-50%);
    }

    .modal-image {
        width: 100%;
        max-height: 70vh;
        object-fit: contain;
        border-radius: 12px;
    }

    .modal-close {
        position: absolute;
        top: -3rem;
        right: 0;
        color: white;
        font-size: 2rem;
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.2);
        border-radius: 50%;
    }

    .testimonials {
        padding: 60px 0;
        background: white;
    }

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

    .testimonial-item {
        background: #f7fafc;
        padding: 2rem;
        border-radius: 16px;
        border-left: 4px solid #667eea;
        transition: all 0.3s ease;
    }

    .testimonial-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }

    .testimonial-content {
        font-style: italic;
        color: #4a5568;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: linear-gradient(135deg, #667eea, #764ba2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: bold;
        font-size: 1.2rem;
    }

    .author-info h5 {
        color: #2d3748;
        margin-bottom: 0.2rem;
    }

    .author-info p {
        color: #718096;
        font-size: 0.8rem;
    }

    .video-section {
        padding: 60px 0;
        background: #f7fafc;
    }

    .video-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
        justify-items: center;
    }

    .video-item {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        max-width: 350px;
        width: 100%;
    }

    .video-thumbnail {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 16px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .video-thumbnail:hover {
        transform: scale(1.05);
    }

    .video-info {
        padding: 1.5rem;
    }

    .video-info h4 {
        color: #2d3748;
        margin-bottom: 0.5rem;
    }

    .video-info p {
        color: #4a5568;
        font-size: 0.9rem;
    }

    .contact-info {
        padding: 60px 0;
        background: white;
    }

    .contact-methods {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .contact-method {
        background: white;
        padding: 2.5rem;
        border-radius: 16px;
        text-align: center;
        border: 2px solid #e2e8f0;
        transition: all 0.3s ease;
    }

    .contact-method:hover {
        border-color: #667eea;
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
    }

    .contact-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 1.5rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: white;
    }

    .contact-method:nth-child(1) .contact-icon { background: linear-gradient(135deg, #667eea, #764ba2); }
    .contact-method:nth-child(2) .contact-icon { background: linear-gradient(135deg, #f093fb, #f5576c); }
    .contact-method:nth-child(3) .contact-icon { background: linear-gradient(135deg, #4ecdc4, #44a08d); }
    .contact-method:nth-child(4) .contact-icon { background: linear-gradient(135deg, #45b7d1, #96c93d); }

    .contact-method h3 {
        font-size: 1.4rem;
        color: #2d3748;
        margin-bottom: 1rem;
    }

    .contact-method p {
        color: #4a5568;
        margin-bottom: 1.5rem;
    }

    .contact-details {
        color: #667eea;
        font-weight: 600;
        font-size: 1.1rem;
    }

    .contact-details a {
        color: inherit;
        text-decoration: none;
    }

    .contact-details a:hover {
        color: #764ba2;
    }

    .contact-form-section {
        padding: 60px 0;
        background: #f7fafc;
    }

    .contact-form h2 {
        font-size: 1.8rem;
        color: #2d3748;
        margin-bottom: 0.5rem;
    }

    .contact-form .subtitle {
        color: #718096;
        margin-bottom: 2rem;
    }

    .location-info {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid #e2e8f0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

    .map-container {
        height: 300px;
        background: linear-gradient(135deg, #667eea, #764ba2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.2rem;
    }

    .location-details {
        padding: 2rem;
    }

    .location-details h3 {
        font-size: 1.4rem;
        color: #2d3748;
        margin-bottom: 1.5rem;
    }

    .location-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;
        padding: 1rem;
        background: #f7fafc;
        border-radius: 12px;
    }

    .location-icon {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #667eea, #764ba2);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .location-text h4 {
        color: #2d3748;
        margin-bottom: 0.3rem;
        font-size: 1rem;
    }

    .location-text p {
        color: #4a5568;
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .faq-section {
        padding: 60px 0;
        background: white;
    }

    .faq-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .faq-item {
        background: white;
        border: 2px solid #e2e8f0;
        border-radius: 12px;
        margin-bottom: 1rem;
        overflow: hidden;
    }

    .faq-question {
        padding: 1.5rem;
        cursor: pointer;
        background: #f7fafc;
        border-bottom: 1px solid #e2e8f0;
        transition: all 0.3s ease;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .faq-question:hover {
        background: #edf2f7;
    }

    .faq-question h4 {
        color: #2d3748;
        font-weight: 600;
    }

    .faq-toggle {
        font-size: 1.2rem;
        color: #667eea;
        transition: transform 0.3s ease;
    }

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

    .faq-answer.active {
        padding: 1.5rem;
        max-height: 200px;
    }

    .faq-answer p {
        color: #4a5568;
        line-height: 1.6;
    }

    .emergency-contact {
        padding: 60px 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        text-align: center;
    }

    .emergency-content {
        max-width: 600px;
        margin: 0 auto;
    }

    .emergency-contact h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .emergency-contact p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        opacity: 0.9;
    }

    .emergency-numbers {
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .emergency-number {
        background: rgba(255, 255, 255, 0.1);
        padding: 1.5rem 2rem;
        border-radius: 15px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .emergency-number h3 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .emergency-number h3 a {
        color: white;
        text-decoration: none;
    }

    .emergency-number p {
        font-size: 0.9rem;
        opacity: 0.8;
        margin: 0;
    }

    .service-categories {
        padding: 60px 0;
        background: white;
    }

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

    .category-card {
        background: white;
        border-radius: 16px;
        padding: 2rem;
        border: 2px solid #e2e8f0;
        transition: all 0.3s ease;
        text-align: center;
    }

    .category-card:hover {
        border-color: #667eea;
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
    }

    .category-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 1.5rem;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
    }

    .category-card:nth-child(1) .category-icon { background: linear-gradient(135deg, #667eea, #764ba2); }
    .category-card:nth-child(2) .category-icon { background: linear-gradient(135deg, #f093fb, #f5576c); }
    .category-card:nth-child(3) .category-icon { background: linear-gradient(135deg, #4ecdc4, #44a08d); }

    .category-card h3 {
        font-size: 1.4rem;
        color: #2d3748;
        margin-bottom: 0.8rem;
    }

    .category-card > p {
        color: #718096;
        margin-bottom: 1.5rem;
    }

    .category-services {
        list-style: none;
        text-align: left;
    }

    .category-services li {
        padding: 0.3rem 0;
        color: #4a5568;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .category-services li::before {
        content: "✓";
        color: #10b981;
        font-weight: bold;
        width: 16px;
        height: 16px;
        background: rgba(16, 185, 129, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.7rem;
    }

    .detailed-services {
        padding: 60px 0;
        background: #f7fafc;
    }

    .service-detail {
        background: white;
        border-radius: 16px;
        margin-bottom: 2rem;
        overflow: hidden;
        border: 1px solid #e2e8f0;
    }

    .service-detail-header {
        padding: 1.5rem 2rem;
        display: flex;
        align-items: center;
        gap: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .service-detail-header:hover {
        background: #f7fafc;
    }

    .service-detail-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
    }

    .service-detail:nth-child(1) .service-detail-icon { background: linear-gradient(135deg, #667eea, #764ba2); }
    .service-detail:nth-child(2) .service-detail-icon { background: linear-gradient(135deg, #f093fb, #f5576c); }
    .service-detail:nth-child(3) .service-detail-icon { background: linear-gradient(135deg, #4ecdc4, #44a08d); }
    .service-detail:nth-child(4) .service-detail-icon { background: linear-gradient(135deg, #45b7d1, #96c93d); }
    .service-detail:nth-child(5) .service-detail-icon { background: linear-gradient(135deg, #fa709a, #fee140); }
    .service-detail:nth-child(6) .service-detail-icon { background: linear-gradient(135deg, #a8edea, #fed6e3); }
    .service-detail:nth-child(7) .service-detail-icon { background: linear-gradient(135deg, #ff9a9e, #fecfef); }
    .service-detail:nth-child(8) .service-detail-icon { background: linear-gradient(135deg, #a18cd1, #fbc2eb); }

    .service-detail-content {
        flex: 1;
    }

    .service-detail h3 {
        font-size: 1.3rem;
        color: #2d3748;
        margin-bottom: 0.3rem;
    }

    .service-detail-price {
        color: #667eea;
        font-weight: 600;
        font-size: 0.9rem;
    }

    .service-detail-body {
        padding: 0 2rem 2rem 2rem;
        display: none;
    }

    .service-detail-body.active {
        display: block;
    }

    .service-features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .service-feature {
        background: #f7fafc;
        padding: 1rem;
        border-radius: 8px;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .pricing {
        padding: 60px 0;
        background: white;
    }

    .pricing-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .pricing-header h2 {
        font-size: 2.5rem;
        color: #2d3748;
        margin-bottom: 1rem;
        font-weight: 700;
    }

    .pricing-header p {
        font-size: 1.1rem;
        color: #718096;
    }

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

    .pricing-card {
        background: white;
        border: 2px solid #e2e8f0;
        border-radius: 16px;
        padding: 2rem;
        text-align: center;
        transition: all 0.3s ease;
        position: relative;
    }

    .pricing-card.featured {
        border-color: #667eea;
        transform: scale(1.05);
    }

    .pricing-card.featured::before {
        content: "Most Popular";
        position: absolute;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(135deg, #667eea, #764ba2);
        color: white;
        padding: 0.3rem 1rem;
        border-radius: 15px;
        font-size: 0.8rem;
        font-weight: 600;
    }

    .pricing-card:hover {
        border-color: #667eea;
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
    }

    .pricing-title {
        font-size: 1.4rem;
        color: #2d3748;
        margin-bottom: 1rem;
    }

    .pricing-price {
        font-size: 2.5rem;
        font-weight: 700;
        color: #667eea;
        margin-bottom: 0.5rem;
    }

    .pricing-period {
        color: #718096;
        margin-bottom: 2rem;
    }

    .pricing-features {
        list-style: none;
        margin-bottom: 2rem;
    }

    .pricing-features li {
        padding: 0.5rem 0;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .pricing-features li::before {
        content: "✓";
        color: #10b981;
        font-weight: bold;
    }

    .features-section {
        padding: 80px 0;
        background: white;
    }

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

    .feature-item {
        text-align: center;
        padding: 2rem;
    }

    .feature-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .feature-title {
        font-size: 1.3rem;
        color: #2d3748;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .feature-description {
        color: #718096;
        line-height: 1.6;
    }

    .business-types {
        padding: 80px 0;
        background: white;
    }

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

    .business-card {
        background: #f7fafc;
        border-radius: 16px;
        padding: 2rem;
        text-align: center;
        border: 1px solid #e2e8f0;
        transition: all 0.3s ease;
    }

    .business-card:hover {
        background: white;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transform: translateY(-5px);
    }

    .business-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .business-name {
        font-size: 1.3rem;
        color: #2d3748;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .business-description {
        color: #718096;
        line-height: 1.6;
    }

    .schedule-section {
        padding: 80px 0;
        background: #f7fafc;
    }

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

    .schedule-item {
        background: white;
        border-radius: 16px;
        padding: 2rem;
        text-align: center;
        border: 1px solid #e2e8f0;
        transition: all 0.3s ease;
    }

    .schedule-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .schedule-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .schedule-name {
        font-size: 1.3rem;
        color: #2d3748;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .schedule-description {
        color: #718096;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .schedule-price {
        font-size: 1.5rem;
        color: #667eea;
        font-weight: 700;
    }

    .health-benefits {
        padding: 80px 0;
        background: #f7fafc;
    }

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

    .benefit-item {
        background: white;
        border-radius: 16px;
        padding: 2rem;
        text-align: center;
        border: 1px solid #e2e8f0;
        transition: all 0.3s ease;
    }

    .benefit-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .benefit-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .benefit-title {
        font-size: 1.3rem;
        color: #2d3748;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .benefit-description {
        color: #718096;
        line-height: 1.6;
    }

    .addon-services {
        padding: 80px 0;
        background: #f7fafc;
    }

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

    .addon-card {
        background: white;
        border-radius: 16px;
        padding: 2rem;
        text-align: center;
        border: 1px solid #e2e8f0;
        transition: all 0.3s ease;
    }

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

    .addon-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .addon-name {
        font-size: 1.2rem;
        color: #2d3748;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .addon-price {
        font-size: 1.5rem;
        color: #667eea;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .pricing-categories {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 3rem;
        margin-bottom: 4rem;
    }

    .pricing-category {
        background: white;
        border: 2px solid #e2e8f0;
        border-radius: 20px;
        padding: 2.5rem;
        transition: all 0.3s ease;
    }

    .pricing-category:hover {
        border-color: #4ecdc4;
        box-shadow: 0 10px 30px rgba(78, 205, 196, 0.1);
    }

    .category-title {
        font-size: 1.5rem;
        color: #2d3748;
        margin-bottom: 1.5rem;
        font-weight: 700;
        text-align: center;
    }

    .price-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
        border-bottom: 1px solid #f0f0f0;
    }

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

    .price-item-name {
        color: #4a5568;
        font-weight: 500;
    }

    .price-item-price {
        color: #4ecdc4;
        font-weight: 700;
        font-size: 1.1rem;
    }

    .booking-steps {
        padding: 40px 0;
        background: white;
        border-bottom: 1px solid #e2e8f0;
    }

    .steps-container {
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .step {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem 2rem;
        background: #f7fafc;
        border-radius: 50px;
        border: 2px solid #e2e8f0;
    }

    .step.active {
        background: linear-gradient(135deg, #667eea, #764ba2);
        color: white;
        border-color: #667eea;
    }

    .step-number {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: #e2e8f0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 0.9rem;
    }

    .step.active .step-number {
        background: rgba(255,255,255,0.2);
        color: white;
    }

    .booking-main {
        padding: 60px 0;
        background: #f7fafc;
    }

    .booking-content {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 4rem;
        align-items: start;
    }

    .booking-form {
        background: white;
        padding: 3rem;
        border-radius: 20px;
        border: 1px solid #e2e8f0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

    .booking-form h2 {
        font-size: 2rem;
        color: #2d3748;
        margin-bottom: 0.5rem;
    }

    .booking-form .subtitle {
        color: #718096;
        margin-bottom: 2.5rem;
    }

    .form-section {
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #e2e8f0;
    }

    .form-section:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

    .section-title {
        font-size: 1.3rem;
        color: #2d3748;
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .checkbox-group {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
        margin-top: 0.5rem;
    }

    .checkbox-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.8rem;
        background: #f7fafc;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .checkbox-item:hover {
        background: #edf2f7;
    }

    .checkbox-item input[type="checkbox"] {
        width: auto;
        margin: 0;
    }

    .time-slots {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
        margin-top: 0.5rem;
    }

    .time-slot {
        padding: 0.8rem;
        border: 2px solid #e2e8f0;
        border-radius: 8px;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s ease;
        background: white;
    }

    .time-slot:hover {
        border-color: #667eea;
    }

    .time-slot.selected {
        border-color: #667eea;
        background: #667eea;
        color: white;
    }

    .time-slot input[type="radio"] {
        display: none;
    }

    .booking-summary {
        background: white;
        padding: 2.5rem;
        border-radius: 20px;
        border: 1px solid #e2e8f0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        height: fit-content;
        position: sticky;
        top: 100px;
    }

    .summary-title {
        font-size: 1.4rem;
        color: #2d3748;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .summary-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.8rem 0;
        border-bottom: 1px solid #e2e8f0;
    }

    .summary-item:last-child {
        border-bottom: none;
        font-weight: 600;
        font-size: 1.1rem;
        color: #667eea;
    }

    .price-info {
        background: #f7fafc;
        padding: 1.5rem;
        border-radius: 12px;
        margin: 1.5rem 0;
    }

    .price-info h4 {
        color: #2d3748;
        margin-bottom: 0.5rem;
    }

    .price-info p {
        color: #4a5568;
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .quick-contact {
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
        padding: 1.5rem;
        border-radius: 12px;
        margin-top: 2rem;
        text-align: center;
    }

    .quick-contact h4 {
        color: #2d3748;
        margin-bottom: 0.8rem;
    }

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

    .contact-btn {
        padding: 0.6rem 1.2rem;
        border-radius: 20px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        font-size: 0.9rem;
    }

    .contact-btn.phone {
        background: #10b981;
        color: white;
    }

    .contact-btn.whatsapp {
        background: #25d366;
        color: white;
    }

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

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        color: #374151;
        font-weight: 500;
    }

    .required {
        color: #e53e3e;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 12px 16px;
        border: 2px solid #e5e7eb;
        border-radius: 12px;
        font-size: 1rem;
        transition: all 0.3s ease;
        background: #f9fafb;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #667eea;
        background: white;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }

    .form-group textarea {
        resize: vertical;
    }

    .btn {
        background: linear-gradient(135deg, #667eea, #764ba2);
        color: white;
        padding: 15px 30px;
        border: none;
        border-radius: 25px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
        width: 100%;
        text-align: center;
        font-size: 1rem;
    }

    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    }

    .footer-company .logo-footer {
        font-size: 1.5rem;
        font-weight: 700;
        color: #667eea;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .footer-company .logo-footer::before {
        content: "✨";
        font-size: 1.2rem;
    }

    .page-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('images/background2.jpg') center/cover;
        opacity: 0.2;
        z-index: 1;
    }

    .page-header .container {
        position: relative;
        z-index: 2;
    }

    .page-header h1 {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .page-header p {
        font-size: 1.2rem;
        opacity: 0.9;
        max-width: 600px;
        margin: 0 auto;
    }