/* ============================================
   MAGA BRAND HOUSE FZC LLC - Coming Soon
   Advanced CSS Animations & Styling
   ============================================ */

/* CSS Variables */
:root {
    --primary-navy: #1a2744;
    --primary-navy-light: #243656;
    --accent-amber: #e8913a;
    --accent-amber-light: #f5a94d;
    --accent-gold: #d4af37;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --text-muted: rgba(255, 255, 255, 0.7);
    --shadow-glow: 0 0 60px rgba(232, 145, 58, 0.4);
    --shadow-deep: 0 25px 50px rgba(0, 0, 0, 0.5);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #0d1525 100%);
    color: var(--white);
    overflow-x: hidden;
    position: relative;
}

/* ============================================
   BACKGROUND & EFFECTS
   ============================================ */

/* Particle Canvas */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Background Overlay with Ajman Image */
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(26, 39, 68, 0.92) 0%, rgba(13, 21, 37, 0.95) 50%, rgba(26, 39, 68, 0.9) 100%),
        url('ajman-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
    animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.95; }
}

/* Floating Orbs */
.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 2;
    pointer-events: none;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 145, 58, 0.3) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: floatOrb1 15s ease-in-out infinite;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, transparent 70%);
    bottom: 20%;
    left: -100px;
    animation: floatOrb2 12s ease-in-out infinite;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(232, 145, 58, 0.2) 0%, transparent 70%);
    top: 50%;
    right: 10%;
    animation: floatOrb3 18s ease-in-out infinite;
}

@keyframes floatOrb1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-30px, 30px) scale(1.1); }
    50% { transform: translate(20px, -20px) scale(0.95); }
    75% { transform: translate(-20px, -30px) scale(1.05); }
}

@keyframes floatOrb2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -30px) scale(1.15); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

@keyframes floatOrb3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, 50px) scale(1.2); }
}

/* ============================================
   MAIN CONTAINER
   ============================================ */

.main-container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    position: relative;
}

/* ============================================
   LOGO SECTION - NO BACKGROUND BOX
   ============================================ */

.logo-section {
    position: relative;
    margin-bottom: 40px;
    animation: logoEntrance 1.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    opacity: 0;
}

@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: translateY(-50px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(232, 145, 58, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.15); }
}

/* Logo Container - NO BACKGROUND BOX */
.logo-container {
    position: relative;
    padding: 20px;
    overflow: visible;
}

.company-logo {
    max-width: 450px;
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.4));
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.company-logo:hover {
    transform: scale(1.03);
}

.logo-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: logoShine 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes logoShine {
    0%, 80% { left: -100%; }
    100% { left: 200%; }
}

/* ============================================
   COMING SOON TITLE
   ============================================ */

.coming-soon-section {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.coming-soon-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 7vw, 4.5rem);
    font-weight: 800;
    letter-spacing: 0.12em;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.03em;
}

.letter {
    display: inline-block;
    background: linear-gradient(135deg, var(--white) 0%, var(--accent-amber-light) 50%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: letterBounce 2s ease-in-out infinite;
    opacity: 0;
    animation-fill-mode: forwards;
}

.letter:nth-child(1) { animation-delay: 0.1s; }
.letter:nth-child(2) { animation-delay: 0.15s; }
.letter:nth-child(3) { animation-delay: 0.2s; }
.letter:nth-child(4) { animation-delay: 0.25s; }
.letter:nth-child(5) { animation-delay: 0.3s; }
.letter:nth-child(6) { animation-delay: 0.35s; }
.letter:nth-child(7) { animation-delay: 0.4s; }
.letter:nth-child(8) { animation-delay: 0.45s; }
.letter:nth-child(9) { animation-delay: 0.5s; }
.letter:nth-child(10) { animation-delay: 0.55s; }
.letter:nth-child(11) { animation-delay: 0.6s; }

@keyframes letterBounce {
    0% {
        opacity: 0;
        transform: translateY(50px) rotateX(-90deg);
    }
    50% {
        opacity: 1;
        transform: translateY(-10px) rotateX(10deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.space {
    width: 0.25em;
}

.title-underline {
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-amber), var(--accent-gold), transparent);
    margin: 15px auto 0;
    border-radius: 2px;
    animation: underlineExpand 1s ease-out 1s forwards;
}

@keyframes underlineExpand {
    0% { width: 0; opacity: 0; }
    100% { width: 70%; opacity: 1; }
}

/* ============================================
   TAGLINE SECTION
   ============================================ */

.tagline-section {
    text-align: center;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.8s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.tagline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.sub-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.8rem, 1.8vw, 1rem);
    font-weight: 300;
    color: var(--accent-amber-light);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* ============================================
   DIVIDER
   ============================================ */

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    animation: fadeIn 1s ease-out 1s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.divider-line {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.divider-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-amber);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px var(--accent-amber);
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.7; }
}

/* ============================================
   SCROLL INDICATOR
   ============================================ */

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 1s ease-out 1.5s forwards, bounce 2s ease-in-out infinite 2s;
    opacity: 0;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--accent-amber);
    border-radius: 2px;
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

.scroll-text {
    margin-top: 10px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    padding: 100px 20px;
    display: flex;
    justify-content: center;
}

.section-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.about-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-card:nth-child(1) { transition-delay: 0.1s; }
.about-card:nth-child(2) { transition-delay: 0.2s; }
.about-card:nth-child(3) { transition-delay: 0.3s; }

.about-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(232, 145, 58, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
}

.card-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section {
    padding: 100px 20px;
    background: rgba(0, 0, 0, 0.2);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--white) 0%, var(--accent-amber-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-amber), var(--accent-gold));
    margin: 0 auto;
    border-radius: 2px;
}

.features-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature-item {
    padding: 30px;
    border-left: 3px solid var(--accent-amber);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0 15px 15px 0;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-30px);
}

.feature-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    padding-left: 40px;
}

.feature-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(232, 145, 58, 0.3);
    margin-bottom: 10px;
    line-height: 1;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white);
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   LOCATION SECTION
   ============================================ */

.location-section {
    padding: 100px 20px;
    display: flex;
    justify-content: center;
}

.location-content {
    max-width: 1000px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-text {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.location-text.visible {
    opacity: 1;
    transform: translateX(0);
}

.location-title {
    font-size: clamp(1.8rem, 3.5vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white) 0%, var(--accent-amber-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.location-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 25px;
}

.location-address {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--accent-amber-light);
}

.location-icon {
    font-size: 1.3rem;
}

.location-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease 0.2s;
}

.location-visual.visible {
    opacity: 1;
    transform: scale(1);
}

.uae-outline {
    width: 200px;
    height: 200px;
    border: 3px solid rgba(232, 145, 58, 0.4);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.location-pin {
    width: 30px;
    height: 30px;
    background: var(--accent-amber);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: relative;
    box-shadow: 0 0 30px var(--accent-amber);
}

.pin-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px solid var(--accent-amber);
    border-radius: 50%;
    animation: pinPulse 2s ease-out infinite;
}

@keyframes pinPulse {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */

.newsletter-section {
    padding: 100px 20px;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: center;
}

.newsletter-content {
    max-width: 600px;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.newsletter-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.newsletter-title {
    font-size: clamp(1.8rem, 3.5vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--white) 0%, var(--accent-amber-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-text {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
}

.email-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 16px 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.email-input:focus {
    border-color: var(--accent-amber);
    box-shadow: 0 0 30px rgba(232, 145, 58, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.notify-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--accent-amber) 0%, var(--accent-gold) 100%);
    color: var(--primary-navy);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(232, 145, 58, 0.4);
}

.notify-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.notify-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(232, 145, 58, 0.5);
}

.notify-btn:hover::before {
    left: 100%;
}

.notify-btn:active {
    transform: translateY(-1px);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.notify-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* ============================================
   FOOTER - AT END OF PAGE (NOT FIXED)
   ============================================ */

.footer {
    background: rgba(13, 21, 37, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 100;
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 50px 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    text-align: center;
}

.footer-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-amber);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 15px;
}

.footer-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-text .icon {
    font-size: 1.1rem;
}

.footer-text a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.footer-text a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-amber);
    transition: width 0.3s ease;
}

.footer-text a:hover {
    color: var(--accent-amber-light);
}

.footer-text a:hover::after {
    width: 100%;
}

.footer-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    text-align: center;
}

.copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.1em;
}

/* ============================================
   LOADING SCREEN
   ============================================ */

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-navy);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(232, 145, 58, 0.2);
    border-top-color: var(--accent-amber);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.loading-text {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIXES
   ============================================ */

@media (max-width: 992px) {
    .section-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-card:last-child {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .location-address {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 15px;
        min-height: auto;
        padding-bottom: 80px;
    }
    
    .logo-section {
        margin-bottom: 25px;
    }
    
    .company-logo {
        max-width: 280px;
    }
    
    .coming-soon-title {
        letter-spacing: 0.08em;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .sub-tagline {
        font-size: 0.75rem;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .about-section {
        padding: 60px 15px;
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-card:last-child {
        grid-column: span 1;
        max-width: none;
    }
    
    .about-card {
        padding: 30px 20px;
    }
    
    .card-icon {
        font-size: 2.5rem;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .card-text {
        font-size: 0.9rem;
    }
    
    .features-section {
        padding: 60px 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-item {
        padding: 25px 20px;
    }
    
    .feature-number {
        font-size: 2rem;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    .location-section {
        padding: 60px 15px;
    }
    
    .uae-outline {
        width: 150px;
        height: 150px;
    }
    
    .newsletter-section {
        padding: 60px 15px;
    }
    
    .email-form {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .email-input {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
    }
    
    .notify-btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        padding: 40px 15px;
    }
    
    .footer-divider {
        width: 80px;
        height: 1px;
    }
    
    .footer-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 30px 12px;
    }
    
    .company-logo {
        max-width: 220px;
    }
    
    .coming-soon-title {
        font-size: 1.6rem;
        letter-spacing: 0.05em;
    }
    
    .tagline {
        font-size: 0.9rem;
    }
    
    .sub-tagline {
        font-size: 0.7rem;
        letter-spacing: 0.12em;
    }
    
    .about-card {
        padding: 25px 18px;
    }
    
    .card-icon {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .feature-item {
        padding: 20px 15px;
    }
    
    .location-title,
    .newsletter-title {
        font-size: 1.5rem;
    }
}

/* ============================================
   SCROLLBAR STYLING
   ============================================ */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-navy);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-amber), var(--accent-gold));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-amber-light);
}

/* ============================================
   SELECTION STYLING
   ============================================ */

::selection {
    background: var(--accent-amber);
    color: var(--primary-navy);
}
