/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    overflow-x: hidden;
}

/* ===== CUSTOM PROPERTIES ===== */
:root {
    --primary-gold: #C9A961;
    --dark-gold: #A67C00;
    --light-gold: #E6D16A;
    --deep-brown: #1A0F0A;
    --warm-brown: #2D1810;
    --cream: #FAF7F2;
    --off-white: #FEFDFB;
    --dark-gray: #2c2c2c;
    --light-gray: #f8f6f3;
    --shadow: rgba(0, 0, 0, 0.15);
    --shadow-dark: rgba(0, 0, 0, 0.4);
    --shadow-gold: rgba(201, 169, 97, 0.3);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
    --max-width: 1200px;
}

/* ===== TYPOGRAPHY ===== */
.brand-name-english {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.brand-name-arabic {
    font-family: 'Amiri', serif;
    font-weight: 700;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--deep-brown);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--primary-gold);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: block;
}

.highlight {
    color: var(--primary-gold);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--dark-gold));
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* ===== LOADING SCREEN ===== */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--deep-brown) 0%, var(--warm-brown) 50%, var(--deep-brown) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

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

.loader {
    text-align: center;
    animation: fadeInUp 1s ease;
}

.logo-container {
    margin-bottom: 2rem;
}

.loading-logo {
    width: 180px;
    height: auto;
    animation: pulse 1s infinite;
}

.loading-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.loading-text .arabic {
    font-family: 'Amiri', serif;
    font-size: 2.5rem;
    color: var(--primary-gold);
}

.loading-text .english {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--cream);
    font-weight: 300;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 15, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: var(--transition);
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

.navbar.scrolled {
    background: rgba(26, 15, 10, 0.98);
    padding: 0.4rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 65px;
    width: auto;
    transition: var(--transition);
}

.navbar.scrolled .nav-logo {
    height: 45px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--cream);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--deep-brown) 0%, var(--warm-brown) 50%, var(--deep-brown) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -25%;
    left: -25%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.15) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
    z-index: 1;
}

.hero-background {
    display: none;
}

.hero-image {
    display: none;
}

.hero-overlay {
    display: none;
}

.hero-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 3rem 0;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
    min-height: 100vh;
    position: relative;
    z-index: 2;
}

.hero-left {
    color: white;
}

.hero-title {
    margin-bottom: 2rem;
    line-height: 1.1;
}

.brand-name-english {
    display: block;
    font-size: 4.5rem;
    color: var(--primary-gold);
    text-shadow: 0 4px 20px rgba(201, 169, 97, 0.6), 0 2px 8px rgba(0, 0, 0, 0.8);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.brand-name-arabic {
    display: block;
    font-size: 3.8rem;
    color: var(--cream);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.6);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--light-gold);
    margin-bottom: 1rem;
    font-weight: 300;
    font-style: italic;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--cream);
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.hero-tagline {
    font-size: 1.1rem;
    color: var(--light-gold);
    margin-bottom: 2.5rem;
    font-style: italic;
    opacity: 0.9;
}

/* ===== LAUNCH STATUS ===== */
.launch-status {
    margin-bottom: 2rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(25, 135, 84, 0.2);
    border: 1px solid rgba(25, 135, 84, 0.4);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #28a745;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-text {
    color: #28a745;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
}

/* ===== ORDER SECTION ===== */
.hero-right {
    background: rgba(26, 15, 10, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.order-title {
    color: var(--primary-gold);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.order-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.order-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition);
    background: rgba(26, 15, 10, 0.8);
    border: 1px solid rgba(201, 169, 97, 0.4);
    backdrop-filter: blur(10px);
}

.order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    background: rgba(26, 15, 10, 0.9);
    border-color: rgba(201, 169, 97, 0.6);
}

.btn-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.whatsapp-btn .btn-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.facebook-btn .btn-icon {
    background: linear-gradient(135deg, #1877F2, #0C4A82);
}

.instagram-btn .btn-icon {
    background: linear-gradient(135deg, #E4405F, #833AB4);
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.2;
}

.btn-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.2;
}

/* Remove old button styles */
.whatsapp-button,
.facebook-button,
.instagram-button {
    display: none;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(201, 169, 97, 0.5), 0 0 30px rgba(201, 169, 97, 0.3);
    }

    to {
        text-shadow: 0 0 25px rgba(201, 169, 97, 0.8), 0 0 35px rgba(201, 169, 97, 0.5);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ===== CTA BUTTON ===== */
.cta-container {
    margin-top: 3rem;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.cta-button i {
    transition: var(--transition);
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--cream);
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 2px;
    height: 30px;
    background: var(--primary-gold);
    border-radius: 1px;
}

.scroll-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--light-gray) 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--dark-gray);
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.feature-content h4 {
    font-size: 1.2rem;
    color: var(--deep-brown);
    margin-bottom: 0.25rem;
}

.feature-content p {
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(60, 36, 21, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.about-image:hover .image-overlay {
    opacity: 1;
}

.about-image:hover img {
    transform: scale(1.05);
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    cursor: pointer;
}

.overlay-content p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* ===== VALUES SECTION ===== */
.values {
    padding: 8rem 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--off-white) 100%);
    position: relative;
}

.values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.value-card {
    background: linear-gradient(135deg, #ffffff 0%, var(--cream) 100%);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 15px 40px var(--shadow), 0 5px 15px rgba(201, 169, 97, 0.1);
    transition: var(--transition);
    border: 1px solid rgba(201, 169, 97, 0.1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--dark-gold));
}

.value-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px var(--shadow-dark), 0 10px 25px var(--shadow-gold);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--deep-brown);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.value-card p {
    color: var(--dark-gray);
    line-height: 1.6;
    font-size: 1rem;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter {
    background: linear-gradient(135deg, var(--deep-brown) 0%, var(--warm-brown) 50%, var(--deep-brown) 100%);
    padding: 6rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: -25%;
    left: -25%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.15) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-gold);
}

.newsletter-text p {
    font-size: 1.1rem;
    color: var(--cream);
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    position: relative;
}

.newsletter-form input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.form-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 6rem 0;
    background: var(--off-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--deep-brown);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--dark-gray);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-details a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--dark-gold);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    background: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    align-self: flex-start;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--deep-brown) 0%, #0F0906 100%);
    color: var(--cream);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-logo img {
    height: 80px;
    margin-bottom: 1rem;
}

.footer-logo h3 {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.footer-tagline {
    color: var(--cream);
    font-size: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--cream);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-gold);
    color: white;
    transform: translateY(-2px);
}

.hashtags {
    color: var(--primary-gold);
    font-size: 0.9rem;
    font-style: italic;
}

.whatsapp-social {
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
}

.whatsapp-order {
    margin-top: 1rem;
    font-weight: 600;
}

.whatsapp-order a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-order a:hover {
    color: var(--light-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 0 2rem;
    }

    .hero-right {
        max-width: 400px;
        margin: 0 auto;
    }

    .brand-name-english {
        font-size: 3.5rem;
    }

    .brand-name-arabic {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .order-title {
        font-size: 1.5rem;
    }

    .nav-logo {
        height: 60px;
    }

    .navbar.scrolled .nav-logo {
        height: 50px;
    }

    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .value-card {
        padding: 2.5rem 2rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .countdown {
        gap: 1rem;
    }

    .time-unit {
        padding: 1rem 0.5rem;
        min-width: 80px;
    }

    .time-number {
        font-size: 2rem;
    }

    .about-content {
        gap: 3rem;
    }

    .newsletter-content {
        gap: 2rem;
    }

    .contact-content {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 1.5rem;
        gap: 2rem;
        min-height: calc(100vh - 80px);
        margin-top: 80px;
    }

    .hero-right {
        padding: 2rem;
        max-width: 350px;
    }

    .brand-name-english {
        font-size: 2.8rem;
    }

    .brand-name-arabic {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .order-title {
        font-size: 1.3rem;
    }

    .order-btn {
        padding: 1rem 1.2rem;
    }

    .btn-icon {
        width: 45px;
        height: 45px;
    }

    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: rgba(26, 15, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        gap: 2rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .brand-name-english {
        font-size: 2.5rem;
    }

    .brand-name-arabic {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .status-title {
        font-size: 1.8rem;
    }

    .status-description {
        font-size: 1rem;
    }

    .order-buttons {
        gap: 0.8rem;
        margin-top: 2rem;
    }

    .whatsapp-button,
    .facebook-button,
    .instagram-button {
        min-width: 250px;
        padding: 1rem 2rem;
        font-size: 0.95rem;
        gap: 0.7rem;
    }

    .nav-logo {
        height: 50px;
    }

    .navbar.scrolled .nav-logo {
        height: 45px;
    }

    .navbar {
        padding: 1rem 0;
    }

    .navbar.scrolled {
        padding: 0.7rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .brand-name-english {
        font-size: 2.5rem;
    }

    .brand-name-arabic {
        font-size: 2rem;
    }

    .order-buttons {
        gap: 0.8rem;
    }

    .whatsapp-button,
    .facebook-button,
    .instagram-button {
        min-width: 200px;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .countdown {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .time-unit {
        flex: 1;
        min-width: 70px;
        padding: 0.8rem 0.3rem;
    }

    .time-number {
        font-size: 1.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 1rem;
        gap: 1.5rem;
        margin-top: 70px;
    }

    .hero-right {
        padding: 1.5rem;
        max-width: 300px;
    }

    .brand-name-english {
        font-size: 2.2rem;
        line-height: 1.1;
    }

    .brand-name-arabic {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .hero-tagline {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .order-title {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .order-btn {
        padding: 0.9rem 1rem;
        gap: 0.8rem;
    }

    .btn-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .btn-title {
        font-size: 1rem;
    }

    .btn-subtitle {
        font-size: 0.8rem;
    }

    .status-badge {
        padding: 0.6rem 1.2rem;
        gap: 0.6rem;
    }

    .status-text {
        font-size: 0.9rem;
    }

    .status-description {
        font-size: 0.9rem;
    }

    .nav-logo {
        height: 45px;
    }

    .navbar.scrolled .nav-logo {
        height: 40px;
    }

    .navbar {
        padding: 0.8rem 0;
    }

    .navbar.scrolled {
        padding: 0.6rem 0;
    }

    .nav-menu {
        top: 80px;
        height: calc(100vh - 80px);
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .value-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .newsletter-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .loading-logo {
        width: 150px;
    }

    .footer-logo img {
        height: 60px;
    }
}