/* ===== RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --deep-blue: #050B14;
    --velvet-blue: #0A1E3D;
    --card-bg: rgba(10, 30, 61, 0.6);
    --gold: #C9A04E;
    --gold-light: #E2C27A;
    --gold-glow: rgba(201, 160, 78, 0.25);
    --text-light: #ECF2F9;
    --text-muted: #8AA1C9;
    --white: #FFFFFF;
    --radius: 20px;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--deep-blue);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.7;
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: var(--deep-blue);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 20px;
}

.gold {
    color: var(--gold);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 16px 0;
    background: rgba(5, 11, 20, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(201, 160, 78, 0.06);
    transition: 0.4s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}
.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gold);
    color: var(--deep-blue) !important;
    padding: 8px 22px;
    border-radius: 50px;
    font-weight: 700 !important;
    transition: 0.3s ease !important;
}
.nav-cta::after {
    display: none !important;
}
.nav-cta:hover {
    background: transparent !important;
    color: var(--gold) !important;
    border: 1px solid var(--gold);
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
}

/* ==========================================
   HERO
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-orb {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 40%, rgba(201, 160, 78, 0.08), transparent 70%);
    top: -20%;
    right: -10%;
    animation: orbFloat 12s ease-in-out infinite alternate;
}

@keyframes orbFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(-60px, 40px) scale(1.1);
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hero-tag {
    font-size: 0.75rem;
    letter-spacing: 4px;
    font-weight: 600;
    color: var(--gold);
    border: 1px solid rgba(201, 160, 78, 0.25);
    padding: 6px 20px;
    border-radius: 50px;
    display: inline-block;
    width: fit-content;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 700;
}

.hero-role {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    height: 60px;
}

.typewriter-text {
    color: var(--gold);
    font-weight: 600;
}

.cursor-blink {
    color: var(--gold);
    animation: blink 0.9s step-end infinite;
    font-weight: 300;
}

@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 480px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 8px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--deep-blue);
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s ease;
    border: 1px solid var(--gold);
    box-shadow: 0 8px 30px var(--gold-glow);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--gold-glow);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--text-light);
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: 0.3s ease;
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-5px);
}

.hero-meta {
    display: flex;
    gap: 30px;
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== Hero Visual ===== */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.photo-wrapper {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    position: relative;
    padding: 8px;
    background: linear-gradient(135deg, var(--gold), #7a5c2e);
    box-shadow: 0 0 60px var(--gold-glow);
    animation: photoPulse 4s ease-in-out infinite;
}

@keyframes photoPulse {
    0%,
    100% {
        box-shadow: 0 0 40px var(--gold-glow);
    }
    50% {
        box-shadow: 0 0 80px rgba(201, 160, 78, 0.4);
    }
}

.photo-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--deep-blue);
    display: block;
}

.photo-ring {
    position: absolute;
    inset: -15px;
    border-radius: 50%;
    border: 1px solid rgba(201, 160, 78, 0.2);
    animation: spinRing 20s linear infinite;
}

@keyframes spinRing {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.floating-card {
    position: absolute;
    background: rgba(10, 30, 61, 0.85);
    backdrop-filter: blur(12px);
    padding: 12px 22px;
    border-radius: 60px;
    border: 1px solid rgba(201, 160, 78, 0.3);
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow);
    animation: floatY 3s ease-in-out infinite alternate;
}

.fc-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}
.fc-2 {
    bottom: 15%;
    left: -10%;
    animation-delay: 1.5s;
}

@keyframes floatY {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 3px;
    animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ==========================================
   PORTFOLIO
   ========================================== */
.portfolio {
    padding: 100px 0 80px;
    background: linear-gradient(180deg, var(--deep-blue), var(--velvet-blue));
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    font-size: 0.7rem;
    letter-spacing: 5px;
    color: var(--gold);
    border: 1px solid rgba(201, 160, 78, 0.2);
    padding: 4px 18px;
    border-radius: 50px;
    text-transform: uppercase;
    display: inline-block;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin: 10px 0 6px;
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.project-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    color: inherit;
    display: block;
}

.project-card:hover {
    transform: translateY(-18px) scale(1.02);
    border-color: var(--gold);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), 0 0 40px var(--gold-glow);
}

.project-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 4rem;
}

.project-image i {
    font-size: 4.5rem;
    color: rgba(255, 255, 255, 0.2);
    transition: 0.4s ease;
}

.project-card:hover .project-image i {
    color: var(--gold);
    transform: scale(1.1);
}

.project-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--gold);
    color: var(--deep-blue);
    font-size: 0.6rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.project-info {
    padding: 24px 26px 30px;
}

.project-tag {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 600;
}

.project-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin: 4px 0 10px;
}

.project-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.project-tech span {
    background: rgba(201, 160, 78, 0.08);
    border: 1px solid rgba(201, 160, 78, 0.12);
    padding: 2px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
}

.project-link {
    color: var(--gold);
    font-weight: 500;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ==========================================
   PACKAGES
   ========================================== */
.packages {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, var(--velvet-blue), var(--deep-blue));
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.p-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 35px 28px;
    transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.p-card:hover {
    transform: translateY(-18px);
    border-color: var(--gold);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.p-card.premium {
    background: linear-gradient(145deg, #0F2A4A, #081830);
    border-color: rgba(201, 160, 78, 0.3);
    transform: scale(1.02);
}
.p-card.premium:hover {
    transform: translateY(-18px) scale(1.02);
}

.p-card.vip {
    border-color: var(--gold);
    background: linear-gradient(145deg, #132C4D, #091B33);
    box-shadow: 0 0 50px rgba(201, 160, 78, 0.06);
}

.p-card-top {
    margin-bottom: 20px;
}

.p-badge {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    border: 1px solid rgba(201, 160, 78, 0.25);
    padding: 2px 14px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 12px;
}

.p-badge.popular {
    background: var(--gold);
    color: var(--deep-blue);
    font-weight: 700;
    border: none;
}

.p-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
}

.p-sub {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.p-price {
    font-size: 2.8rem;
    font-weight: 800;
    margin-top: 10px;
}
.p-price span {
    font-size: 3.2rem;
    color: var(--white);
}
.p-price-note {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.p-features {
    list-style: none;
    margin: 15px 0 20px;
    flex: 1;
}
.p-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}
.p-features li i {
    min-width: 18px;
}

.p-hosting-note {
    background: rgba(0, 0, 0, 0.3);
    padding: 14px;
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-left: 3px solid var(--gold);
    margin-bottom: 20px;
}
.p-hosting-note i {
    color: var(--gold);
    margin-right: 8px;
}

.p-btn {
    display: block;
    text-align: center;
    padding: 14px 0;
    border-radius: 50px;
    background: transparent;
    color: var(--gold);
    font-weight: 700;
    border: 1px solid var(--gold);
    text-decoration: none;
    transition: 0.3s ease;
    letter-spacing: 1px;
}
.p-btn:hover {
    background: var(--gold);
    color: var(--deep-blue);
    box-shadow: 0 8px 30px var(--gold-glow);
}

/* Comparison */
.comparison-box {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: var(--radius);
    padding: 40px 50px;
    border: 1px solid rgba(201, 160, 78, 0.08);
    align-items: center;
}
.comp-item {
    text-align: center;
}
.comp-item i {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.comp-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
}
.comp-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 280px;
    margin: 4px auto 0;
}
.comp-divider {
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

/* ==========================================
   GET STARTED (Form)
   ========================================== */
.getstarted {
    padding: 100px 0 80px;
    background: var(--deep-blue);
}

.form-container {
    max-width: 860px;
    margin: 0 auto;
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 50px 55px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.project-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.form-group .required {
    color: #e74c3c;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px 16px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: var(--text-light);
    transition: 0.3s ease;
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group select option {
    background: var(--deep-blue);
    color: var(--text-light);
}

.form-group input[type="file"] {
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.form-group input[type="file"]::file-selector-button {
    background: var(--gold);
    color: var(--deep-blue);
    border: none;
    padding: 6px 18px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.form-group input[type="file"]::file-selector-button:hover {
    background: var(--gold-light);
}

.form-group small {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.submit-group {
    margin-top: 10px;
    text-align: center;
}

.btn-submit {
    font-size: 1.1rem;
    padding: 16px 50px;
    cursor: pointer;
    border: none;
    background: var(--gold);
    color: var(--deep-blue);
    font-weight: 700;
    border-radius: 50px;
    transition: 0.3s ease;
    box-shadow: 0 8px 30px var(--gold-glow);
}

.btn-submit:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-4px);
}

.form-note {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.form-note i {
    margin-right: 6px;
}

/* Success Message */
.form-success {
    text-align: center;
    padding: 40px 20px;
    display: none;
}

.form-success i {
    font-size: 4rem;
    color: #2ecc71;
    margin-bottom: 16px;
}

.form-success h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--white);
}

.form-success p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 10px auto 16px;
}

.form-success .success-extra a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}
.form-success .success-extra a:hover {
    text-decoration: underline;
}

.btn-success-home {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--deep-blue);
    padding: 70px 0 20px;
    border-top: 1px solid rgba(201, 160, 78, 0.06);
}
.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
}
.footer-brand p {
    color: var(--text-muted);
    margin: 4px 0 16px;
}
.socials {
    display: flex;
    gap: 14px;
}
.socials a {
    color: var(--text-muted);
    font-size: 1.2rem;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s ease;
}
.socials a:hover {
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-4px);
}
.footer-contact h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
}
.footer-contact a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    text-decoration: none;
    padding: 6px 0;
    transition: 0.3s ease;
}
.footer-contact a:hover {
    color: var(--gold);
}
.footer-cta {
    margin-top: 12px;
    color: var(--text-muted);
}
.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text {
        align-items: center;
    }
    .hero-desc {
        margin: 0 auto;
    }
    .hero-meta {
        justify-content: center;
    }
    .hero-role {
        justify-content: center;
    }
    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }
    .packages-grid {
        grid-template-columns: 1fr 1fr;
    }
    .p-card.premium {
        transform: scale(1);
    }
    .p-card.premium:hover {
        transform: translateY(-18px);
    }
    .form-container {
        padding: 30px 25px;
    }
    .project-form .form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: rgba(5, 11, 20, 0.98);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 20px;
        gap: 16px;
        text-align: center;
        backdrop-filter: blur(12px);
    }
    .nav-links.active {
        display: flex;
    }
    .nav-toggle {
        display: block;
    }

    .hero-title {
        font-size: 3.2rem;
    }
    .hero-role {
        font-size: 1.3rem;
        height: 50px;
    }
    .photo-wrapper {
        width: 220px;
        height: 220px;
    }
    .floating-card {
        font-size: 0.7rem;
        padding: 8px 16px;
    }
    .fc-1 {
        right: 0%;
    }
    .fc-2 {
        left: 0%;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
    .comparison-box {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 24px;
    }
    .comp-divider {
        width: 60%;
        height: 2px;
        margin: 0 auto;
        background: linear-gradient(to right, transparent, var(--gold), transparent);
    }
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .socials {
        justify-content: center;
    }
    .footer-contact a {
        justify-content: center;
    }
    .section-header h2 {
        font-size: 2.2rem;
    }
    .form-container {
        padding: 24px 18px;
    }
}
/* ==========================================
   NAV RIGHT (language switch + mobile toggle)
   ========================================== */
.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(201, 160, 78, 0.3);
    color: var(--gold);
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s ease;
    letter-spacing: 0.5px;
}

.lang-switch:hover {
    background: var(--gold);
    color: var(--deep-blue);
}

/* ==========================================
   HERO TRUST LINE
   ========================================== */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.3px;
}

/* ==========================================
   FOOTER GLOBAL LINE
   ========================================== */
.footer-global {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: -10px 0 16px;
}

.footer-contact a i.fa-whatsapp {
    color: #25D366;
}

/* ==========================================
   FORM STATUS TEXT
   ========================================== */
.form-status {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--gold);
    min-height: 1.2em;
}

/* ==========================================
   LANGUAGE GATE (first-visit screen)
   ========================================== */
body.lang-locked {
    overflow: hidden;
}

.lang-gate {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--deep-blue);
    overflow: hidden;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.lang-gate.lang-gate-hide {
    opacity: 0;
    pointer-events: none;
}

.lang-gate-orb {
    position: absolute;
    width: 900px;
    height: 900px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 160, 78, 0.12), transparent 65%);
    top: -25%;
    left: 50%;
    transform: translateX(-50%);
    animation: orbFloat 10s ease-in-out infinite alternate;
}

.lang-gate-card {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 560px;
    width: 90%;
    padding: 56px 44px;
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(201, 160, 78, 0.2);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.lang-gate-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.lang-gate-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: var(--gold);
    border: 1px solid rgba(201, 160, 78, 0.25);
    padding: 5px 18px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
}

.lang-gate-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    line-height: 1.4;
    margin-bottom: 32px;
    font-weight: 700;
}

.lang-gate-title-ar {
    font-family: 'Tajawal', sans-serif;
    color: var(--gold);
}

.lang-gate-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 24px;
}

.lang-gate-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 24px 16px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    cursor: pointer;
    transition: 0.3s ease;
    color: var(--text-light);
    font-family: inherit;
}

.lang-gate-btn:hover {
    border-color: var(--gold);
    background: rgba(201, 160, 78, 0.08);
    transform: translateY(-4px);
}

.lang-gate-btn-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
}

.lang-gate-btn-sub {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.lang-gate-btn i {
    margin-top: 8px;
    color: var(--gold);
    font-size: 0.85rem;
}

.lang-gate-footnote {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.3px;
}

@media (max-width: 560px) {
    .lang-gate-card {
        padding: 40px 24px;
    }
    .lang-gate-options {
        grid-template-columns: 1fr;
    }
    .lang-gate-title {
        font-size: 1.5rem;
    }
}

/* ==========================================
   RTL SUPPORT (Arabic)
   ========================================== */
body.rtl {
    font-family: 'Tajawal', 'Outfit', sans-serif;
    direction: rtl;
}

body.rtl .hero-title,
body.rtl .hero-role,
body.rtl .section-header h2,
body.rtl .p-card h3,
body.rtl .lang-gate-title,
body.rtl .form-group h3,
body.rtl .form-success h3,
body.rtl .footer-brand h2,
body.rtl .footer-contact h4,
body.rtl .project-info h3 {
    font-family: 'Tajawal', sans-serif;
}

body.rtl .nav-links a::after {
    left: auto;
    right: 0;
}

body.rtl .p-hosting-note {
    border-right: 3px solid var(--gold);
    border-left: none;
}

body.rtl .p-hosting-note i {
    margin-right: 0;
    margin-left: 8px;
}

body.rtl .form-note i {
    margin-right: 0;
    margin-left: 6px;
}

body.rtl .cursor-blink {
    margin-right: 4px;
}

@media (max-width: 768px) {
    .nav-right {
        gap: 10px;
    }
    .lang-switch span {
        display: none;
    }
    .lang-switch {
        padding: 8px 12px;
    }
}