:root {
    --primary-green: #014131;
    --accent-teal: #42726d;
    --dark-bg: #1a1e22;
    --text-dark: #222222;
    --text-gray: #555555;
    --bg-light: #f4f8f7;
    --white: #ffffff;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body, input, button, textarea, select { font-family: 'Inter', sans-serif; }
body { color: var(--text-dark); line-height: 1.6; background-color: #ffffff; overflow-x: hidden; }
section + section { margin-top: -1px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.navbar { background: #ffffff; padding: 15px 5%; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.logo img { height: 60px; display: block; }
.nav-center { display: flex; gap: 20px; align-items: center; margin-left: auto; margin-right: 40px; }
.nav-item { position: relative; padding: 10px 0; cursor: pointer; }
.nav-link { color: #000000; font-weight: 600; font-size: 0.85rem; text-transform: uppercase; padding: 8px 12px; border-radius: 5px; transition: all 0.3s ease; display: block; }
.nav-link:hover { color: var(--primary-green); background-color: rgba(1, 65, 49, 0.05); }
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    width: 960px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-top: 3px solid var(--accent-teal);
    border-radius: 16px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 20px 16px;
    z-index: 1001;
    text-align: left;
}

.dropdown-col {
    display: flex;
    flex-direction: column;
}

.dropdown-col-title {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-teal);
    padding: 6px 20px 10px;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-dark);
    text-transform: none;
    text-shadow: none;
    white-space: nowrap;
    transition: background 0.25s ease, color 0.25s ease, padding-left 0.25s ease;
}

.dropdown-menu li a i {
    width: 16px;
    flex-shrink: 0;
    text-align: center;
    font-size: 0.8rem;
    color: var(--accent-teal);
    transition: color 0.25s ease;
}

.dropdown-col li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background: #f0f8f7;
    color: var(--primary-green);
    padding-left: 25px;
}

.dropdown-menu li a:hover i {
    color: var(--primary-green);
}

.dropdown-placeholder a,
.dropdown-placeholder a:hover {
    visibility: hidden;
    pointer-events: none;
    background: transparent;
    padding-left: 20px;
}

.dropdown-menu li a.active-page {
    color: var(--primary-green);
    font-weight: 700;
    background-color: rgba(1, 65, 49, 0.05);
}

.nav-right { display: flex; gap: 15px; align-items: center; }
.btn-lang {
    padding: 8px 12px;
    border: 2px solid #000000;
    border-radius: 50px;
    background: transparent;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
}
.btn-lang:hover {
    border-color: var(--primary-green);
    transform: translateY(-2px);
}
.btn-auth { padding: 10px 20px; border: 2px solid #000000; color: #000000; border-radius: 50px; font-weight: 600; font-size: 0.85rem; background: transparent; transition: 0.3s; }
.btn-auth:hover { background-color: var(--primary-green); border-color: var(--primary-green); color: #ffffff; transform: translateY(-2px); }
.hamburger-menu { display: none; font-size: 2rem; color: #000; cursor: pointer; }

.contact-us-section {
    padding: 100px 5%;
    background-color: #ffffff;
    margin-bottom: 100px;
}

.contact-wrapper {
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.contact-info-side { flex: 1; }

.contact-info-side h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark, #333);
    margin-bottom: 15px;
    line-height: 1.2;
}

.contact-desc {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 90%;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 25px;
}

.info-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-green, #014131);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 10px 20px rgba(1, 65, 49, 0.2);
    transition: transform 0.3s ease;
}

.info-item:hover .info-icon { transform: scale(1.1); }

.info-text h4 { font-size: 1.1rem; font-weight: 700; color: #222; margin-bottom: 3px; }
.info-text p { font-size: 0.95rem; color: #555; margin: 0; }

.contact-form-side { flex: 1.2; }

.form-card-minimal {
    background: #ffffff;
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0,0,0,0.03);
}

.form-badge {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-green, #014131);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.form-card-minimal h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 40px;
}

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

.floating-group {
    position: relative;
    margin-bottom: 35px;
    margin-top: 20px;
}

.floating-group input,
.floating-group select,
.floating-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    padding: 10px 0 5px 0;
    font-size: 1rem;
    color: #333;
    outline: none;
    transition: all 0.3s ease;
}

.select-group { position: relative; }
.select-group select { appearance: none; -webkit-appearance: none; cursor: pointer; color: transparent; }
.select-group select:focus, .select-group select:valid { color: #333; }
.custom-arrow {
    position: absolute;
    right: 5px;
    top: 15px;
    color: #aaa;
    pointer-events: none;
    transition: 0.3s;
}
.select-group select:focus ~ .custom-arrow { color: var(--primary-green, #014131); transform: rotate(180deg); }

.floating-group textarea {
    resize: vertical;
    min-height: 40px;
}

.floating-group input:focus,
.floating-group select:focus,
.floating-group textarea:focus {
    border-bottom-color: var(--primary-green, #014131);
}

.floating-group label {
    position: absolute;
    top: 10px;
    left: 0;
    font-size: 0.95rem;
    color: #999;
    pointer-events: none;
    transition: all 0.3s ease;
}

.floating-group input:focus ~ label,
.floating-group input:not(:placeholder-shown) ~ label,
.floating-group select:focus ~ label,
.floating-group select:valid ~ label,
.floating-group textarea:focus ~ label,
.floating-group textarea:not(:placeholder-shown) ~ label {
    top: -20px;
    font-size: 0.8rem;
    color: var(--primary-green, #014131);
    font-weight: 600;
}

.btn-send-minimal {
    background-color: var(--primary-green, #014131);
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 15px 40px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-send-minimal:hover {
    background-color: var(--accent-teal, #42726d);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(1, 65, 49, 0.2);
}

.mobile-menu-overlay { position: fixed; top: 0; left: -100%; width: 100%; height: 100%; background-color: var(--primary-green); z-index: 2000; transition: all 0.5s cubic-bezier(0.77,0.2,0.05,1); display: flex; flex-direction: column; padding: 40px 10% 80px; overflow-y: auto; }
.mobile-menu-overlay.active { left: 0; }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.close-mobile-menu { color: white; font-size: 2.5rem; cursor: pointer; }
.mobile-nav-list { display: flex; flex-direction: column; gap: 20px; }
.mobile-nav-item { border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px; }
.mobile-nav-link { color: white; font-size: 1.4rem; font-weight: 700; display: flex; justify-content: space-between; align-items: center; }
.mobile-dropdown { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding-left: 20px; background: rgba(0,0,0,0.1); border-radius: 10px; }
.mobile-dropdown.active { max-height: 500px; margin-top: 15px; padding: 15px 20px; }
.mobile-dropdown li { margin-bottom: 12px; }
.mobile-dropdown li a { color: #cfe9e5; font-size: 1.05rem; font-weight: 500; }
.mobile-auth-btns { margin-top: 40px; display: flex; flex-direction: column; gap: 15px; }
.mobile-auth-btns .btn-auth { text-align: center; padding: 15px; font-size: 1rem; color: #fff; border-color: rgba(255,255,255,0.5); }
.mobile-auth-btns .btn-auth:hover { background: #fff; color: var(--primary-green); border-color: #fff; }

footer { background-color: #1a1e22; color: #b0b0b0; padding: 80px 5% 60px; }
.footer-content { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1.5fr; gap: 50px; max-width: 1200px; margin: 0 auto; }
.footer-col h4 { color: var(--white); font-size: 1.4rem; font-weight: 700; margin-bottom: 25px; line-height: 1.3; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: #b0b0b0; font-size: 0.95rem; font-weight: 600; text-decoration: none; transition: 0.3s; }
.footer-col ul li a:hover { color: var(--accent-teal); padding-left: 5px; }
.footer-logo { width: 210px; display: block; margin-top: -35px; margin-left: -45px; margin-bottom: 15px; }
.footer-col:first-child { display: flex; flex-direction: column; align-items: flex-start; }
.miami-address { margin-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }
.miami-address p { font-size: 0.9rem; line-height: 1.6; color: #999; }
.miami-address p strong { color: #d0d0d0; font-weight: 600; }
.footer-plus-icon { color: #4db6ac; font-size: 3rem; opacity: 0.8; font-weight: bold; transform: rotate(15deg); display: inline-block; margin-top: -10px; }
.footer-socials { display: flex; gap: 12px; margin-top: 30px; }
.footer-socials a { width: 45px; height: 45px; background: #000; color: #fff; display: flex; align-items: center; justify-content: center; border-radius: 8px; font-size: 1.3rem; transition: 0.3s; }
.footer-socials a:hover { transform: translateY(-3px); background: var(--accent-teal); }

@media (max-width: 992px) {
    .nav-center, .nav-right { display: none; }
    .hamburger-menu { display: block !important; z-index: 1001; }
    .contact-wrapper { flex-direction: column; gap: 50px; }
    .contact-info-side { text-align: center; }
    .contact-desc { margin: 0 auto 40px; }
    .info-list { align-items: flex-start; display: inline-flex; text-align: left; }
    .form-card-minimal { padding: 40px 25px; }
    .contact-info-side h2 { font-size: 2.2rem; }
    .footer-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-col:first-child { align-items: center; }
    .footer-logo { margin-left: 0; margin-top: 0; }
    .footer-socials { justify-content: center; }
}

/* --- WhatsApp float button --- */
        .whatsapp-float {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
            z-index: 1500;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            animation: whatsapp-pulse 2.5s infinite;
            text-decoration: none;
        }

        .whatsapp-float:hover {
            transform: scale(1.08);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
        }

        @keyframes whatsapp-pulse {
            0% { box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(37, 211, 102, 0.5); }
            70% { box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), 0 0 0 14px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(37, 211, 102, 0); }
        }

        @media (max-width: 768px) {
            .whatsapp-float {
                width: 52px;
                height: 52px;
                font-size: 1.5rem;
                bottom: 18px;
                right: 18px;
            }
        }

/* --- HER YERDE / WORLD PRESENCE (index.html'den aynen taşındı) --- */
        .organic-subtitle {
            display: block;
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--accent-teal, #42726d);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

        .world-presence-section {
            padding: 100px 5% 100px;
            margin-bottom: 0;
            background-color: #e9f9fa;
            text-align: center;
            overflow: hidden;
        }

        .world-presence-header {
            max-width: 800px;
            margin: 0 auto 60px;
        }

        .world-presence-header .organic-subtitle {
            color: var(--accent-teal, #42726d);
        }

        .world-presence-header h2 {
            font-size: 3rem;
            font-weight: 800;
            color: var(--text-dark, #333);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .world-presence-header p {
            font-size: 1.1rem;
            color: #666666;
            line-height: 1.6;
        }

        .world-map-wrapper {
            position: relative;
            width: 100vw;
            margin-left: calc(50% - 50vw);
            margin-right: calc(50% - 50vw);
            max-width: none;
            aspect-ratio: 2 / 1;
            margin-bottom: 60px;
        }

        .world-map-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            display: block;
            object-fit: contain;
        }

        .map-pin {
            position: absolute;
            transform: translate(-50%, -100%);
            z-index: 2;
            line-height: 1;
            opacity: 0;
            animation: pinIntro 0.32s ease-out forwards;
        }

        @keyframes pinIntro {
            from {
                opacity: 0;
                transform: translate(-50%, -60%) scale(0.3);
            }

            to {
                opacity: 1;
                transform: translate(-50%, -100%) scale(1);
            }
        }

        .map-pin:hover {
            z-index: 50;
        }

        /* Türkiye kartı her zaman açık kaldığı için, haritada yakınındaki
           sabit duran pin işaretleri onun kartının altında kalıp görünmez
           olmasın diye z-index'ini normal (etkileşimsiz) pinlerin
           (z-index:2) bile altına düşürüyoruz; böylece etrafındaki tüm pin
           uçları her zaman Türkiye kartının üstünde/önünde görünür. Hover
           veya odaklanma anında yine en öne (z-index:50) çıkar. */
        .map-pin.pin-forced-open#pin-turkiye {
            z-index: 1;
        }

        .map-pin:hover#pin-turkiye,
        #pin-turkiye:focus-within {
            z-index: 50;
        }

        .map-pin>i {
            display: inline-block;
            font-size: 1.3rem;
            color: #a6bdb7;
            filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.55));
            transition: transform 0.25s ease;
            cursor: pointer;
        }

        .map-pin:hover>i {
            transform: scale(1.35);
        }

        .pin-card {
            position: absolute;
            bottom: 100%;
            left: 50%;
            width: 170px;
            background: var(--white);
            border-radius: 28px 28px 50% 50% / 28px 28px 60% 60%;
            overflow: hidden;
            box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
            padding-bottom: 22px;
            text-align: center;
            opacity: 0;
            pointer-events: none;
            transform: translate(-50%, 8px) scale(0.92);
            transform-origin: bottom center;
            transition: opacity 0.22s ease 0.5s, transform 0.22s ease 0.5s, pointer-events 0s linear 0.5s;
        }

        .map-pin:hover .pin-card,
        .map-pin.pin-forced-open .pin-card {
            opacity: 1;
            pointer-events: auto;
            transform: translate(-50%, -10px) scale(1);
            transition: opacity 0.22s ease, transform 0.22s ease, pointer-events 0s linear;
        }

        .pin-card img {
            width: 100%;
            height: 140px;
            object-fit: cover;
            display: block;
            border-radius: 28px 28px 0 0;
        }

        .pin-card-name {
            display: block;
            color: var(--primary-green, #014131);
            font-weight: 800;
            font-size: 0.8rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            padding: 12px 10px 10px;
            line-height: 1.3;
        }

        .pin-card-icons {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .pin-card-globe {
            width: 30px;
            height: 30px;
            border: 2px solid var(--primary-green, #014131);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-green, #014131);
            font-size: 0.85rem;
            text-decoration: none;
            cursor: pointer;
            transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
        }

        .pin-card-globe:hover {
            background: var(--primary-green, #014131);
            color: var(--white);
            transform: scale(1.12);
        }

        .world-countries-list {
            max-width: 1500px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
        }

        .country-row {
            display: flex;
            flex-wrap: nowrap;
            justify-content: center;
            gap: 10px 0;
        }

        a.country-tag {
            display: inline-flex;
            align-items: center;
            color: var(--primary-green, #014131);
            font-size: 0.95rem;
            font-weight: 600;
            padding: 4px 10px;
            background: none;
            border: none;
            text-decoration: none;
            cursor: pointer;
            transition: 0.25s;
            white-space: nowrap;
        }

        .country-row a.country-tag:not(:last-child)::after {
            content: "|";
            display: inline-block;
            margin-left: 8px;
            color: #c3d2ce;
            font-weight: 400;
        }

        @media (max-width: 992px) {
            .country-row {
                flex-wrap: wrap;
            }

            a.country-tag {
                white-space: normal;
            }
        }

        a.country-tag:hover {
            color: var(--accent-teal, #42726d);
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .world-presence-header h2 {
                font-size: 2.2rem;
            }

            .world-map-wrapper {
                aspect-ratio: auto;
                height: auto;
                overflow: visible;
            }

            .world-map-img {
                position: relative;
                inset: auto;
                width: 100%;
                height: auto;
                aspect-ratio: 2 / 1;
                object-fit: contain;
            }

            .map-pin>i {
                font-size: 1rem;
            }

            .pin-card {
                width: 140px;
            }

            .pin-card img {
                height: 110px;
            }
        }
