/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fc;
    color: #1a1a2e;
    line-height: 1.6;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 28px;
    font-weight: bold;
}

.logo p {
    font-size: 12px;
    color: #ffd700;
}

.nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover, .nav a.active {
    color: #ffd700;
}

.btn-nav {
    background: #e74c3c;
    padding: 8px 20px;
    border-radius: 30px;
}

.btn-nav:hover {
    background: #c0392b;
    color: white !important;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1598488035139-bdbb2231ce04?w=1600');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    margin: 10px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary {
    background: #e74c3c;
    color: white;
}

.btn-primary:hover {
    background: #c0392b;
    transform: translateY(-3px);
}

.btn-outline {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline:hover {
    background: white;
    color: #2c5364;
    transform: translateY(-3px);
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #e74c3c;
    margin: 15px auto;
}

/* Features */
.features {
    padding: 70px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 35px 20px;
    background: #f8f9fc;
    border-radius: 15px;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.feature-card i {
    font-size: 55px;
    color: #e74c3c;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

/* Services Preview */
.services-preview {
    padding: 70px 0;
    background: #f0f2f5;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    text-align: center;
    padding: 35px 25px;
    border-radius: 15px;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-icon i {
    font-size: 55px;
    color: #e74c3c;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card .price {
    display: inline-block;
    margin-top: 15px;
    color: #e74c3c;
    font-weight: bold;
    font-size: 18px;
}

/* Stats */
.stats {
    padding: 60px 0;
    background: linear-gradient(135deg, #0f2027, #2c5364);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #ffd700;
    display: block;
}

.stat-label {
    font-size: 18px;
    margin-top: 10px;
    display: block;
}

/* CTA */
.cta {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background: #0f2027;
    color: #aaa;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3, .footer-col h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin: 10px 0;
}

.footer-col a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #e74c3c;
}

.social-links a {
    display: inline-block;
    margin-right: 15px;
    font-size: 22px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2c5364;
}

/* Contact Page */
.contact-section {
    padding: 70px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info .info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
}

.contact-info .info-item i {
    font-size: 28px;
    color: #e74c3c;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.contact-form button {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #c0392b;
}

/* Map */
.map-container {
    margin-top: 50px;
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border-radius: 15px;
    border: 0;
}

/* FAQ Page */
.faq-section {
    padding: 70px 0;
    background: white;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fc;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    background: #f0f2f5;
}

.faq-question:hover {
    background: #e0e4e8;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 300px;
}

/* Policies Pages */
.policy-section {
    padding: 70px 0;
    background: white;
}

.policy-content {
    max-width: 1000px;
    margin: 0 auto;
    background: #f8f9fc;
    padding: 40px;
    border-radius: 15px;
}

.policy-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.policy-content h2 {
    margin: 25px 0 15px;
    color: #e74c3c;
}

.policy-content p {
    margin: 15px 0;
}

.policy-content ul {
    margin: 15px 0 15px 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav {
        display: none;
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }
    
    .nav.active {
        display: block;
    }
    
    .nav a {
        display: block;
        margin: 12px 0;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .policy-content {
        padding: 20px;
    }
}