/* ===== STYLES PRENSIPAL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0a1628;
    --secondary: #D4AF37;
    --gold: #D4AF37;
    --gold-light: #FFD84D;
    --gold-dark: #9A6A00;
    --light: #f5f2ed;
    --white: #ffffff;
    --shadow: 0 10px 40px rgba(0,0,0,0.15);
    --radius: 10px;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--light);
    color: #1a1a2e;
    line-height: 1.7;
}

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

/* ===== HERO (PI FONSE) ===== */
.hero {
    background: linear-gradient(135deg, #050d1f 0%, #0a1628 50%, #0f1f3a 100%);
    color: #ffffff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    order: 2;
}
 
.hero-image {
    order: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
width:80%;
max-width:600px;
}

/* Pa gen border, pa gen background, pa gen fòm won*/ 
.profile-placeholder {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    /* Background ble fonse */
    background: linear-gradient(135deg, #02050a 0%, #050d1f 50%, #0a1628 100%);
}

/* Foto a parèt natirèl (pa detire) */
.profile-placeholder img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--gold);
    color: #0a1628;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 5px 20px rgba(212,175,55,0.3);
    z-index: 2;
}
/*.hero-image {
    order: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    width: 80%;          /* Lajè a defini */
    max-width: 720px;    /* Limit maksimòm */
    max-height: 720px;   /* Limit maksimòm wotè */
    margin: 0 auto;      /* Santre */
}

/* Background ble fonse */
.profile-placeholder {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    background: linear-gradient(135deg, #02050a 0%, #050d1f 50%, #0a1628 100%);
}

/* Foto a pran tout espas la */
.profile-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Badge */
.badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--gold);
    color: #0a1628;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 5px 20px rgba(212,175,55,0.3);
    z-index: 2;
} 

/* ===== TEKS HERO - DE LIY AK KOULE ===== */
.hero-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    width: 60%;
}

/* BRIDGING LANGUAGE. BUILDING TRUST. - Piti, koulè lò */
.hero-text .bridging-tagline {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 10px;
}

/* Clear Communication. Stronger Connections. - Gwo, DE LIY */
.hero-text h2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin: 0;
}

/* Clear Communication. - BLAN (premye h2) */
.hero-text h2:first-of-type {
    color: #ffffff;
}

/* Stronger Connections. - LÒ (dezyèm h2) */
.hero-text h2:nth-of-type(2) {
    color: #d4af37;
}

.hero-text p {
    font-size: 1rem;
    opacity: 0.85;
    max-width: 550px;
    margin-bottom: 25px;
}

.hero-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.phone {
    font-size: 1.2rem;
    font-weight: 600;
}

.phone i {
    color: var(--gold);
    margin-right: 8px;
}

.btn {
    background: linear-gradient(135deg, #9A6A00 0%, #D4AF37 25%, #FFD84D 50%, #D4AF37 75%, #9A6A00 100%);
    padding: 12px 30px;
    border-radius: 40px;
    color: #0a1628;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    box-shadow: 0 5px 15px rgba(212,175,55,0.25);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212,175,55,0.4);
}

.btn-outline {
    background: transparent;
    padding: 12px 30px;
    border-radius: 40px;
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: linear-gradient(135deg, #9A6A00, #D4AF37, #FFD84D);
    color: #0a1628;
    border-color: var(--gold);
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.2rem;
}

.languages {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.languages span {
    background: rgba(255,255,255,0.08);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    border: 1px solid rgba(255,255,255,0.05);
}

.location {
    font-size: 0.9rem;
    opacity: 0.7;
}

.location i {
    margin-right: 6px;
    color: var(--gold);
}

/* ===== WELCOME SECTION ===== */
.welcome-section {
    background: linear-gradient(135deg, #0a1628 0%, #1c2e4a 100%);
    color: #ffffff;
    padding: 80px 0;
}

.welcome-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.welcome-content .section-title {
    color: #ffffff;
}

.welcome-text p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.welcome-highlight {
    font-size: 1.3rem !important;
    font-weight: 700;
    color: var(--gold);
}

.welcome-promise {
    font-weight: 600;
    color: #ffffff;
}

/* ===== STORY SECTION ===== */
.story-section {
    background: linear-gradient(135deg, #0a1628 0%, #1c2e4a 100%);
    color: #ffffff;
    padding: 80px 0;
}

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

.story-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.story-text h3 {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 20px;
}

.story-text p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 15px;
    font-size: 1.05rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.story-text p:last-child {
    color: var(--gold);
    font-weight: 600;
}

/* ===== VALUES ===== */
.story-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.value-icon {
    width: 45px;
    height: 45px;
    background: rgba(212,175,55,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gold);
}

.value-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.value-item p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

/* ===== SERVICES PREVIEW ===== */
.services-preview {
    padding: 80px 0;
    background: var(--light);
}

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

.service-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: var(--secondary);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(212,175,55,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: var(--secondary);
}

.service-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
}

.service-card p {
    font-size: 0.95rem;
    color: #666;
}

/* ===== TESTIMONIALS ===== */
.testimonials-preview {
    padding: 80px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--light);
    padding: 30px;
    border-radius: var(--radius);
    border-left: 4px solid var(--secondary);
}

.testimonial-content {
    position: relative;
    padding: 0 10px;
}

.testimonial-content i {
    color: var(--secondary);
    font-size: 24px;
    opacity: 0.4;
    margin-bottom: 10px;
    display: block;
}

.testimonial-content p {
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.7;
}

.testimonial-author {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0dcd5;
}

.testimonial-author strong {
    display: block;
    color: var(--primary);
}

.testimonial-author span {
    font-size: 0.85rem;
    color: #888;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #0f1f3a 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.8rem;
    font-weight: 800;
}

.cta-section h3 {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--secondary);
    margin: 10px 0 30px;
}

/* ===== RESPONSIVE INDEX ===== */
@media (max-width: 768px) {
    .hero {
        padding: 40px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-text {
        order: 1;
    }

    .hero-image {
        order: 2;
    }

    .hero-text .bridging-tagline {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }

    .hero-text h2 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-text h3 {
        font-size: 1.2rem;
    }

    .hero-text p {
        font-size: 0.95rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-contact {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
    }

    /* Retire width ak height fiks sou mobil! */
    .profile-placeholder {
        width: 100%;
        height: auto;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .welcome-section {
        padding: 40px 0;
    }

    .welcome-text p {
        font-size: 0.95rem;
    }

    .story-section {
        padding: 40px 0;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .story-values {
        margin-top: 20px;
    }

    .services-preview {
        padding: 40px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .testimonials-preview {
        padding: 40px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-section {
        padding: 50px 20px;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section h3 {
        font-size: 1rem;
    }

    .btn-large {
        padding: 14px 35px;
        font-size: 1rem;
    }
}

/* ===== TI EKRAN ===== */
@media (max-width: 480px) {
    .hero-text .bridging-tagline {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }

    .hero-text h2 {
        font-size: 1.6rem;
    }

    .hero-text h3 {
        font-size: 1rem;
    }

    .profile-placeholder {
        width: 100%;
        height: auto;
    }

    .badge {
        bottom: 10px;
        right: 10px;
        padding: 5px 12px;
        font-size: 0.7rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 15px;
    }
}

/* ===== ANIMASYON ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.welcome-content,
.story-grid,
.service-card,
.testimonial-card {
    animation: fadeInUp 0.8s ease-out;
}
