/* ====================================
   MOBILE MENU STYLES
   ==================================== */

   @media (max-width: 992px) {
    header#header {
        min-height: 80px;
        display: flex;
        align-items: center;
        z-index: 990;
    }
    
    .header-container {
        position: relative;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    .logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        margin: 0;
        z-index: 5;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .logo img {
        max-height: 60px;
        width: auto;
        display: block;
    }
    
    .mobile-menu-btn {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        padding: 10px;
        cursor: pointer;
        z-index: 991;
        height: 40px;
    }
    
    .mobile-menu-btn .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 3px auto;
        background-color: var(--secondary);
        transition: all 0.3s ease-in-out;
    }
    
    nav {
        width: 0;
        overflow: visible;
        position: static;
    }
    
    nav > ul {
        display: none !important;
    }
    
    .mobile-menu-container {
        position: fixed;
        left: -100%;
        top: 0;
        width: 80%;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--card-shadow);
        z-index: 1000;
        transition: all 0.3s ease;
        overflow-y: auto;
    }
    
    .mobile-menu-container.active {
        left: 0;
    }
    
    .mobile-menu-header {
        padding: 20px 15px;
        display: flex;
        justify-content: flex-end;
        border-bottom: 1px solid var(--light-gray);
    }
    
    .mobile-menu-close {
        background: none;
        border: none;
        font-size: 30px;
        line-height: 1;
        cursor: pointer;
        color: var(--secondary);
        padding: 5px 10px;
    }
    
    .close-icon {
        display: block;
    }
    
    #mobile-nav-menu {
        display: block;
        padding: 20px;
        margin: 0;
        list-style: none;
    }
    
    #mobile-nav-menu li {
        margin-bottom: 15px;
    }
    
    #mobile-nav-menu li a {
        display: block;
        padding: 10px 0;
        font-size: 18px;
        color: var(--secondary);
        font-weight: 500;
        text-decoration: none;
    }
    
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

@media (min-width: 993px) {
    .mobile-menu-container,
    .mobile-menu-overlay,
    .mobile-menu-btn {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .container {
        padding-top: 60px;
    }
}

/* ====================================
   HIZLI KURBAN BAGISI STYLES
   ==================================== */

.hizli-kurban-container {
    max-width: 1100px;
    margin: 60px auto 0;
    background: var(--white);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    position: relative;
    z-index: 1;
    display: block;
}

.hizli-kurban-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.hizli-kurban-left-column {
    position: sticky;
    top: 2rem;
}

.hizli-kurban-right-column {
    min-height: 340px;
}

.hizli-kurban-price-display {
    text-align: center;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem;
    border-radius: 16px;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.hizli-kurban-type-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.hizli-type-option {
    background: var(--light);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hizli-type-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.3);
}

.hizli-type-option.active {
    border-color: var(--primary);
    
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.hizli-niyet-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.hizli-niyet-option {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    padding: 0.75rem 0.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.hizli-niyet-option:hover {
    border-color: var(--primary);
    transform: translateY(-1px);
}

.hizli-niyet-option.active {
    border-color: var(--primary);
    color: var(--primary);
}

.hizli-sub-type-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.hizli-sub-type-option {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hizli-sub-type-option:hover {
    border-color: var(--primary);
    transform: translateY(-1px);
}

.hizli-sub-type-option.active {
    border-color: var(--primary);
   	background: rgba(0, 0, 0, 0.05);
}

.hizli-kurban-container .quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--light);
    border-radius: 12px;
    padding: 0.75rem;
    max-width: 160px;
    margin: 0 auto;
}

.hizli-kurban-container .qty-btn {
    width: 32px;
    height: 32px;
    border: 2px solid var(--primary);
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
    user-select: none;
}

.hizli-kurban-container .qty-btn:hover:not(:disabled) {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.hizli-kurban-container .qty-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: #f1f3f4;
    border-color: #e1e5e9;
    color: #9aa0a6;
}

#hizli-quantity {
    width: 50px;
    height: 32px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    background: var(--white);
    outline: none;
    user-select: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: textfield;
}

#hizli-quantity::-webkit-outer-spin-button,
#hizli-quantity::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#hizli-quantity:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(45, 150, 112, 0.1);
}

.hizli-kurban-agreement {
    margin-bottom: 1rem;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.05);
    border: 2px solid rgba(0, 0, 0, 0.15);
    border-radius: 12px;
}

.custom-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--secondary);
    position: relative;
}

.custom-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 4px;
    background: var(--white);
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.custom-checkbox:hover .checkmark {
    border-color: #47B285;
    box-shadow: 0 0 0 2px rgba(45, 150, 112, 0.1);
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    flex: 1;
    user-select: none;
}

.checkbox-text strong {
    color: var(--primary);
    font-weight: 600;
}

.custom-checkbox.error .checkmark {
    border-color: var(--error);
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.1);
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    75% { transform: translateX(3px); }
}

.hizli-kurban-submit {
    text-align: right;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--light-gray);
    grid-column: 1 / -1;
}

.hizli-kurban-submit .btn {
    min-width: 220px;
    font-size: 1rem;
    padding: 1.125rem 2.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hizli-kurban-submit .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.67);
}

/* ====================================
   VACIP KURBANI STYLES
   ==================================== */

.vacip-form-container {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    position: relative;
    z-index: 1;
}

.vacip-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.vacip-left-column {
    position: sticky;
    top: 2rem;
}

.vacip-right-column {
    min-height: 400px;
}

.vacip-price-display {
    text-align: center;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem;
    border-radius: 16px;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.price-label {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.price-amount {
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.kurban-type-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.type-option {
    background: var(--light);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.type-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.3);
}

.type-option.active {
    border-color: var(--primary);
    background: rgb(45 150 112 / 13%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.type-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.type-info {
    flex: 1;
    text-align: left;
}

.type-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.type-detail {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 0.25rem;
}

.type-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.sub-type-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sub-type-option {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sub-type-option:hover {
    border-color: var(--primary);
    transform: translateY(-1px);
}

.sub-type-option.active {
    border-color: var(--primary);
    background: rgba(45, 150, 112, 0.05);
}

.sub-type-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary);
}

.sub-type-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
}

.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--light);
    border-radius: 12px;
    padding: 0.75rem;
    max-width: 160px;
    margin: 0 auto;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: 2px solid var(--primary);
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
    user-select: none;
}

.qty-btn:hover:not(:disabled) {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.qty-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: #f1f3f4;
    border-color: #e1e5e9;
    color: #9aa0a6;
}

#vacip-quantity {
    width: 50px;
    height: 32px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    background: var(--white);
    outline: none;
}

#vacip-quantity:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(45, 150, 112, 0.1);
}

#dynamic-forms {
    margin-bottom: 0;
}

.form-field-group {
    background: var(--light);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 3px solid var(--primary);
}

.form-field-group h4 {
    color: var(--secondary);
    margin-bottom: 0.875rem;
    font-size: 0.9rem;
    font-weight: 600;
}

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

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

.form-field label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--secondary);
}

.form-field input {
    width: 100%;
    padding: 0.625rem 0.75rem;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    background: var(--white);
    height: 42px;
	padding-left: 26px !important;
}

.tel-input-wrapper {
    position: relative;
    min-height: 50px;
    z-index: 2;
}

.option-group {
    margin-bottom: 2rem;
}

.option-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.vacip-submit {
    text-align: right;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--light-gray);
    grid-column: 1 / -1;
}

.vacip-submit .btn {
    min-width: 220px;
    font-size: 1rem;
    padding: 1.125rem 2.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.vacip-submit .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.67);
}

/* ====================================
   RESPONSIVE STYLES
   ==================================== */

@media (max-width: 992px) {
    .hizli-kurban-main-grid,
    .vacip-main-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hizli-kurban-left-column,
    .vacip-left-column {
        position: static;
    }
    
    .hizli-kurban-submit,
    .vacip-submit {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-content p {
        display: none !important;
    }
    
    .hizli-kurban-type-options,
    .kurban-type-options {
        display: flex;
        flex-direction: row;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .hizli-type-option,
    .type-option {
        flex: 1;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 0.75rem 0.5rem;
        min-height: 120px;
        justify-content: center;
    }
    
    .type-info {
        text-align: center;
    }
    
    .hizli-type-option .type-name,
    .type-name {
        font-size: 0.85rem !important;
        font-weight: 600;
        line-height: 1.2;
        margin-bottom: 0.3rem;
    }
    
    .hizli-type-option .type-detail,
    .type-detail {
        font-size: 1rem !important;
        line-height: 1.1;
        margin-bottom: 0.3rem;
    }
    
    .hizli-type-option .type-price,
    .type-price {
        font-size: 0.95rem !important;
        font-weight: 700;
    }
    
    .hizli-hayvan-group {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0.5rem;
    }

    .hizli-niyet-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
    }
    
    .hizli-niyet-option {
        padding: 0.6rem 0.4rem;
        font-size: 0.85rem;
    }
    
    .hizli-sub-type-option {
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left;
        padding: 1rem !important;
        gap: 0.5rem;
    }
    
    .sub-type-name {
        font-size: 0.9rem !important;
        font-weight: 600;
        color: var(--secondary);
        width: 100%;
    }
    
    .sub-type-price {
        font-size: 0.9rem !important;
        font-weight: 700;
        color: var(--primary);
        width: 100%;
        margin-top: 0.25rem;
    }
    
    .hizli-kurban-agreement {
        margin-bottom: 0.75rem;
        margin-top: 0.75rem;
        padding: 0.875rem;
    }
    
    .hizli-kurban-submit {
        margin-top: 1rem;
    }
    
    .custom-checkbox {
        font-size: 0.85rem;
        gap: 0.625rem;
    }
    
    .checkmark {
        width: 18px;
        height: 18px;
    }
    
    .custom-checkbox input[type="checkbox"]:checked + .checkmark::after {
        left: 5px;
        top: 1px;
        width: 3px;
        height: 7px;
    }
    
    .vacip-form-container {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .price-amount {
        font-size: 1.75rem;
    }

    .form-field-group {
        padding: 1.25rem;
    }

    .vacip-submit .btn {
        min-width: 200px;
        padding: 1rem 2rem;
    }
}

@media (max-width: 576px) {
    .vacip-form-container {
        padding: 1rem;
        margin: 0 0.5rem;
    }

    .price-amount {
        font-size: 1.5rem;
    }

    .quantity-selector {
        max-width: 140px;
    }

    .vacip-submit .btn {
        min-width: 180px;
        padding: 0.875rem 1.75rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hizli-niyet-options {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .hizli-type-option .type-name,
    .type-name {
        font-size: 0.85rem !important;
    }
    
    .hizli-type-option .type-detail,
    .type-detail {
        font-size: 1rem !important;
    }
    
    .hizli-type-option .type-price,
    .type-price {
        font-size: 0.9rem !important;
    }
    
    .custom-checkbox {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .type-option {
        padding: 0.5rem 0.25rem;
        min-height: 110px;
    }
}

/* ====================================
   LOADING OVERLAY
   ==================================== */

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-overlay.active {
    display: flex;
}

.loading-content {
    text-align: center;
    color: var(--white);
}

.loading-spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid var(--white);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ====================================
   WORKING PHONE INPUT STYLES
   ==================================== */

.working-phone-wrapper {
    position: relative;
    width: 100%;
}

.working-phone-input-row {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.working-country-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 0.75rem;
    border: 1px solid var(--light-gray);
    background: var(--white);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
    height: 42px;
}

.working-country-btn:hover {
    border-color: var(--primary);
}

.working-country-flag {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

.working-country-code {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--secondary);
}

.working-dropdown-icon {
    font-size: 0.7rem;
    margin-left: auto;
    color: var(--gray);
    transition: transform 0.3s ease;
}

.working-country-btn.open .working-dropdown-icon {
    transform: rotate(180deg);
}

.working-phone-number {
    flex: 1;
    padding: 0.625rem 0.75rem;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    height: 42px;
}

.working-phone-number:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(45, 150, 112, 0.1);
}

.working-country-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.working-country-dropdown.show {
    max-height: 300px;
    opacity: 1;
    overflow-y: auto;
}

.working-search-box {
    width: calc(100% - 20px);
    margin: 10px;
    padding: 0.5rem;
    border: 1px solid var(--light-gray);
    border-radius: 6px;
    font-size: 0.85rem;
}

.working-countries-list {
    max-height: 250px;
    overflow-y: auto;
}

.working-country-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.working-country-option:hover {
    background: var(--light);
}

.working-country-option.selected {
    background: rgba(45, 150, 112, 0.1);
}

.working-country-name {
    flex: 1;
    font-size: 0.85rem;
    color: var(--secondary);
}

.working-country-dial {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 500;
}

/* TELEFON ÜLKE DROPDOWN - MOBİL UYUMLU */

/* ITI Ana Container */
.iti {
    position: relative !important;
    z-index: 11;
    overflow: visible !important;
}

.iti__dropdown-content {
    position: absolute !important;
    z-index: 999999 !important;
    overflow: visible !important;
}

/* Ülke Listesi */
.iti__country-list {
    position: absolute !important;
    z-index: 999999 !important;
    background: var(--white) !important;
    border: 1px solid var(--light-gray) !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
    max-height: 300px !important;
    overflow-y: auto !important;
    width: 300px !important;
}

.iti__country {
    padding: 12px 15px !important;
    border-bottom: 1px solid var(--light) !important;
    cursor: pointer !important;
    transition: background-color 0.2s ease !important;
}

.iti__country:hover {
    background-color: var(--light) !important;
}

.iti__country.iti__highlight {
    background-color: var(--primary) !important;
    color: var(--white) !important;
}

.iti__search-input {
    width: 100% !important;
    padding: 10px 15px !important;
    border: none !important;
    border-bottom: 1px solid var(--light-gray) !important;
    font-size: 14px !important;
    outline: none !important;
}

.iti__dropdown-content.iti__hide {
    display: none !important;
}

.iti__dropdown-content:not(.iti__hide) {
    display: block !important;
}

/* Scrollbar */
.iti__country-list::-webkit-scrollbar {
    width: 6px;
}

.iti__country-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.iti__country-list::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.iti__country-list::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}

/* Desktop */
@media (min-width: 769px) {
    .iti__country-list {
        position: absolute !important;
        left: 0 !important;
        top: 100% !important;
        margin-top: 2px !important;
        width: 300px !important;
    }
}

/* Tablet */
@media (max-width: 768px) and (min-width: 577px) {
    .iti__country-list {
        position: fixed !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 320px !important;
        max-width: 90vw !important;
        max-height: 60vh !important;
    }
}

/* Mobil */
@media (max-width: 576px) {
    .iti__country-list {
        position: fixed !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 280px !important;
        max-width: 85vw !important;
        max-height: 50vh !important;
        z-index: 999999 !important;
    }
    
    /* Dropdown açıkken overlay */
    .iti__dropdown-content:not(.iti__hide)::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999998;
        pointer-events: auto;
    }
    
    body.iti-mobile-open {
        overflow: hidden !important;
    }
    
    .featured-card {
        overflow: visible !important;
    }
    
    .tel-input-wrapper {
        position: relative;
        z-index: 10;
        overflow: visible !important;
    }
    
    .featured-grid {
        overflow: visible !important;
    }
    
    .featured-services {
        overflow: visible !important;
    }
    
    .container {
        overflow: visible !important;
    }
}