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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    overflow-x: hidden;
    background-color: #0f1419;
    font-weight: 400;
}

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

/* Navigation */
.navbar {
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 153, 255, 0.3);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.logo img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #ffc107;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ffc107, #ffeb3b);
    transition: width 0.3s ease;
}

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

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

.nav-cta .cta-btn {
    background: linear-gradient(135deg, #ffc107 0%, #ffeb3b 100%);
    color: #000;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.nav-cta .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.95) 0%, rgba(15, 20, 25, 0.85) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?w=1920&h=1080&fit=crop&crop=center') center/cover no-repeat;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(0, 153, 255, 0.1) 100%);
    z-index: -1;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.floating-element {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 153, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    animation-delay: var(--delay);
}

.floating-element:nth-child(1) { top: 20%; left: 10%; }
.floating-element:nth-child(2) { top: 60%; right: 15%; }
.floating-element:nth-child(3) { bottom: 20%; left: 60%; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
    margin-top: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    color: #ffc107;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    color: white;
}

.hero-content h1 .highlight {
    background: linear-gradient(135deg, #0099ff 0%, #00ccff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #ffc107;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #ffc107 0%, #ffeb3b 100%);
    color: #000;
    padding: 18px 36px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.5);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #0099ff;
    color: #0099ff;
    transform: translateY(-3px);
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 153, 255, 0.1);
    border: 1px solid rgba(0, 153, 255, 0.3);
    padding: 10px 20px;
    border-radius: 25px;
    color: #0099ff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 120px 0;
    background: #0f1419;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 120px;
}

.feature-card {
    background: rgba(15, 20, 25, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 153, 255, 0.2);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #0099ff, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 153, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0099ff, #00ccff);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-accent {
    transform: scaleX(1);
}

.feature-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0099ff, #00ccff);
    border-radius: 50%;
    opacity: 0.1;
}

.feature-icon i {
    font-size: 2rem;
    color: #0099ff;
    z-index: 1;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 16px;
    font-weight: 600;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.company-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.company-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.1), rgba(0, 204, 255, 0.1));
    padding: 20px;
}

.image-frame img {
    width: 100%;
    border-radius: 15px;
}

.image-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid rgba(0, 153, 255, 0.3);
    border-radius: 15px;
    pointer-events: none;
}

.company-content {
    padding-left: 20px;
}

.content-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 153, 255, 0.1);
    border: 1px solid rgba(0, 153, 255, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    color: #0099ff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.company-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 24px;
    font-weight: 700;
    text-align: left;
}

.company-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 30px 0 40px;
}

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

.benefit-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #0099ff, #00ccff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 12px;
    color: white;
}

.benefit-item span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.btn-outline {
    background: transparent;
    color: #0099ff;
    border: 2px solid #0099ff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline:hover {
    background: #0099ff;
    color: white;
    transform: translateY(-3px);
}

/* Services Section - Keep existing styles */
.services {
    padding: 100px 0;
    background: #0f1419;
    color: white;
}

.services .section-header h2 {
    color: #0099ff;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.service-card:nth-child(even) .service-image {
    order: 2;
}

.service-card:nth-child(even) .service-content {
    order: 1;
}

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

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #0099ff;
}

.service-content h4 {
    font-size: 1.2rem;
    margin: 20px 0 15px;
    color: #e0e0e0;
}

.service-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-content li {
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
}

.service-content li:before {
    content: "•";
    color: #0099ff;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Service Area Section */
.service-area {
    padding: 120px 0;
    background: #0f1419;
}

.locations-wrapper {
    position: relative;
}

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

.location-card {
    background: rgba(15, 20, 25, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 153, 255, 0.2);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0099ff, transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.location-card:hover::before {
    transform: scaleX(1);
}

.location-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 153, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.location-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0099ff, #00ccff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.location-icon i {
    font-size: 1.5rem;
    color: white;
}

.location-card h3 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 8px;
    font-weight: 600;
}

.location-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Location Map Section */
.location-map {
    padding: 120px 0;
    background: #0f1419;
}

.map-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.map-info {
    background: rgba(15, 20, 25, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 153, 255, 0.2);
    padding: 40px;
    border-radius: 20px;
    height: fit-content;
}

.location-details h3 {
    color: #0099ff;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.address-item,
.phone-item,
.email-item,
.hours-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.address-item i,
.phone-item i,
.email-item i,
.hours-item i {
    width: 20px;
    color: #0099ff;
    font-size: 1.2rem;
}

.phone-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-item a:hover {
    color: #0099ff;
}

.map-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.btn-directions {
    background: linear-gradient(135deg, #0099ff 0%, #00ccff 100%);
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

.btn-directions:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 153, 255, 0.5);
}

.map-embed {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 153, 255, 0.1);
}

.map-embed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0099ff, transparent);
    z-index: 1;
}

.map-embed iframe {
    filter: contrast(1.1) saturate(1.2);
    transition: all 0.3s ease;
}

.map-embed:hover iframe {
    filter: contrast(1.2) saturate(1.3);
}

@media (max-width: 1024px) {
    .map-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .map-embed {
        order: -1;
    }
}

@media (max-width: 768px) {
    .map-actions {
        flex-direction: column;
    }

    .map-embed iframe {
        height: 300px;
    }

    .map-info {
        padding: 25px;
    }

    .location-details h3 {
        font-size: 1.5rem;
    }
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: #0f1419;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.form-header {
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 16px;
    font-weight: 700;
    text-align: left;
}

.form-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    text-align: left;
}

.modern-form {
    background: rgba(15, 20, 25, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 153, 255, 0.2);
    padding: 40px;
    border-radius: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    color: white;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0099ff;
    box-shadow: 0 0 0 3px rgba(0, 153, 255, 0.1);
}

.btn-submit {
    background: linear-gradient(135deg, #0099ff 0%, #00ccff 100%);
    color: white;
    padding: 18px 36px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 153, 255, 0.5);
}

.contact-info-section {
    padding-left: 20px;
}

.contact-card {
    background: rgba(15, 20, 25, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 153, 255, 0.2);
    padding: 40px;
    border-radius: 20px;
}

.contact-header h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 16px;
    font-weight: 700;
}

.contact-header p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0099ff, #00ccff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: white;
}

.contact-text h4 {
    color: white;
    margin-bottom: 8px;
    font-weight: 600;
}

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

.contact-text span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.btn-emergency {
    background: linear-gradient(135deg, #ff4444, #ff6666);
    color: white;
    padding: 18px 36px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    width: 100%;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0%, 100% {
        box-shadow: 0 5px 15px rgba(255, 68, 68, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(255, 68, 68, 0.6);
    }
}

.btn-emergency:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 68, 68, 0.6);
    animation: none;
}

/* Footer */
.footer {
    background: #0f1419;
    color: #fff;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(0, 153, 255, 0.3);
}

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

.footer-company {
    max-width: 400px;
}

.company-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.company-logo img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.company-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 14px;
}

.company-info h4 {
    color: #ffc107;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.company-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: #333;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-links a:hover {
    background: #ffc107;
    color: #333;
    transform: translateY(-2px);
}

.footer-services {
    display: flex;
    gap: 40px;
}

.services-column h4 {
    color: #ffc107;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.services-column ul {
    list-style: none;
    padding: 0;
}

.services-column li {
    margin-bottom: 12px;
}

.services-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.services-column a::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #ffc107;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.services-column a:hover {
    color: #ffc107;
    padding-left: 12px;
}

.services-column a:hover::before {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin: 0;
    text-align: center;
    width: 100%;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-company {
        max-width: 100%;
        margin: 0 auto;
    }

    .company-logo {
        justify-content: center;
    }

    .footer-services {
        justify-content: center;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .footer-services {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

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

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #0099ff, #00ccff);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    display: none;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 153, 255, 0.3);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 153, 255, 0.5);
}

/* Keep existing Services Section styles */
.section-tag {
    background: linear-gradient(135deg, #0099ff 0%, #00ccff 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 153, 255, 0.3);
}

.section-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 2s;
}

.section-tag:hover::before {
    left: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .company-showcase {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-info-section {
        padding-left: 0;
    }

    .form-header h2, .company-content h2 {
        text-align: center;
    }

    .form-header p {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

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

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

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

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

    .company-showcase {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .service-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-card:nth-child(even) .service-image {
        order: 1;
    }

    .service-card:nth-child(even) .service-content {
        order: 2;
    }

    .service-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .service-content .btn-primary {
        width: fit-content;
        max-width: 300px;
        margin: 0 auto;
        text-align: center;
        justify-content: center;
    }

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

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

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        min-height: auto;
    }

    .footer-company {
        max-width: 100%;
    }

    .company-logo {
        justify-content: center;
    }

    .emergency-hotline {
        justify-content: center;
        max-width: 300px;
        margin: 0 auto;
    }

    .area-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .service-content h3 {
        font-size: 1.5rem;
    }

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

    .modern-form {
        padding: 20px;
    }

    .form-header h2, .company-content h2 {
        font-size: 1.8rem;
    }

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

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .container {
        padding: 0 15px;
    }

    .footer-info {
        flex-direction: column;
        text-align: center;
    }

    .footer-contact {
        justify-content: center;
    }
}

@media (max-width: 320px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .feature-card, .location-card {
        padding: 20px;
    }

    .btn-primary, .btn-secondary {
        padding: 15px 25px;
        font-size: 14px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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