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

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

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

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
}

.navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #FC8E3A;
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    padding: 0.5rem 1rem;
    border: 2px solid #FC8E3A;
    background: transparent;
    color: #333;
    font-weight: 500;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: #FC8E3A;
    color: #fff;
}

.lang-btn:hover:not(.active) {
    background: #FC8E3A;
    color: #fff;
}

/* Hero Section Styles */
.hero {
    margin-top: 80px;
    padding: 4rem 0;
    background: url('images/background-image.jpg') center/cover no-repeat;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

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

.hero-text {
    position: relative;
    padding: 2rem 0;
}

.hero-background {
    display: none;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
}

.decorative-shape {
    display: inline-block;
    width: 90px;
    height: 39px;
    background: transparent;
    border: 2px solid #FC8E3A;
    border-radius: 20px;
    margin: 0 0.5rem;
    vertical-align: middle;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button {
    background: #FC8E3A;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(252, 142, 58, 0.3);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .navigation {
        order: 3;
        width: 100%;
    }
    
    .nav-list {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-background {
        left: -1rem;
        right: -1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* About Us Section Styles */
.about {
    padding: 5rem 0;
    background: #fff;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-features {
    background: #FFF9EE;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #E5E5E5;
}

.feature-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #FC8E3A;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.feature-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

/* Responsive Design for About Section */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-features {
        padding: 2rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .feature-icon {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 3rem 0;
    }
    
    .about-title {
        font-size: 1.5rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .about-features {
        padding: 1.5rem;
    }
    
    .feature-item {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
}

/* Our Services Section Styles */
.services {
    padding: 5rem 0;
    background: #fff;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.services-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: #F9F9F9;
    border-radius: 15px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(52, 233, 142, 0.1) 0%, 
        rgba(94, 252, 58, 0.1) 50%, 
        rgba(252, 142, 58, 0.1) 100%);
    z-index: 1;
}

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

.service-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-divider {
    width: 50px;
    height: 2px;
    background: #E5E5E5;
    margin: 0 auto 1.5rem auto;
}

.service-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-icon {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.service-icon .icon {
    height: 120px;
    width: auto;
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
}

/* Specific icon sizes */
.service-card:nth-child(1) .service-icon .icon {
    width: 130px;
}

.service-card:nth-child(2) .service-icon .icon {
    width: 145px;
}

.service-card:nth-child(3) .service-icon .icon {
    width: 170px;
}

/* Responsive Design for Services Section */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-title {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 3rem 0;
    }
    
    .services-title {
        font-size: 1.5rem;
    }
    
    .services-description {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
}

/* Client Testimonials Section Styles */
.testimonials {
    padding: 5rem 0;
    background: #fff;
}

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

.testimonials-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.testimonials-navigation {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 8px;
    background: #FFF9EE;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.nav-btn:hover svg path {
    stroke: #fff;
}

.testimonial-card {
    background: #FFF9EE;
    border-radius: 15px;
    padding: 3rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.testimonial-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-stars {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.star {
    color: #FC8E3A;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.client-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.client-details {
    flex: 1;
}

.client-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.client-position {
    font-size: 0.9rem;
    color: #666;
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #FFF9EE;
    border: 2px solid #FC8E3A;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #FC8E3A;
}

.dot:hover {
    background: #FC8E3A;
    opacity: 0.7;
}

.decorative-quotes {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    z-index: 1;
}

.quotes-image {
    width: 80px;
    height: auto;
    opacity: 0.3;
}

/* Responsive Design for Testimonials Section */
@media (max-width: 768px) {
    .testimonials-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonials-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .testimonials-navigation {
        justify-content: center;
        margin-top: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
        min-height: 350px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 3rem 0;
    }
    
    .testimonials-title {
        font-size: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        min-height: 300px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .client-name {
        font-size: 1rem;
    }
    
    .client-position {
        font-size: 0.8rem;
    }
}

/* Contact Us Section Styles */
.contact {
    padding: 5rem 0;
    background: #FFF9EE;
}

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

.contact-info {
    padding-right: 2rem;
}

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

.contact-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.contact-form-container {
    display: flex;
    justify-content: center;
}

.contact-form {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 500px;
}

.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.form-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.5;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

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

.form input,
.form textarea {
    padding: 1rem;
    border: none;
    border-radius: 8px;
    background: #F8F8F8;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.form input:focus,
.form textarea:focus {
    outline: none;
    background: #F0F0F0;
    box-shadow: 0 0 0 2px rgba(252, 142, 58, 0.2);
}

.form input::placeholder,
.form textarea::placeholder {
    color: #999;
}

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

.submit-btn {
    background: #FC8E3A;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(252, 142, 58, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Responsive Design for Contact Section */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        padding-right: 0;
        text-align: center;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 3rem 0;
    }
    
    .contact-title {
        font-size: 1.5rem;
    }
    
    .contact-description {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .form-description {
        font-size: 0.9rem;
    }
    
    .form input,
    .form textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Footer Styles */
.footer {
    background: #F37F25;
    padding: 3rem 0 1.5rem 0;
    color: #fff;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 2rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.footer-logo-img {
    height: 50px;
    width: auto;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #fff;
    max-width: 500px;
}

.footer-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-nav-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

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

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 2rem 0;
}

.footer-copyright {
    text-align: center;
}

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

/* Responsive Design for Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-navigation {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-nav-column {
        align-items: center;
    }
    
    .footer-description {
        max-width: 100%;
    }
    
    .footer-logo {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 1rem 0;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .footer-link {
        font-size: 0.9rem;
    }
    
    .footer-copyright p {
        font-size: 0.8rem;
    }
}
