/* 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: #e0e0e0;
    background-color: #181c23;
}

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

/* Header Styles */
#main-header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

#main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2ea3f2;
    text-decoration: none;
}

#main-navigation ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

#main-navigation a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

#main-navigation a:hover {
    color: #2ea3f2;
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #181c23 0%, #232a34 100%);
    color: #fff;
    padding: 100px 0 80px;
    text-align: center;
    border-bottom: 4px solid #d4af37;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-phone {
    font-size: 2rem;
    margin-bottom: 20px;
}

.hero-phone a {
    color: white;
    text-decoration: none;
    border: 2px solid white;
    padding: 10px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero-phone a:hover {
    background: white;
    color: #2ea3f2;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 13px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #d4af37;
    color: #181c23;
    border-color: #d4af37;
}

.btn-primary:hover {
    background: #181c23;
    color: #d4af37;
    border-color: #d4af37;
}

.btn-secondary {
    background: #232a34;
    color: #d4af37;
    border-color: #d4af37;
}

.btn-secondary:hover {
    background: #d4af37;
    color: #232a34;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2,
.section-header h3 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

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

/* Services Section */
.services-section {
    background: #f8f9fa;
}

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

.service-item {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.service-item p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-link {
    color: #2ea3f2;
    text-decoration: none;
    font-weight: 600;
}

.service-link:hover {
    text-decoration: underline;
}

/* Technology Section */
.technology-section {
    background: #1a1a1a;
    color: white;
}

.technology-section .section-header h2 {
    color: white;
}

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

.tech-item {
    padding: 30px;
    border-left: 4px solid #2ea3f2;
    background: rgba(255,255,255,0.05);
    border-radius: 5px;
}

.tech-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2ea3f2;
    font-weight: 700;
}

.tech-item p {
    line-height: 1.6;
    color: #ccc;
}

/* Service Areas Section */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.city-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.city-item:hover {
    border-color: #2ea3f2;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.city-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2ea3f2;
}

/* Video Section */
.video-section {
    background: #f8f9fa;
}

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

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

.video-item h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.video-placeholder {
    background: #ddd;
    padding: 60px 20px;
    border-radius: 10px;
    color: #666;
    font-style: italic;
}

/* News Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.news-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.news-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    color: #2ea3f2;
    text-decoration: none;
    font-weight: 600;
}

.read-more:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact-section {
    background: #f8f9fa;
}

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

.contact-info {
    display: grid;
    gap: 30px;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.contact-item p {
    color: #666;
}

.contact-item a {
    color: #2ea3f2;
    text-decoration: none;
}

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

/* Form Styles */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2ea3f2;
}

/* Footer */
footer {
    background: #181c23;
    color: #e0e0e0;
    padding: 12px 0 6px;
    border-top: 4px solid #d4af37;
    margin-top: 40px;
    width: 100%;
}

.footer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin: 0 auto;
    gap: 0;
    position: relative;
    min-height: 80px;
}

.footer-left,
.footer-right {
    position: static;
    text-align: left;
    align-items: flex-start;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
}

.footer-right {
    text-align: right;
    align-items: flex-end;
}

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

.footer-section h3 {
    color: #d4af37;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-section a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-phone a {
    color: #2ea3f2;
    font-weight: 600;
    font-size: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    #main-navigation ul {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-phone {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-header h2,
    .section-header h3 {
        font-size: 2rem;
    }
    
    .services-grid,
    .cities-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        min-height: auto;
    }
    
    .footer-left,
    .footer-right {
        text-align: center;
        align-items: center;
        padding: 0 10px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-item {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }
    .hero-description {
        font-size: 1rem;
    }
    .footer-content {
        gap: 12px;
        flex-direction: column;
        min-height: auto;
    }
    
    .footer-left,
    .footer-right {
        text-align: center;
        align-items: center;
        padding: 0 5px;
    }
}

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

.service-item,
.news-item,
.city-item {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Loading States */
.btn:active {
    transform: scale(0.98);
}

/* Accessibility */
.btn:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    box-shadow: 0 0 0 3px rgba(46, 163, 242, 0.3);
}

/* Print Styles */
@media print {
    .hero-section,
    #main-header,
    footer {
        display: none;
    }
    
    section {
        padding: 20px 0;
    }
}

h2, .hero-content h2, .content h2 {
    color: #d4af37 !important;
    /* Gold for contrast on dark backgrounds */
}