/* ==================== ROOT VARIABLES ==================== */
:root {
    --primary-dark: #001B48;
    --secondary-dark: #02457A;
    --accent-blue: #018ABE;
    --soft-blue: #97CADB;
    --light-bg: #D6EBEE;
    --white: #ffffff;
    --gold: #d4af37;
    --success: #4ade80;
    --error: #f87171;
    --text-light: rgba(255, 255, 255, 0.95);
    --text-muted: rgba(255, 255, 255, 0.65);
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(151, 202, 219, 0.18);
    --glass-hover: rgba(255, 255, 255, 0.08);
}

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', 'Inter', sans-serif;
    background: var(--primary-dark);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
    min-height: 100vh;
}

/* ==================== ANIMATED BACKGROUND ==================== */
.bg-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 50%, var(--primary-dark) 100%);
}

.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    z-index: -2;
    animation: orbFloat 25s ease-in-out infinite;
}

.orb-1 {
    width: 700px;
    height: 700px;
    background: var(--accent-blue);
    top: -250px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 550px;
    height: 550px;
    background: var(--soft-blue);
    bottom: -180px;
    left: -150px;
    animation-delay: -8s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--accent-blue), var(--gold));
    top: 45%;
    left: 40%;
    opacity: 0.06;
    animation-delay: -16s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(35px, -28px) scale(1.08); }
    50% { transform: translate(-22px, 25px) scale(0.94); }
    75% { transform: translate(18px, 32px) scale(1.04); }
}

/* Grid Pattern Overlay */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: 
        linear-gradient(rgba(1, 138, 190, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(1, 138, 190, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Particles */
.particles-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.particle-dot {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--accent-blue);
    border-radius: 50%;
    opacity: 0.35;
    animation: particleRise linear infinite;
}

@keyframes particleRise {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.35; }
    90% { opacity: 0.35; }
    100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 5%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    background: rgba(0, 27, 72, 0.8);
    border-bottom: 1px solid rgba(151, 202, 219, 0.1);
}

.navbar.scrolled {
    background: rgba(0, 27, 72, 0.93);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.35);
    padding: 0.9rem 5%;
}

.nav-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
}

.logo-mark {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-blue), var(--soft-blue));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.15rem;
    box-shadow: 0 6px 28px rgba(1, 138, 190, 0.45);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.logo-mark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.brand-logo:hover .logo-mark::before {
    transform: translateX(100%);
}

.brand-logo:hover .logo-mark {
    transform: rotateY(180deg) scale(1.05);
}

.brand-name {
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-links-list {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-links-list a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.93rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--soft-blue));
    transition: width 0.35s ease;
    border-radius: 2px;
}

.nav-links-list a:hover {
    color: var(--white);
}

.nav-links-list a:hover::after {
    width: 100%;
}

.nav-action-btn {
    background: linear-gradient(135deg, var(--accent-blue), #02a5d9);
    color: var(--white);
    padding: 0.8rem 1.9rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.92rem;
    transition: all 0.4s ease;
    box-shadow: 0 5px 22px rgba(1, 138, 190, 0.42);
    position: relative;
    overflow: hidden;
}

.nav-action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
    transition: left 0.55s ease;
}

.nav-action-btn:hover::before {
    left: 100%;
}

.nav-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(1, 138, 190, 0.58);
}

.mobile-hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    z-index: 1001;
}

.mobile-hamburger span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.35s ease;
}

.mobile-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.mobile-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Panel */
.mobile-nav-panel {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 27, 72, 0.98);
    backdrop-filter: blur(35px);
    z-index: 999;
    padding: 120px 10% 40px;
    flex-direction: column;
    gap: 1.6rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.45s ease;
}

.mobile-nav-panel.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.mobile-nav-panel a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 600;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    display: block;
}

.mobile-nav-panel a:hover {
    color: var(--accent-blue);
    padding-right: 1.2rem;
}

/* ==================== MAIN HERO SECTION ==================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 5% 80px;
    position: relative;
}

.hero-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.hero-badge-inline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(1, 138, 190, 0.12);
    border: 1px solid rgba(1, 138, 190, 0.28);
    padding: 0.65rem 1.5rem;
    border-radius: 60px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent-blue);
    margin-bottom: 2rem;
    animation: badgeGlow 3s infinite ease-in-out;
    position: relative;
    overflow: hidden;
}

.hero-badge-inline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(1, 138, 190, 0.15), transparent);
    animation: shimmerBadge 3s infinite;
}

@keyframes shimmerBadge {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(1, 138, 190, 0.35); }
    50% { box-shadow: 0 0 20px 5px rgba(1, 138, 190, 0); }
}

.badge-icon {
    font-size: 1rem;
    animation: badgeSpin 4s linear infinite;
}

@keyframes badgeSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-main-title {
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 1.6rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--soft-blue) 40%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleFadeIn 1s ease-out;
}

@keyframes titleFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-description-text {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.95;
    max-width: 650px;
    margin: 0 auto 3rem;
    animation: descFadeIn 1s ease-out 0.2s both;
}

@keyframes descFadeIn {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==================== FORM CARD ==================== */
.form-card-wrapper {
    animation: cardFadeIn 1s ease-out 0.4s both;
}

@keyframes cardFadeIn {
    from { opacity: 0; transform: translateY(40px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.form-glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(35px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.form-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-dark), var(--accent-blue), var(--soft-blue), var(--accent-blue));
    opacity: 0.6;
}

.form-glass-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(1, 138, 190, 0.04) 0%, transparent 70%);
    pointer-events: none;
    animation: formGlow 15s ease-in-out infinite;
}

@keyframes formGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(3%, 3%); }
}

.form-header-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(1, 138, 190, 0.2), rgba(1, 138, 190, 0.06));
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.8rem;
    position: relative;
}

.form-header-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--accent-blue), var(--soft-blue));
    border-radius: 24px;
    z-index: -1;
    opacity: 0.2;
    filter: blur(12px);
}

.form-subtitle {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--soft-blue);
    margin-bottom: 2.5rem;
    text-align: center;
}

/* Form Elements */
.seo-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    position: relative;
    z-index: 1;
}

.form-group {
    position: relative;
}

.form-label {
    display: block;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.7rem;
}

.form-label .required-star {
    color: var(--error);
    margin-right: 4px;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-blue);
    font-size: 1.1rem;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 2;
}

/* Custom Select */
.custom-select-wrapper {
    position: relative;
}

.custom-select {
    width: 100%;
    padding: 1.1rem 48px 1.1rem 1.3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid var(--glass-border);
    border-radius: 16px;
    color: var(--white);
    font-family: 'Tajawal', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    appearance: none;
    transition: all 0.35s ease;
    outline: none;
}

.custom-select:focus {
    border-color: var(--accent-blue);
    background: rgba(1, 138, 190, 0.06);
    box-shadow: 0 0 0 4px rgba(1, 138, 190, 0.12);
}

.custom-select option {
    background: var(--primary-dark);
    color: var(--white);
    padding: 12px;
}

.select-arrow {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-blue);
    font-size: 0.85rem;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.custom-select:focus + .select-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.field-helper-text {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 0.6rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.field-helper-text i {
    font-size: 0.75rem;
    color: var(--accent-blue);
}

/* Text Inputs */
.form-input {
    width: 100%;
    padding: 1.1rem 1.3rem 1.1rem 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid var(--glass-border);
    border-radius: 16px;
    color: var(--white);
    font-family: 'Tajawal', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.35s ease;
    outline: none;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-input:focus {
    border-color: var(--accent-blue);
    background: rgba(1, 138, 190, 0.06);
    box-shadow: 0 0 0 4px rgba(1, 138, 190, 0.12);
}

.form-input:focus + .input-icon,
.form-input:focus ~ .input-icon {
    color: var(--soft-blue);
    transform: translateY(-50%) scale(1.1);
}

/* Phone Input with Country Code */
.phone-input-group {
    display: flex;
    gap: 10px;
}

.country-code-select {
    width: 110px;
    padding: 1.1rem 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid var(--glass-border);
    border-radius: 16px;
    color: var(--white);
    font-family: 'Tajawal', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    appearance: none;
    text-align: center;
    transition: all 0.35s ease;
    outline: none;
    flex-shrink: 0;
}

.country-code-select:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 4px rgba(1, 138, 190, 0.12);
}

.country-code-select option {
    background: var(--primary-dark);
}

.phone-main-input {
    flex-grow: 1;
}

/* Validation States */
.form-group.error .form-input,
.form-group.error .custom-select,
.form-group.error .country-code-select {
    border-color: var(--error);
    background: rgba(248, 113, 113, 0.06);
}

.form-group.error .input-icon {
    color: var(--error);
}

.form-group.success .form-input,
.form-group.success .custom-select {
    border-color: var(--success);
    background: rgba(74, 222, 128, 0.04);
}

.error-message {
    font-size: 0.82rem;
    color: var(--error);
    margin-top: 0.55rem;
    display: none;
    align-items: center;
    gap: 6px;
}

.form-group.error .error-message {
    display: flex;
    animation: errorShake 0.4s ease;
}

@keyframes errorShake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-8px); }
    40%, 80% { transform: translateX(8px); }
}

/* Submit Button */
.submit-btn-container {
    margin-top: 0.8rem;
}

.submit-form-btn {
    width: 100%;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-blue), #02a5d9, var(--accent-blue));
    background-size: 200% 200%;
    border: none;
    border-radius: 18px;
    color: var(--white);
    font-family: 'Tajawal', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 10px 40px rgba(1, 138, 190, 0.4);
    animation: btnGradientMove 4s ease infinite;
}

@keyframes btnGradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.submit-form-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.6s ease;
}

.submit-form-btn:hover::before {
    left: 100%;
}

.submit-form-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 18px 55px rgba(1, 138, 190, 0.58);
}

.submit-form-btn:active {
    transform: translateY(-2px) scale(0.99);
}

.submit-form-btn:disabled {
    opacity: 0.75;
    cursor: not-allowed;
    transform: none !important;
}

/* Button Loading State */
.submit-form-btn.loading {
    pointer-events: none;
}

.btn-spinner {
    width: 22px;
    height: 22px;
    border: 3px solid rgba(255, 255, 255, 0.25);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    display: none;
}

.submit-form-btn.loading .btn-spinner {
    display: block;
}

.submit-form-btn.loading .btn-text {
    visibility: hidden;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Honeypot for Spam Protection */
.honeypot-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* ==================== SUCCESS MODAL ==================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.45s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.success-modal {
    background: linear-gradient(180deg, rgba(0, 27, 72, 0.97), rgba(2, 69, 122, 0.97));
    border: 1px solid rgba(74, 222, 128, 0.25);
    border-radius: 32px;
    padding: 4rem 3.5rem;
    max-width: 520px;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    transform: scale(0.88) translateY(30px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(74, 222, 128, 0.1);
}

.modal-overlay.active .success-modal {
    transform: scale(1) translateY(0);
}

.success-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--success), #86efac, var(--success));
}

.success-icon-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.2), rgba(74, 222, 128, 0.06));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    animation: successPulse 2s infinite ease-in-out;
}

@keyframes successPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.3); }
    50% { box-shadow: 0 0 0 20px rgba(74, 222, 128, 0); }
}

.success-checkmark {
    font-size: 3rem;
    color: var(--success);
    animation: checkmarkPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s both;
}

@keyframes checkmarkPop {
    from { transform: scale(0) rotate(-45deg); opacity: 0; }
    to { transform: scale(1) rotate(0deg); opacity: 1; }
}

.modal-title-success {
    font-size: 1.9rem;
    font-weight: 900;
    margin-bottom: 1.2rem;
    color: var(--white);
}

.modal-desc-success {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 2.5rem;
}

.close-modal-btn {
    background: linear-gradient(135deg, var(--success), #86efac);
    color: var(--primary-dark);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 14px;
    font-family: 'Tajawal', sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.35s ease;
    box-shadow: 0 8px 28px rgba(74, 222, 128, 0.35);
}

.close-modal-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 38px rgba(74, 222, 128, 0.5);
}

/* Error Toast */
.toast-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(248, 113, 113, 0.95);
    backdrop-filter: blur(15px);
    color: var(--white);
    padding: 1.1rem 2rem;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 3000;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 35px rgba(248, 113, 113, 0.35);
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
}

.toast-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: rgba(0, 12, 28, 0.85);
    border-top: 1px solid var(--glass-border);
    padding: 50px 5% 35px;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 1.3rem;
}

.footer-brand-row .logo-mark {
    width: 44px;
    height: 44px;
    font-size: 1rem;
}

.footer-slogan {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 1.8rem;
    font-weight: 500;
}

.footer-slogan strong {
    color: var(--accent-blue);
}

.social-links-footer {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 2rem;
}

.social-link {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.35s ease;
}

.social-link:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: var(--white);
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 10px 25px rgba(1, 138, 190, 0.35);
}

.footer-copyright {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.4);
    padding-top: 1.8rem;
    border-top: 1px solid rgba(151, 202, 219, 0.1);
    direction: ltr;
}

.footer-copyright strong {
    color: var(--accent-blue);
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 992px) {
    .nav-links-list,
    .nav-action-btn {
        display: none;
    }

    .mobile-hamburger {
        display: flex;
    }

    .hero-main-title {
        font-size: 2.6rem;
    }

    .hero-description-text {
        font-size: 1.08rem;
    }

    .form-glass-card {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 110px 5% 60px;
        min-height: auto;
    }

    .hero-main-title {
        font-size: 2.1rem;
    }

    .hero-description-text {
        font-size: 1rem;
    }

    .form-glass-card {
        padding: 2.2rem 1.6rem;
        border-radius: 26px;
    }

    .form-header-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }

    .phone-input-group {
        flex-direction: column;
    }

    .country-code-select {
        width: 100%;
    }

    .submit-form-btn {
        padding: 1.1rem 2rem;
        font-size: 1.02rem;
    }

    .success-modal {
        padding: 3rem 2rem;
    }

    .modal-title-success {
        font-size: 1.55rem;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 1.75rem;
    }

    .hero-badge-inline {
        font-size: 0.82rem;
        padding: 0.55rem 1.2rem;
    }

    .form-glass-card {
        padding: 1.8rem 1.3rem;
        border-radius: 22px;
    }

    .custom-select,
    .form-input {
        padding: 1rem 1.1rem 1rem 42px;
        font-size: 0.95rem;
    }

    .input-icon {
        right: 13px;
        font-size: 1rem;
    }
}

#emailAddress , #websiteUrl {
    text-align: left;
}
.fa-envelope , .fa-globe {
    display: flex;
}