/* ============================================================================================================================= */
/* ======================================================= GLOBAL STYLES ======================================================= */
/* ============================================================================================================================= */

/* General styles applied across the site */
body {
    margin: 0;
    /* Remove default margins */
    font-family: "Ubuntu", sans-serif;
    /* Set font family */
    background-color: #E3E7ED;
    /* Light gray background */
}

/* Azerbaycanca için özel font (ə harfi desteği) */
html[data-lang="az"] body,
html[data-lang="az"] *:not(i):not(.fa):not(.fab):not(.fas) {
    font-family: "Noto Sans", "Inter", "Ubuntu", sans-serif !important;
}

/* Azerbaycanca için özel font - daha spesifik */
[data-lang="az"] body,
body[data-lang="az"],
html[lang="az"] body,
html[lang="az"] *:not(i):not(.fa):not(.fab):not(.fas) {
    font-family: "Noto Sans", "Inter", "Ubuntu", sans-serif !important;
}

/* Header and Hero styles moved to separate component files:
   - assets/css/components/header.css
   - assets/css/components/hero.css
*/

/* =========================================================================================================================== */
/* ==================================================== FULL PAGE STYLES ===================================================== */
/* =========================================================================================================================== */


/* Full page section styling */
.full-page-div {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #E3E7ED;
    padding: 0;
    margin: 0;
    clear: both;
    box-sizing: border-box;
}

#page-3.full-page-div {
    margin-top: 0;
    padding-top: 0;
}

/* Ensure sections don't overlap */
section {
    position: relative;
    z-index: 1;
}

/* Contact button styling */
#contact-us-button {
    position: fixed;
    /* Fixed position */
    top: 45%;
    /* Adjusted from top */
    right: 0;
    transform: translateY(-50%);
    /* Center vertically */
    background-color: #00aeef;
    /* Blue background */
    color: #020035;
    /* Dark text */
    padding: 54px 9px;
    /* Padding */
    border: none;
    border-radius: 10px 0 0 10px;
    cursor: pointer;
    display: none;
    /* Initially hidden */
    writing-mode: vertical-rl;
    /* Vertical text */
    text-orientation: mixed;
    font-size: 18px;
    font-weight: bold;
    font-family: "Ubuntu";
    z-index: 9999;
    /* Ensure it's above other elements */
    transition: all 0.3s ease;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.2);
}

#contact-us-button:hover {
    background-color: #1c16d2;
    color: #ffffff;
    /* Light text on hover */
    transform: translateY(-50%) translateX(-5px);
    box-shadow: -6px 0 20px rgba(0, 174, 239, 0.4);
}

/* Modal styling */

/* =========================================================================================================================== */
/* ====================================================== MODAL STYLES ======================================================= */
/* =========================================================================================================================== */

/* Styling for modals and popup windows */
.modal {
    display: none;
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-image: url('../images/background.svg');
    /* Background image for modal */
    background-size: cover;
    background-position: center;
    justify-content: center;
    align-items: center;
}

/* Modal content styling */
.modal-content {
    background-color: rgba(255, 255, 255, 0.6);
    /* Semi-transparent background */
    padding: 20px;
    border-radius: 10px;
    width: 36%;
    margin-left: 54%;
    /* Modal window position */
    box-shadow: #020035;
    /* Box shadow */
    animation: fadeIn 0.5s;
    /* Fade-in animation */
}

/* Form heading styling */
form h2 {
    text-align: center;
    color: #020035;
}

/* Input and textarea styling within forms */
form input,
form textarea {
    width: calc(100% - 26px);
    padding: 13px;
    font-size: 20px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 9px;
    display: block;
}

/* Textarea resizing and limits */
form textarea {
    resize: vertical;
    /* Vertical resizing */
    min-height: 90px;
    /* Minimum height */
    max-height: 270px;
    /* Maximum height */
}

/* Submit button styling */
form input[type="submit"] {
    width: 100%;
    padding: 10px;
    font-size: 20px;
    background-color: #020035;
    color: white;
    border: none;
    border-radius: 18px;
    cursor: pointer;
    font-weight: 630;
}

/* Hover effect for submit button */
form input[type="submit"]:hover {
    background-color: #1c16d2;
}

/* Focus styling for inputs and textareas */
form input:focus,
form textarea:focus {
    border-color: #00aeef;
    /* Border color on focus */
    outline: none;
    /* No outline */
    box-shadow: 0 0 9px #00aeef;
    /* Box shadow on focus */
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 20px;
}

.contact-item {
    flex: 1 1 45%;
    max-width: 45%;
    margin: 10px 0;
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #333;
}

.contact-item i {
    margin-right: 10px;
    color: #007BFF;
}

#map {
    width: 100%;
    height: 400px;
    margin-top: 20px;
    border: 1px solid #ccc;
    border-radius: 9px;
}

/* Keyframe animation for fading in */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* =========================================================================================================================== */
/* PARTNERS & CLIENTS SECTIONS - HIDDEN (Uncomment CSS imports and remove these rules when ready to enable) */
/* =========================================================================================================================== */
/* Partners & Clients section is now enabled - rules commented out
#partners-clients,
#a-partners-clients-detailed,
section[id="partners-clients"],
section[id="a-partners-clients-detailed"],
.pc-container,
.pc-section,
.a-pc-detailed-container,
.a-pc-detailed-section {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
}
*/

/* Header buttons and modal styles moved to:
   - assets/css/components/header.css
*/