/* Reset and Base Styles */
* {
    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: #333;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #4B5563;
    padding: 12px 24px;
    border: 2px solid #E5E7EB;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-secondary:hover {
    border-color: #6366f1;
    color: #6366f1;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
    animation: slideUp 0.3s ease;
}

.cookie-popup.show {
    display: block;
}

.cookie-content {
    padding: 24px;
}

.cookie-content h3 {
    color: #1F2937;
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.cookie-content p {
    color: #6B7280;
    margin-bottom: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Header */
.header {
    background: #1F2937;
    padding: 1rem 0;
    position: relative;
    z-index: 100;
}

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

.nav-brand .logo {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border: 2px solid #6366f1;
    padding: 8px 16px;
    border-radius: 6px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    background: url('./assets/hero-bg.png') no-repeat center center/cover;
    color: white;
    padding: 6rem 0;
    text-align: left;
}

.hero-content h1 {
    color: white;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    color: #D1D5DB;
}

/* Trust Section */
.trust-section {
    background: #1F2937;
    color: white;
    padding: 4rem 0;
}

.trust-section h2 {
    color: white;
    margin-bottom: 2rem;
}

.trust-section p {
    color: #D1D5DB;
    font-size: 1.1rem;
    max-width: 900px;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.about-text h2 {
    color: #1F2937;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #4B5563;
    font-size: 1.1rem;
}

/* Core Areas */
.core-areas {
    background: #1F2937;
    color: white;
    padding: 6rem 0;
}

.core-areas h2 {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

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

.area-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #6366f1;
}

.area-card h3 {
    color: white;
    margin-bottom: 1rem;
}

.area-card p {
    color: #D1D5DB;
    line-height: 1.7;
}

/* News Section */
.news-section {
    padding: 6rem 0;
    background: white;
}

.news-section h2 {
    color: #1F2937;
    text-align: center;
    margin-bottom: 3rem;
}

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

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.news-image {
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    padding: 1.5rem;
}

.news-content h3 {
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.news-content p {
    color: #6B7280;
}

/* Testimonials */
.testimonials-section {
    background: #1F2937;
    color: white;
    padding: 6rem 0;
}

.testimonials-section h2 {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

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

.testimonial {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: none;
}

.testimonial p {
    color: #D1D5DB;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.testimonial cite {
    color: white;
    font-style: normal;
}

.testimonial cite strong {
    display: block;
    margin-bottom: 0.25rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: white;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.cta-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.cta-text h2 {
    color: #1F2937;
    margin-bottom: 1.5rem;
}

.cta-text p {
    color: #4B5563;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Services Section */
.services-section {
    background: #1F2937;
    color: white;
    padding: 6rem 0;
}

.services-section h2 {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #6366f1;
}

.service-card h3 {
    color: white;
    margin-bottom: 1rem;
}

.service-card p {
    color: #D1D5DB;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9CA3AF;
}

.service-price strong {
    color: white;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: #F9FAFB;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.contact-form-wrapper h2 {
    color: #1F2937;
    margin-bottom: 1rem;
}

.contact-form-wrapper p {
    color: #6B7280;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6366f1;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: fit-content;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item h3 {
    color: #1F2937;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: #6B7280;
    margin: 0;
}

/* Footer */
.footer {
    background: #1F2937;
    color: white;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #D1D5DB;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #6366f1;
}

.footer-copyright p {
    color: #9CA3AF;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero {
        padding: 4rem 0;
        text-align: center;
    }
    
    .about-content,
    .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content .about-image {
        order: -1;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .areas-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-popup {
        bottom: 10px;
        left: 10px;
        right: 10px;
    }
    
    .cookie-content {
        padding: 20px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0;
    }
    
    .trust-section,
    .core-areas,
    .testimonials-section,
    .services-section {
        padding: 4rem 0;
    }
    
    .about-section,
    .news-section,
    .cta-section,
    .contact-section {
        padding: 4rem 0;
    }
    
    .area-card,
    .service-card,
    .testimonial {
        padding: 1.5rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
}

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

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid #6366f1;
    outline-offset: 2px;
}

.main-section {
    padding: 2rem 0;
}

.thank-section {
    text-align: center;
    padding: 10rem 0;
}