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

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

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}

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

/* Logo Section */
.logo-section {
    flex-shrink: 0;
}

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

/* Navigation Styles */
.navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

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

.nav-link:hover {
    color: #007bff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #007bff;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Language Selector */
.language-selector {
    position: relative;
    flex-shrink: 0;
}

.language-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #333;
}

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

.current-lang {
    font-weight: 500;
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.language-btn.active .dropdown-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 150px;
    z-index: 1001;
}

.language-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    width: 100%;
    padding: 10px 15px;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #333;
    transition: background-color 0.3s ease;
}

.lang-option:hover {
    background-color: #f8f9fa;
}

.lang-option.active {
    background-color: #007bff;
    color: white;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/hero-bg.jpg') center/cover no-repeat fixed, linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    padding: 100px 20px 50px;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-content {
    flex: 1;
    text-align: center;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* Top Label */
.hero-label {
    margin-bottom: 30px;
}

.label-icon {
    height: 40px;
    width: auto;
    max-width: 100%;
}

/* Main Headline */
.hero-title {
    font-size: 80px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* Supporting Text */
.hero-description {
    font-size: 19px;
    margin-bottom: 40px;
    color: #666;
    font-weight: 400;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: #000;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    min-width: 140px;
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: white;
    color: #000;
    border: 2px solid #000;
    padding: 13px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    min-width: 140px;
}

.btn-secondary:hover {
    background: #000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}


/* Responsive Design for Hero */
@media (min-width: 1024px) {
    .hero-content {
        text-align: center;
        margin: 0;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 50px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 35px;
    }
    
    .hero-description {
        font-size: 14px;
    }
}

/* About Section Responsive */
@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .about-cards {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 2rem;
    }
    
    .about-subtitle {
        font-size: 1rem;
    }
    
    .about {
        padding: 60px 0;
    }
}

/* Services Section Responsive */
@media (max-width: 768px) {
    .services-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon .feature-icon {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .services-title {
        font-size: 2rem;
    }
    
    .services {
        padding: 60px 0;
    }
    
    .service-icon .feature-icon {
        width: 100px;
        height: 100px;
    }
}

/* Reviews Section Responsive */
@media (max-width: 768px) {
    .reviews-title {
        font-size: 2.5rem;
    }
    
    .testimonials-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .reviews-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .quote-icon {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .reviews-title {
        font-size: 2rem;
    }
    
    .reviews {
        padding: 60px 0;
    }
    
    .testimonial-card {
        padding: 25px 15px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* Contact Section Responsive */
@media (max-width: 768px) {
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px 0;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-arrow .arrow-icon {
        width: 100px;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 2rem;
    }
    
    .contact {
        padding: 60px 0;
    }
    
    .contact-form {
        padding: 25px 0;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .contact-arrow .arrow-icon {
        width: 80px;
    }
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-nav {
        order: 2;
    }
    
    .footer-logo-left,
    .footer-logo-right {
        order: 1;
    }
    
    .footer-nav-menu {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-nav-link {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 30px;
    }
    
    .footer-nav-menu {
        gap: 15px;
    }
    
    .footer-nav-link {
        font-size: 13px;
    }
    
    .footer-copyright {
        font-size: 12px;
    }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

/* About Section */
.about {
    background: #F9F4EF;
    padding: 100px 0;
}

.about-label {
    text-align: center;
    margin-bottom: 30px;
}

.about-label .label-icon {
    height: 40px;
    width: auto;
    max-width: 100%;
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #000;
    line-height: 1.2;
}

.about-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin-top: 60px;
}

.about-card {
    text-align: center;
}

.card-icon {
    margin-bottom: 25px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

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

/* Services Section */
.services {
    background-image: url('images/services-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    position: relative;
}

.services-label {
    text-align: center;
    margin-bottom: 30px;
}

.services-label .label-icon {
    height: 40px;
    width: auto;
    max-width: 100%;
}

.services-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #000;
    line-height: 1.2;
}

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

.service-card {
    background: #edddf7;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon .feature-icon {
    width: 180px;
    height: 180px;
    object-fit: contain;
}

/* Service icon classes for future use */
.service-icon-credit {
    background-image: url('images/service-icon-1.png');
}

.service-icon-advisory {
    background-image: url('images/service-icon-2.png');
}

.service-icon-investment {
    background-image: url('images/service-icon-3.png');
}

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

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

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

/* Reviews Section */
.reviews {
    background: #F9F4EF;
    padding: 100px 0;
}

.reviews-label {
    text-align: center;
    margin-bottom: 30px;
}

.reviews-label .label-icon {
    height: 40px;
    width: auto;
    max-width: 100%;
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    gap: 20px;
}

.quote-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

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

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

.testimonials-block {
    display: flex;
    flex-direction: column;
}

.testimonial-card {
    background: #fff0e2;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    position: relative;
}

.testimonial-avatar {
    margin-bottom: 20px;
}

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

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

.author-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
}

.author-position {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.carousel-nav {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #000;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.carousel-btn:hover:not(:disabled) {
    background: #000;
    color: white;
}

.carousel-btn:disabled {
    background: white;
    color: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
}

.carousel-btn.active {
    background: #000;
    color: white;
}

.client-photo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.photo-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
}

/* Contact Section */
.contact {
    background-image: url('images/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Left Side (Heading + Arrow Icon) */
.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-arrow {
    align-self: flex-start;
}

.contact-arrow .arrow-icon {
    width: 120px;
    height: auto;
    max-width: 100%;
}

/* Right Side (Contact Form) */
.contact-form {
    background: transparent;
    padding: 50px;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #333;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom-color: #1F1F26;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
    font-family: 'Poppins', sans-serif;
}

.submit-btn {
    background: #1F1F26;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    margin-top: 20px;
}

.submit-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 31, 38, 0.3);
}

/* Success Message */
.success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
}

.success-message p {
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: #F9F4EF;
    padding: 60px 0 40px;
}

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

.footer-logo-left,
.footer-logo-right {
    flex-shrink: 0;
}

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

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

.footer-nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

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

.footer-nav-link:hover {
    color: #007bff;
}

.footer-divider {
    height: 1px;
    background: #ccc;
    margin: 30px 0;
}

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

.footer-copyright {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 15px 20px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 13px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}
