/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

/* Header Styles */
.header {
    background-color: #1a1a1a;
    padding: 1rem 2rem;
    border-radius: 0 0 0 50px;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: auto;
    height: 50px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.8;
}

.language-switcher {
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.language-switcher:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Hero Section Styles */
.hero {
    background-color: #f5f5f5;
    padding: 4rem 2rem 0 2rem;
    min-height: 95vh;
    display: flex;
    align-items: flex-start;
    position: relative;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0;
    width: 100%;
    min-height: calc(95vh - 2rem);
    align-items: start;
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-left: 3rem;
    padding-right: 2rem;
    margin-top: 2rem;
    align-self: start;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.title-marketing {
    position: relative;
    display: inline-block;
}

.marketing-text {
    position: relative;
    z-index: 2;
}

.wavy-underline {
    position: absolute;
    bottom: -22px;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
}

.hero-description {
    font-size: 1.125rem;
    color: #1a1a1a;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    border: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: #1a1a1a;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #333;
}

.btn-secondary {
    background-color: #e0e0e0;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
}

.btn-secondary:hover {
    background-color: #d0d0d0;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #1a1a1a;
    font-weight: 400;
    margin-top: 0.5rem;
}

/* Hero Image Container */
.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    align-self: end;
    margin-bottom: 0;
    padding-bottom: 0;
    height: 100%;
}

.hero-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Our Services Section */
.services {
    position: relative;
    background-color: #282828;
    padding: 5rem 2rem 5rem 2rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 0;
}

.services-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/services-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 1;
}

.services-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.services-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: #333333;
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.service-description {
    font-size: 1rem;
    font-weight: 400;
    color: #b0b0b0;
    line-height: 1.6;
    margin: 0;
}

/* About Us Section */
.about {
    background-color: #f5f5f5;
    padding: 5rem 2rem;
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0;
}

.about-description {
    font-size: 1.125rem;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.6;
    margin: 0;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 1rem;
}

.about-stat-item {
    display: flex;
    flex-direction: column;
}

.about-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.about-stat-label {
    font-size: 0.9rem;
    color: #1a1a1a;
    font-weight: 400;
    margin-top: 0.5rem;
}

.about-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.about-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-image-container {
        order: -1;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem;
        border-radius: 0;
    }
    
    .header-container {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .services {
        padding: 3rem 1rem;
    }
    
    .services-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .about {
        padding: 3rem 1rem;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image-container {
        order: -1;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Client Testimonials Section */
.testimonials {
    background-color: #f5f5f5;
    padding: 5rem 2rem;
    min-height: 80vh;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-carousel {
    position: relative;
    width: 100%;
    margin-bottom: 3rem;
}

.testimonials-wrapper {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 2rem calc(50% - 225px);
    scroll-snap-type: x mandatory;
    justify-content: flex-start;
    position: relative;
}

.testimonials-wrapper::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2.5rem;
    min-width: 450px;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    scroll-snap-align: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0.5;
    transform: scale(0.95);
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.testimonial-stars img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.testimonial-quote {
    font-size: 1rem;
    font-weight: 400;
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info {
    text-align: center;
}

.testimonial-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.9rem;
    font-weight: 400;
    color: #666666;
}

.carousel-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e0e0e0;
    border: none;
    color: #1a1a1a;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background-color: #d0d0d0;
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .testimonials {
        padding: 3rem 1rem;
    }
    
    .testimonials-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .testimonials-carousel {
        gap: 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .testimonial-card {
        min-width: 320px;
        max-width: 320px;
        padding: 2rem;
    }
    
    .testimonials-wrapper {
        padding: 2rem calc(50% - 160px);
    }
}

/* Contact Us Section */
.contact {
    position: relative;
    background-color: #1a1a1a;
    padding: 5rem 2rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/contact-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 1;
}

.contact-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    width: 100%;
    padding: 0 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
}

.contact-title-highlight {
    color: #FFD700;
    display: block;
}

.contact-description {
    font-size: 1rem;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.contact-detail-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-detail-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
}

.contact-detail-value {
    font-size: 0.9rem;
    font-weight: 400;
    color: #b0b0b0;
}

.contact-form-container {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
}

.form-input,
.form-textarea {
    padding: 0.875rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #1a1a1a;
    background-color: #ffffff;
}

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

.form-submit {
    padding: 1rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 0.5rem;
}

.form-submit:hover {
    background-color: #333;
}

.form-submit:active {
    transform: scale(0.98);
}

.form-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
    text-align: center;
}

.success-message {
    font-size: 1rem;
    font-weight: 500;
    color: #155724;
    margin: 0;
}

@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form-container {
        order: -1;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 3rem 1rem;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
}

/* Legal Pages (Privacy, Terms) */
.legal-page {
    background-color: #f5f5f5;
    padding: 5rem 2rem;
    min-height: 80vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.legal-last-updated {
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.legal-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-heading:first-of-type {
    margin-top: 0;
}

.legal-text {
    font-size: 1rem;
    font-weight: 400;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-list {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-list li {
    font-size: 1rem;
    font-weight: 400;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.legal-list li:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 3rem 1rem;
    }
    
    .legal-title {
        font-size: 2rem;
    }
    
    .legal-content {
        padding: 2rem;
    }
    
    .legal-heading {
        font-size: 1.25rem;
    }
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    padding: 3rem 2rem 2rem 2rem;
    border-top: 1px solid #333;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-icon {
    width: auto;
    height: 50px;
    object-fit: contain;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.footer-nav-link:hover {
    opacity: 0.8;
}

.footer-divider {
    height: 1px;
    background-color: #333;
    margin-bottom: 2rem;
}

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

.footer-copyright {
    color: #b0b0b0;
    font-size: 0.9rem;
    font-weight: 400;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-legal-link {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: #ffffff;
}

.footer-legal-separator {
    color: #b0b0b0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 1rem;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

