/* 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: #2D3748;
    background-color: #FAFAFA;
}

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

/* Centered Sections */
.centered-section {
    text-align: center;
}

.centered-section .container > * {
    text-align: center;
}

.centered-section .services-grid,
.centered-section .features-grid,
.centered-section .process-steps,
.centered-section .packages-grid,
.centered-section .testimonials-grid,
.centered-section .areas-grid {
    text-align: center;
}

/* Header */
.header {
    background: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 0;
}

.logo-icon {
    flex-shrink: 0;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4F46E5;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

.btn-primary {
    background: #F59E0B;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 13px 28px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: white;
    color: #4F46E5;
}

.placeholder-image {
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    border: 2px dashed #ccc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: 500;
    min-height: 300px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #4F46E5;
    margin-bottom: 50px;
}

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

.service-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 12px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

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

.service-icon {
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #4F46E5;
    margin-bottom: 15px;
}

.service-card p {
    color: #64748B;
    font-size: 1rem;
}

/* Why Choose Us */
.why-choose {
    padding: 80px 0;
    background: #F8FAFC;
}

.why-choose h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #4F46E5;
    margin-bottom: 50px;
}

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

.feature {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.3rem;
    color: #4F46E5;
    margin-bottom: 15px;
}

.feature p {
    color: #64748B;
}

/* Process Section */
.process {
    padding: 80px 0;
    background: white;
}

.process h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #4F46E5;
    margin-bottom: 50px;
}

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

.step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    background: #4F46E5;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.3rem;
    color: #4F46E5;
    margin-bottom: 15px;
}

.step p {
    color: #64748B;
    font-size: 0.95rem;
}

/* Packages Section */
.packages {
    padding: 80px 0;
    background: #F8FAFC;
}

.packages h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #4F46E5;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #64748B;
    margin-bottom: 50px;
}

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

.package-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.package-image .placeholder-image {
    min-height: 200px;
    border-radius: 0;
    border: none;
    border-bottom: 2px dashed #ccc;
}

.package-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.package-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #4F46E5;
    margin: 15px 20px;
    text-align: center;
}

.package-card h3 {
    font-size: 1.5rem;
    color: #4F46E5;
    margin: 20px 20px 15px;
}

.package-card p {
    color: #64748B;
    margin: 0 20px 20px;
}

.package-card ul {
    list-style: none;
    margin: 0 20px 30px;
}

.package-card li {
    color: #64748B;
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.package-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #F59E0B;
    font-weight: bold;
}

.btn-package {
    background: #4F46E5;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    transition: all 0.3s ease;
}

.btn-package:hover {
    background: #4338CA;
}

/* Preview Showcase */
.preview-showcase {
    padding: 80px 0;
    background: white;
}

.preview-showcase h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #4F46E5;
    margin-bottom: 20px;
}

.preview-showcase > p {
    text-align: center;
    font-size: 1.2rem;
    color: #64748B;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.preview-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.preview-features h3 {
    font-size: 1.8rem;
    color: #4F46E5;
    margin-bottom: 20px;
}

.preview-features ul {
    list-style: none;
    margin-bottom: 30px;
}

.preview-features li {
    color: #64748B;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.preview-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #F59E0B;
    font-weight: bold;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #F8FAFC;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #4F46E5;
    margin-bottom: 50px;
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.testimonial-content p {
    font-style: italic;
    color: #4A5568;
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author strong {
    color: #4F46E5;
    display: block;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #64748B;
    font-size: 0.9rem;
}

/* Service Areas */
.service-areas {
    padding: 80px 0;
    background: white;
}

.service-areas h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #4F46E5;
    margin-bottom: 20px;
}

.service-areas > p {
    text-align: center;
    font-size: 1.2rem;
    color: #64748B;
    margin-bottom: 50px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.area-card {
    background: #F8FAFC;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: #4F46E5;
    border: 2px solid #E2E8F0;
    transition: all 0.3s ease;
}

.area-card:hover {
    background: #4F46E5;
    color: white;
    transform: translateY(-3px);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #F8FAFC;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #4F46E5;
    margin-bottom: 50px;
}

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

.contact-info h3 {
    font-size: 1.5rem;
    color: #4F46E5;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #4A5568;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-form h3 {
    font-size: 1.5rem;
    color: #4F46E5;
    margin-bottom: 20px;
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.2rem;
    width: 100%;
    margin-bottom: 15px;
}

.contact-form p {
    color: #64748B;
    text-align: center;
}

/* Footer */
.footer {
    background: #2D3748;
    color: #E2E8F0;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

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

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #E2E8F0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #F59E0B;
}

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

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 10px;
}

.close:hover {
    color: #000;
}

.modal-content h3 {
    color: #4F46E5;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-content input,
.modal-content select,
.modal-content textarea {
    padding: 15px;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.modal-content input:focus,
.modal-content select:focus,
.modal-content textarea:focus {
    outline: none;
    border-color: #4F46E5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-img {
        height: 250px;
    }
    
    .package-img {
        height: 150px;
    }
    
    .preview-img {
        height: 200px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .contact-content,
    .preview-content,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .packages-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .services,
    .why-choose,
    .process,
    .packages,
    .preview-showcase,
    .testimonials,
    .service-areas,
    .contact {
        padding: 60px 0;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 1rem;
    }
}