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

body {
    font-family: 'Segoe UI', 'Poppins', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
header {
    background: #1a1a2e;
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 1.8rem;
}

.logo h1 span {
    color: #ffd700;
}

.logo p {
    font-size: 0.7rem;
    opacity: 0.8;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #ffd700;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: #1a1a2e;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 10px;
    top: 100%;
    left: 0;
}

.dropdown-content a {
    padding: 12px 16px;
    display: block;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0f0c29, #1a1a2e, #16213e);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-content .highlight {
    color: #ffd700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.cities {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cities span {
    background: rgba(255,215,0,0.15);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
}

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

.btn-primary, .btn-secondary {
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    display: inline-block;
}

.btn-primary {
    background: #ffd700;
    color: #1a1a2e;
}

.btn-primary:hover {
    background: #e6c200;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: #ffd700;
    color: #1a1a2e;
}

/* City Links Section */
.city-links-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.city-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.city-link-card {
    background: white;
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    text-decoration: none;
    color: #1a1a2e;
    font-weight: bold;
    transition: 0.3s;
    display: block;
}

.city-link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    background: #ffd700;
}

/* Services Section */
.services, .why-us, .cities-section {
    padding: 60px 0;
}

.services {
    background: #f8f9fa;
}

h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

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

.service-card {
    background: white;
    padding: 30px 20px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

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

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

.service-card h3 {
    margin-bottom: 10px;
    color: #1a1a2e;
}

/* Cities Grid */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.city-card {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
    padding: 15px;
    text-align: center;
    border-radius: 12px;
    font-weight: bold;
    transition: 0.3s;
    text-decoration: none;
    display: block;
}

.city-card:hover {
    transform: translateY(-3px);
    background: #ffd700;
    color: #1a1a2e;
}

/* Why Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}

.feature {
    padding: 20px;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #ffd700, #e6c200);
    padding: 60px 0;
    text-align: center;
}

.cta h2 {
    color: #1a1a2e;
}

.cta .btn-primary {
    background: #1a1a2e;
    color: #ffd700;
    margin-top: 20px;
}

.contact-phone {
    margin-top: 20px;
}

.contact-phone a {
    color: #1a1a2e;
    font-weight: bold;
    text-decoration: none;
}

/* Footer */
footer {
    background: #1a1a2e;
    color: #ccc;
    padding: 40px 0 20px;
}

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

.footer-col h3 {
    color: #ffd700;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: #ffd700;
}

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0f0c29, #1a1a2e);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px 0;
}

.contact-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
}

.contact-info h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.contact-form button {
    background: #ffd700;
    color: #1a1a2e;
    border: none;
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        background: #1a1a2e;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        padding: 20px;
        text-align: center;
    }
    
    nav ul.show {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .dropdown-content {
        position: static;
        background: #2a2a4e;
    }
}

/* Print Styles */
@media print {
    header, footer, .hero-buttons, .cta, .action-buttons {
        display: none;
    }
}
