body {
    background: #000;
    font-family: 'Segoe UI', sans-serif;
}

.section-title {
    font-weight: 700;
}

.text-yellow {
    color: #ffc107;
}

.link-yellow {
    color: #ffc107;
    text-decoration: none;
}

.link-yellow:hover {
    color: #c0ea00;
    text-decoration: underline;
}

.btn-yellow {
    background: linear-gradient(45deg, #ffc107, #ff8f00) !important;
    color: #000 !important;
    font-weight: 600 !important;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-yellow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-yellow:hover::before {
    left: 100%;
}

.btn-yellow:hover {
    background: linear-gradient(45deg, #ff8f00, #ffc107) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

/* HERO */
.hero {
    min-height: 75vh;
    position: relative;
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: -1;
}

.hero-content {
    max-width: 700px;
    padding: 20px;
}

/* Contact Form */
.contact-form {
    background: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 193, 7, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffc107, transparent);
}

.contact-form .form-control {
    background: rgba(17, 17, 17, 0.8);
    padding: 17px 20px;
    border: 1px solid rgba(255, 193, 7, 0.2);
    color: #fff;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-form .form-control:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.1);
    background: rgba(17, 17, 17, 0.9);
    transform: translateY(-2px);
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.contact-form .form-control:focus::placeholder {
    color: rgba(0, 0, 0, 0.7);
}

.contact-form button {
    border-radius: 50px;
    padding: 17px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.contact-form button:hover::before {
    left: 100%;
}

/* Info & Locations */
.general-info,
.locations {
    background: #000;
}

.info-box,
.location-card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: .5rem;
    transition: transform .3s;
    border-radius: 8px;
}
.info-box:hover,
.location-card:hover{
  transform: translateY(-5px);
  border-color: #ffc107;
}
.info-box i,
.location-card i {
    color: #ffc107;
    margin-right: 6px;
}

.phone-input-container {
    position: relative;
    width: 100%;
}

/* ===== PERFECT PHONE INPUT STYLING ===== */

/* Main container */
.phone-input-container {
    position: relative;
    width: 100%;
}

/* Plugin wrapper */
.phone-input-container .iti {
    width: 100% !important;
    display: block !important;
}

/* Input field styling */
.phone-input-container input[type="tel"] {
    width: 100% !important;
    padding: 17px 15px 17px 90px !important;
    border: 1px solid #222 !important;
    border-radius: 8px !important;
    background: #111 !important;
    color: #fff !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
    height: auto !important;
}

.phone-input-container input[type="tel"]::placeholder {
    color: #fff !important;
    opacity: 0.7 !important;
}

.phone-input-container input[type="tel"]:focus {
    border-color: #ffc107 !important;
    background: #fff !important;
    color: #000 !important;
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.2) !important;
}

.phone-input-container input[type="tel"]:focus::placeholder {
    color: #666 !important;
}

/* Country code text color when input is focused */
.intl-phone-group:focus-within .iti__selected-dial-code,
.phone-input-container:focus-within .iti__selected-dial-code {
    color: #000 !important;
}

/* Flag container */
.phone-input-container .iti__flag-container {
    position: absolute !important;
    top: 0;
    left: 0;
    height: 100%;
    width: 80px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111 !important;
    border-right: 1px solid #222 !important;
    border-radius: 8px 0 0 8px !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
    z-index: 2 !important;
}

.phone-input-container .iti__flag-container:hover {
    background: #1a1a1a !important;
}

/* Selected flag and dial code */
.phone-input-container .iti__selected-flag {
    background: none !important;
    border: none !important;
    width: 100%;
    height: 100%;
    padding: 0 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.phone-input-container .iti__selected-dial-code {
    color: #ffc107 !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    margin-left: 4px !important;
}

.phone-input-container .iti__arrow {
    border-left: 4px solid transparent !important;
    border-right: 4px solid transparent !important;
    border-top: 4px solid #ffc107 !important;
    margin-left: 6px !important;
    transition: transform 0.2s ease !important;
}

.phone-input-container .iti__flag-container:hover .iti__arrow {
    transform: translateY(1px) !important;
}

/* ===== PERFECT DROPDOWN STYLING ===== */
.iti__country-list {
    background: #111 !important;
    border: 1px solid #333 !important;
    border-radius: 12px !important;
    max-height: 300px !important;
    overflow-y: auto !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: blur(10px) !important;
    position: fixed !important;
    z-index: 99999 !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

/* Individual country items */
.iti__country {
    padding: 12px 16px !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.iti__country:last-child {
    border-bottom: none !important;
}

.iti__country:hover,
.iti__country.iti__highlight {
    background: linear-gradient(135deg, #ffc107, #ffb300) !important;
    color: #000 !important;
    transform: translateX(4px) !important;
}

.iti__country-name {
    margin-left: 8px !important;
    flex: 1 !important;
}

.iti__country-dial-code {
    color: #ffc107 !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    margin-left: auto !important;
}

.iti__country.iti__highlight .iti__country-dial-code {
    color: #000 !important;
}

/* Search box */
.iti__search-box {
    background: #1a1a1a !important;
    color: #fff !important;
    border: none !important;
    border-bottom: 1px solid #333 !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    border-radius: 12px 12px 0 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.iti__search-box:focus {
    outline: none !important;
    border-bottom-color: #ffc107 !important;
    background: #222 !important;
}

.iti__search-box::placeholder {
    color: #888 !important;
    font-style: italic !important;
}

/* Scrollbar styling */
.iti__country-list::-webkit-scrollbar {
    width: 6px !important;
}

.iti__country-list::-webkit-scrollbar-track {
    background: #1a1a1a !important;
    border-radius: 3px !important;
}

.iti__country-list::-webkit-scrollbar-thumb {
    background: #ffc107 !important;
    border-radius: 3px !important;
}

.iti__country-list::-webkit-scrollbar-thumb:hover {
    background: #ffb300 !important;
}

/* ===== MOBILE RESPONSIVENESS ===== */
@media (max-width: 768px) {
    .phone-input-container input[type="tel"] {
        padding: 15px 12px 15px 80px !important;
        font-size: 16px !important; /* Prevents zoom on iOS */
    }
    
    .phone-input-container .iti__flag-container {
        width: 70px !important;
    }
    
    .phone-input-container .iti__selected-dial-code {
        font-size: 13px !important;
    }
    
    .iti__country-list {
        max-height: 60vh !important;
        width: calc(100vw - 20px) !important;
        left: 10px !important;
        right: 10px !important;
    }
    
    .iti__country {
        padding: 14px 16px !important;
        font-size: 15px !important;
    }
    
    .iti__search-box {
        padding: 14px 16px !important;
        font-size: 16px !important;
    }
}

@media (max-width: 480px) {
    .phone-input-container input[type="tel"] {
        padding: 14px 10px 14px 75px !important;
    }
    
    .phone-input-container .iti__flag-container {
        width: 65px !important;
    }
    
    .iti__country-list {
        max-height: 50vh !important;
        border-radius: 8px !important;
    }
    
    .iti__country {
        padding: 12px 14px !important;
    }
}


/* Modal Overlay */
.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* dark overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    /* above everything */
}

/* Modal Box */
.custom-modal-content {
    background: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    animation: popIn 0.3s ease-out;
    margin: 0 auto;
}

/* Additional modal styles for the JavaScript modal */
#customModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.modal-box {
    background: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    animation: popIn 0.3s ease-out;
    margin: 0 auto;
}

.modal-box.success {
    border-left: 6px solid #28a745;
}

.modal-box.danger {
    border-left: 6px solid #dc3545;
}

.modal-box.warning {
    border-left: 6px solid #ffc107;
}

.modal-box.info {
    border-left: 6px solid #17a2b8;
}

/* Success / Error / Warning colors */
.custom-modal-content.success {
    border-left: 6px solid #28a745;
}

.custom-modal-content.danger {
    border-left: 6px solid #dc3545;
}

.custom-modal-content.warning {
    border-left: 6px solid #ffc107;
}

/* Close Button */
.custom-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
}

.custom-modal-close:hover {
    color: #333;
}

/* Close button for modal-box */
#closeModal {
    background: #144d73;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 15px;
    transition: background 0.3s ease;
}

#closeModal:hover {
    background: #ffc107;
}

/* Pop-in animation */
@keyframes popIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Ensure modal is always centered and visible */
.custom-modal,
#customModal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 99999 !important;
    background: rgba(0, 0, 0, 0.5) !important;
}

/* Ensure modal content is properly positioned */
.custom-modal-content,
.modal-box {
    position: relative !important;
    margin: 0 auto !important;
    transform: none !important;
}

/* Force modal to be visible and centered */
.custom-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.5) !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 99999 !important;
}

.custom-modal-content {
    background: #fff !important;
    padding: 20px 30px !important;
    border-radius: 10px !important;
    text-align: center !important;
    max-width: 400px !important;
    width: 90% !important;
    position: relative !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3) !important;
    animation: popIn 0.3s ease-out !important;
    margin: 0 auto !important;
}


/* Ensure proper dropdown container */
.iti {
    position: relative !important;
}

/* Hide dropdown by default */
.iti__country-list.iti__hide {
    display: none !important;
    visibility: hidden !important;
}

/* Show dropdown when not hidden */
.iti__country-list:not(.iti__hide) {
    display: block !important;
    visibility: visible !important;
}

/* Input group styling */
.intl-phone-group {
    max-width: 100%;
}

.intl-phone-group .iti {
    width: 100%;
}

.intl-phone-group input[type="tel"] {
    padding-left: 90px !important;
}
