/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 80px;
    width: auto;
}

.logo h2 {
    color: #2c5282;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
}

/* Adjust navbar height */
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: #2c5282;
    color: white;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 5px;
    border-left: 1px solid #e2e8f0;
    padding-left: 20px;
    margin-left: 10px;
}

.language-switcher a {
    padding: 5px 10px !important;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
}

.language-switcher a:hover {
    background: #2c5282 !important;
    color: white !important;
    border-color: #2c5282;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c5282 0%, #2d3748 100%);
    color: white;
    padding: 150px 0 100px;
    text-align: center;
    margin-top: 130px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #38a169;
    color: white;
}

.btn-primary:hover {
    background: #2f855a;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2c5282;
}

/* Services Preview Section */
.services-preview {
    padding: 80px 0;
    background: #f7fafc;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5282;
    margin-bottom: 20px;
}

.services-preview > .container > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-card h3 {
    color: #2c5282;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: white;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5282;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature {
    text-align: center;
    padding: 30px 20px;
}

.feature h3 {
    color: #2c5282;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #63b3ed;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section li {
    color: #cbd5e0;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #63b3ed;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 20px;
    text-align: center;
    color: #a0aec0;
}

/* About Page Styles */
.page-header {
    background: linear-gradient(135deg, #2c5282 0%, #2d3748 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 70px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-content {
    padding: 80px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h2 {
    color: #2c5282;
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.about-text h3 {
    color: #2c5282;
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

.about-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: #f7fafc;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid #38a169;
}

.stat-card h3 {
    color: #2c5282;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-card p {
    color: #666;
    font-weight: 600;
}

.values-section {
    padding: 80px 0;
    background: #f7fafc;
}

.values-section h2 {
    text-align: center;
    color: #2c5282;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card h3 {
    color: #2c5282;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

.team-section {
    padding: 80px 0;
    background: white;
}

.team-section h2 {
    text-align: center;
    color: #2c5282;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.team-section > .container > p {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 60px;
}

.team-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-feature {
    text-align: center;
    padding: 30px 20px;
}

.team-feature h3 {
    color: #2c5282;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.team-feature p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .stat-card {
        flex: 1;
        margin: 0 10px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
}

/* Services Page Styles */
.services-overview {
    padding: 80px 0 60px;
    background: white;
}

.services-overview h2 {
    text-align: center;
    color: #2c5282;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.services-overview p {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.main-services {
    padding: 60px 0 80px;
    background: #f7fafc;
}

.services-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-detailed {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detailed:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
}

.service-detailed h3 {
    color: #2c5282;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.service-detailed p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    color: #555;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.service-features li::before {
    content: "✓";
    color: #38a169;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-areas {
    padding: 80px 0;
    background: white;
}

.service-areas h2 {
    text-align: center;
    color: #2c5282;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.area-card {
    background: #f7fafc;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid #38a169;
    transition: transform 0.3s ease;
}

.area-card:hover {
    transform: translateY(-3px);
}

.area-card h3 {
    color: #2c5282;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.area-card p {
    color: #666;
    line-height: 1.6;
}

.why-our-services {
    padding: 80px 0;
    background: #f7fafc;
}

.why-our-services h2 {
    text-align: center;
    color: #2c5282;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
}

.benefit-item h3 {
    color: #2c5282;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

.services-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5282 0%, #2d3748 100%);
    color: white;
    text-align: center;
}

.services-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.services-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .services-grid-detailed,
    .areas-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .service-detailed {
        padding: 30px 20px;
    }
}

/* Gallery Page Styles */
.gallery-nav {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid #e2e8f0;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid #e2e8f0;
    color: #666;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #2c5282;
    color: white;
    border-color: #2c5282;
}

.video-gallery,
.before-after-gallery,
.equipment-gallery {
    padding: 80px 0;
}

.video-gallery {
    background: #f7fafc;
}

.before-after-gallery {
    background: white;
}

.equipment-gallery {
    background: #f7fafc;
}

.video-gallery h2,
.before-after-gallery h2,
.equipment-gallery h2 {
    text-align: center;
    color: #2c5282;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-description {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.video-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
}

.video-placeholder {
    padding: 40px 20px;
    text-align: center;
    background: #f7fafc;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.video-placeholder p {
    color: #2c5282;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.video-placeholder small {
    color: #666;
    line-height: 1.5;
}

.video-instructions {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 30px;
    margin-top: 60px;
}

.video-instructions h3 {
    color: #856404;
    margin-bottom: 15px;
}

.video-instructions p {
    color: #856404;
    margin-bottom: 15px;
}

.video-instructions ol {
    color: #856404;
    margin-left: 20px;
}

.video-instructions code {
    background: #f8f9fa;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.before-after-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.image-comparison {
    display: flex;
}

.before-image,
.after-image {
    flex: 1;
}

.image-placeholder {
    background: #f7fafc;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-right: 2px solid #e2e8f0;
}

.after-image .image-placeholder {
    border-right: none;
    border-left: 2px solid #e2e8f0;
}

.image-placeholder p {
    font-weight: 700;
    color: #2c5282;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.image-placeholder small {
    color: #666;
    text-align: center;
}

.before-after-item h4 {
    color: #2c5282;
    font-size: 1.3rem;
    padding: 20px;
    margin-bottom: 10px;
}

.before-after-item p {
    color: #666;
    padding: 0 20px 20px;
    line-height: 1.6;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.equipment-item {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.equipment-item:hover {
    transform: translateY(-5px);
}

.equipment-placeholder {
    text-align: center;
}

.equipment-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.equipment-placeholder h4 {
    color: #2c5282;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.equipment-placeholder p {
    color: #666;
    line-height: 1.6;
}

.gallery-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5282 0%, #2d3748 100%);
    color: white;
    text-align: center;
}

.gallery-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.gallery-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Gallery Page Styles - New Layout */
.photos-gallery,
.videos-gallery {
    padding: 80px 0;
}

.photos-gallery {
    background: #f7fafc;
}

.videos-gallery {
    background: white;
}

.photos-gallery h2,
.videos-gallery h2 {
    text-align: center;
    color: #2c5282;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-description {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.photo-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.photo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.photo-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.video-item {
    background: #f7fafc;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.video-item video {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.gallery-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5282 0%, #2d3748 100%);
    color: white;
    text-align: center;
}

.gallery-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.gallery-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Photo Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
}

.modal-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
}

.close:hover {
    opacity: 0.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 100px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        z-index: 999;
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    .language-switcher {
        border-left: none;
        padding-left: 0;
        margin-left: 0;
        margin-top: 10px;
        justify-content: center;
    }

    .hamburger {
        display: block;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .logo h2 {
        font-size: 1.5rem;
    }
    
    .logo img {
        height: 60px;
    }
    
    .nav-container {
        height: 100px;
    }
    
    .hero {
        margin-top: 100px;
        padding: 100px 0 60px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .photos-grid, .videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .photo-item img {
        height: 180px;
    }
    
    .video-item video {
        height: 160px;
    }
}
.empty-gallery {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.6;
}

.empty-gallery h3 {
    color: #2c5282;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.empty-gallery p {
    color: #666;
    font-size: 1.1rem;
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .videos-grid,
    .before-after-grid,
    .equipment-grid {
        grid-template-columns: 1fr;
    }
    
    .before-after-grid {
        grid-template-columns: 1fr;
    }
    
    .before-after-item {
        margin-bottom: 30px;
    }
    
    .image-comparison {
        flex-direction: column;
    }
    
    .image-placeholder {
        border-right: none;
        border-bottom: 2px solid #e2e8f0;
    }
    
    .after-image .image-placeholder {
        border-left: none;
        border-top: 2px solid #e2e8f0;
        border-bottom: none;
    }
    
    .gallery-filters {
        flex-direction: column;
        align-items: center;
    }
}

/* Contact Page Styles */
.contact-info {
    padding: 80px 0;
    background: #f7fafc;
}

.contact-details-center {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-details-center h2 {
    color: #2c5282;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-details-center > p {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 60px;
}

.contact-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.contact-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-text h3 {
    color: #2c5282;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.contact-text p {
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-text small {
    color: #666;
    font-size: 0.9rem;
}

.service-areas-contact {
    padding: 80px 0;
    background: white;
}

.service-areas-contact h2 {
    text-align: center;
    color: #2c5282;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-areas-contact > .container > p {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 60px;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.city-item {
    background: #f7fafc;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid #38a169;
    transition: transform 0.3s ease;
}

.city-item:hover {
    transform: translateY(-5px);
}

.city-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.city-item h3 {
    color: #2c5282;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.city-item p {
    color: #666;
    line-height: 1.6;
}

.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5282 0%, #2d3748 100%);
    color: white;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-items,
    .cities-grid {
        grid-template-columns: 1fr;
    }
    /* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #2c5282;
    margin: 3px 0;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
}
}
