/* ============================================
   Royal Tag Furniture — Royal / Classical Style
   Navy #0c2c4c | Gold #d49c3c | Burgundy #5c1a1a
   ============================================ */

:root {
    --navy: #0c2c4c;
    --navy-deep: #061a2e;
    --navy-darker: #040f1a;
    --gold: #d49c3c;
    --gold-light: #e8be6e;
    --gold-dark: #b8832e;
    --gold-gradient: linear-gradient(135deg, #b8832e, #d49c3c, #e8be6e, #d49c3c, #b8832e);
    --gold-text-gradient: linear-gradient(135deg, #e8be6e, #d49c3c);
    --burgundy: #5c1a1a;
    --burgundy-deep: #3d1111;
    --cream: #f5efe6;
    --cream-light: #faf7f2;
    --parchment: #ede4d4;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-body: #4a3f35;
    --text-muted: #7a6f63;

    --font-ar: 'Aref Ruqaa', 'Amiri', serif;
    --font-ar-body: 'Amiri', serif;
    --font-en: 'Playfair Display', serif;
    --font-en-body: 'Cormorant Garamond', serif;

    --container: 1200px;
    --section-padding: clamp(5rem, 10vw, 8rem);

    /* Damask pattern as encoded SVG */
    --damask-pattern: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 Q35 15 30 25 Q25 15 30 5z M30 35 Q35 45 30 55 Q25 45 30 35z M5 30 Q15 25 25 30 Q15 35 5 30z M35 30 Q45 25 55 30 Q45 35 35 30z' fill='%23d49c3c' fill-opacity='0.03'/%3E%3C/svg%3E");

    --damask-dark: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 Q35 15 30 25 Q25 15 30 5z M30 35 Q35 45 30 55 Q25 45 30 35z M5 30 Q15 25 25 30 Q15 35 5 30z M35 30 Q45 25 55 30 Q45 35 35 30z' fill='%23d49c3c' fill-opacity='0.04'/%3E%3C/svg%3E");
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-ar-body);
    background: var(--cream-light);
    color: var(--text-body);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.4s ease; }
ul { list-style: none; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   Top Bar
   ============================================ */
.top-bar {
    background: var(--navy-darker);
    color: var(--gold-light);
    font-family: var(--font-en-body);
    font-size: 0.8rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(212, 156, 60, 0.2);
    letter-spacing: 0.05em;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-bar-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(232, 190, 110, 0.7);
}

.top-bar-link:hover { color: var(--gold-light); }

.top-bar-divider {
    width: 1px;
    height: 12px;
    background: rgba(212, 156, 60, 0.25);
}

.top-bar-social {
    display: flex;
    gap: 1rem;
}

.top-bar-social a { color: rgba(212, 156, 60, 0.4); }
.top-bar-social a:hover { color: var(--gold); }

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all 0.5s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(6, 26, 46, 0.96);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(212, 156, 60, 0.15);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo-img {
    height: 65px;
    width: auto;
    transition: height 0.4s ease;
    filter: brightness(0) invert(1);
}

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

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

.nav-menu a {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-ar);
    font-size: 1rem;
    position: relative;
    padding: 0.3rem 0;
}

.nav-menu a::before,
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s ease;
    width: 0;
}

.nav-menu a::before { right: 50%; }
.nav-menu a::after { left: 50%; }

.nav-menu a:hover { color: var(--gold-light); }
.nav-menu a:hover::before,
.nav-menu a:hover::after { width: 50%; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--gold);
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background: url('https://images.unsplash.com/photo-1618220179428-22790b461013?w=1920&q=80') center/cover no-repeat;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background: var(--damask-dark);
    z-index: 1;
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(4, 15, 26, 0.8) 0%,
        rgba(12, 44, 76, 0.6) 40%,
        rgba(92, 26, 26, 0.3) 70%,
        rgba(4, 15, 26, 0.85) 100%
    );
    z-index: 2;
}

.hero-vignette {
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.6);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    padding: 2rem;
    max-width: 800px;
}

.hero-logo {
    width: 300px;
    margin: 0 auto 1rem;
    filter: brightness(0) invert(1);
    animation: fadeInDown 1.2s ease-out;
}

.hero-title {
    font-family: var(--font-ar);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-subtitle {
    font-family: var(--font-en);
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 400;
    font-style: italic;
    color: rgba(232, 190, 110, 0.7);
    margin-bottom: 1rem;
    direction: ltr;
    letter-spacing: 0.1em;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-cta-group {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1s both;
}

/* Hero Ornaments */
.ornament-top, .ornament-bottom {
    animation: fadeIn 1.5s ease-out 0.3s both;
}

.flourish {
    width: 200px;
    height: 30px;
    color: var(--gold);
    opacity: 0.5;
    margin: 0.5rem auto;
    display: block;
}

.hero-ornament-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
    animation: fadeIn 1s ease-out 0.4s both;
}

.hero-ornament-small { margin: 0.5rem 0 1.5rem; }

.ornament-line {
    display: block;
    width: 80px;
    height: 1px;
    background: linear-gradient(to left, var(--gold), transparent);
}

.hero-ornament-divider .ornament-line:first-child {
    background: linear-gradient(to right, var(--gold), transparent);
}

.ornament-diamond {
    width: 20px;
    height: 20px;
    color: var(--gold);
}

.ornament-diamond-small {
    width: 14px;
    height: 14px;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    color: rgba(212, 156, 60, 0.4);
}

.scroll-dot {
    animation: scrollBounce 2s infinite;
}

/* ============================================
   Buttons — Royal Style
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2.5rem;
    font-family: var(--font-ar);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.4s ease;
    letter-spacing: 0.05em;
    position: relative;
}

.btn-royal {
    background: var(--gold-gradient);
    color: var(--navy-deep);
    font-weight: 700;
    border: 2px solid var(--gold);
    background-size: 200% auto;
}

.btn-royal:hover {
    background-position: right center;
    box-shadow: 0 0 30px rgba(212, 156, 60, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-royal-ghost {
    background: transparent;
    color: var(--gold-light);
    border: 1px solid rgba(212, 156, 60, 0.4);
}

.btn-royal-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 156, 60, 0.08);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ============================================
   Section Dividers — Ornamental
   ============================================ */
.section-divider {
    padding: 0.5rem 0;
    background: var(--cream-light);
    text-align: center;
}

.section-divider-dark {
    background: var(--navy);
}

.divider-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.section-divider-dark .divider-line {
    background: linear-gradient(to right, transparent, rgba(212, 156, 60, 0.4), transparent);
}

.divider-symbol {
    width: 30px;
    height: 30px;
    color: var(--gold);
}

.section-divider-dark .divider-symbol {
    color: rgba(212, 156, 60, 0.5);
}

/* ============================================
   Section Shared Styles
   ============================================ */
.section-label {
    display: inline-block;
    font-family: var(--font-ar);
    font-size: 0.9rem;
    color: var(--gold-dark);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.section-label-light { color: var(--gold-light); }

.section-title {
    font-family: var(--font-ar);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.section-title-light { color: var(--cream); }

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3.5rem;
}

.section-desc {
    font-family: var(--font-ar-body);
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.9;
}

.section-desc-light { color: rgba(245, 239, 230, 0.6); }

/* Ornamental divider used inside sections */
.ornamental-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 0.75rem 0 1.25rem;
}

.od-line {
    width: 50px;
    height: 1px;
    background: var(--gold);
    opacity: 0.4;
}

.od-icon {
    width: 12px;
    height: 12px;
    color: var(--gold);
    opacity: 0.6;
}

.ornamental-divider-light .od-line { background: var(--gold-light); opacity: 0.3; }
.ornamental-divider-light .od-icon { color: var(--gold-light); opacity: 0.4; }

/* ============================================
   About Section
   ============================================ */
.about {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--cream-light);
}

.about-bg-pattern {
    position: absolute;
    inset: 0;
    background: var(--damask-pattern);
    pointer-events: none;
}

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

/* Royal Frame around image */
.about-image-wrapper { position: relative; }

.royal-frame {
    position: relative;
    padding: 12px;
    border: 1px solid var(--gold);
}

.royal-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.royal-frame-corner {
    position: absolute;
    width: 30px;
    height: 30px;
}

.royal-frame-corner::before,
.royal-frame-corner::after {
    content: '';
    position: absolute;
    background: var(--gold);
}

.royal-frame-tl { top: -4px; right: -4px; }
.royal-frame-tl::before { top: 0; right: 0; width: 30px; height: 2px; }
.royal-frame-tl::after { top: 0; right: 0; width: 2px; height: 30px; }

.royal-frame-tr { top: -4px; left: -4px; }
.royal-frame-tr::before { top: 0; left: 0; width: 30px; height: 2px; }
.royal-frame-tr::after { top: 0; left: 0; width: 2px; height: 30px; }

.royal-frame-bl { bottom: -4px; right: -4px; }
.royal-frame-bl::before { bottom: 0; right: 0; width: 30px; height: 2px; }
.royal-frame-bl::after { bottom: 0; right: 0; width: 2px; height: 30px; }

.royal-frame-br { bottom: -4px; left: -4px; }
.royal-frame-br::before { bottom: 0; left: 0; width: 30px; height: 2px; }
.royal-frame-br::after { bottom: 0; left: 0; width: 2px; height: 30px; }

.about-text {
    font-family: var(--font-ar-body);
    color: var(--text-body);
    font-size: 1.05rem;
    line-height: 2;
    margin-bottom: 1rem;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 156, 60, 0.2);
}

.stat { text-align: center; flex: 1; }

.stat-number {
    display: block;
    font-family: var(--font-en);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-dark);
    line-height: 1;
    direction: ltr;
}

.stat-label {
    display: block;
    font-family: var(--font-ar);
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.4rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(212, 156, 60, 0.25);
}

/* ============================================
   Collections Section
   ============================================ */
.collections {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--navy);
}

.collections-pattern {
    position: absolute;
    inset: 0;
    background: var(--damask-dark);
    pointer-events: none;
}

.collections-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.collection-card {
    position: relative;
    overflow: hidden;
    height: 350px;
    display: block;
    cursor: pointer;
    border: 1px solid rgba(212, 156, 60, 0.15);
}

.collection-card-large { grid-row: span 2; height: 100%; }
.collection-card-wide { grid-column: span 2; }

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.8s ease;
}

.collection-card:hover img {
    transform: scale(1.06);
    filter: brightness(0.85);
}

.collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4, 15, 26, 0.9) 0%, rgba(4, 15, 26, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

/* Inner gold frame on hover */
.collection-frame {
    position: absolute;
    inset: 10px;
    border: 1px solid transparent;
    transition: border-color 0.5s ease;
    pointer-events: none;
}

.collection-card:hover .collection-frame {
    border-color: rgba(212, 156, 60, 0.4);
}

.collection-tag {
    background: var(--gold-gradient);
    background-size: 200% auto;
    color: var(--navy-deep);
    font-family: var(--font-ar);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.3rem 0.9rem;
    align-self: flex-start;
    margin-bottom: 0.75rem;
}

.collection-overlay h3 {
    color: var(--cream);
    font-family: var(--font-ar);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.collection-cta {
    font-family: var(--font-ar);
    color: var(--gold);
    font-size: 0.85rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(212, 156, 60, 0.3);
    display: inline-block;
    padding-bottom: 0.2rem;
    align-self: flex-start;
}

.collection-card:hover .collection-cta {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Craftsmanship / Features
   ============================================ */
.craftsmanship {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.craft-pattern {
    position: absolute;
    inset: 0;
    background: var(--damask-pattern);
    pointer-events: none;
}

.features-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card {
    position: relative;
    background: var(--cream-light);
    border: 1px solid rgba(212, 156, 60, 0.2);
    transition: all 0.5s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    background-size: 200% auto;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    border-color: rgba(212, 156, 60, 0.4);
    box-shadow: 0 10px 40px rgba(12, 44, 76, 0.08);
    transform: translateY(-6px);
}

.feature-card:hover::before { opacity: 1; }

.feature-card-inner {
    padding: 2.5rem 1.5rem;
    text-align: center;
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    border: 1px solid rgba(212, 156, 60, 0.25);
    transform: rotate(45deg);
}

.feature-icon-wrapper svg {
    transform: rotate(-45deg);
}

.feature-card h3 {
    font-family: var(--font-ar);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.feature-line {
    width: 30px;
    height: 1px;
    background: var(--gold);
    margin: 0.75rem auto;
    opacity: 0.5;
}

.feature-card p {
    font-family: var(--font-ar-body);
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.9;
}

/* ============================================
   Royal Showcase Banner
   ============================================ */
.showcase {
    position: relative;
    padding: clamp(6rem, 12vw, 10rem) 2rem;
    text-align: center;
    color: var(--white);
    background: url('https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?w=1920&q=80') center/cover no-repeat;
    background-attachment: fixed;
}

.showcase-pattern {
    position: absolute;
    inset: 0;
    background: var(--damask-dark);
    z-index: 1;
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(4, 15, 26, 0.88), rgba(92, 26, 26, 0.7));
    z-index: 2;
}

.showcase-content {
    position: relative;
    z-index: 3;
    max-width: 650px;
    margin: 0 auto;
}

.showcase-content h2 {
    font-family: var(--font-ar);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase-content p {
    font-family: var(--font-ar-body);
    color: rgba(245, 239, 230, 0.65);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.9;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--cream-light);
}

.testimonials-pattern {
    position: absolute;
    inset: 0;
    background: var(--damask-pattern);
    pointer-events: none;
}

.testimonials-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(212, 156, 60, 0.15);
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    background-size: 200% auto;
}

.testimonial-card:hover {
    border-color: rgba(212, 156, 60, 0.35);
    box-shadow: 0 15px 40px rgba(12, 44, 76, 0.08);
    transform: translateY(-4px);
}

.testimonial-quote-icon {
    font-family: var(--font-en);
    font-size: 4rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.25;
    margin-bottom: -0.5rem;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    letter-spacing: 0.3em;
}

.testimonial-text {
    font-family: var(--font-ar-body);
    color: var(--text-body);
    font-size: 1rem;
    line-height: 2;
    margin-bottom: 1.25rem;
}

.testimonial-divider {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 1.25rem;
    opacity: 0.4;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-ar);
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid rgba(212, 156, 60, 0.3);
}

.testimonial-author strong {
    display: block;
    font-family: var(--font-ar);
    font-size: 0.95rem;
    color: var(--navy);
}

.testimonial-author span {
    font-family: var(--font-ar-body);
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--navy);
}

.contact-pattern {
    position: absolute;
    inset: 0;
    background: var(--damask-dark);
    pointer-events: none;
}

.contact-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-desc {
    font-family: var(--font-ar-body);
    color: rgba(245, 239, 230, 0.5);
    font-size: 1rem;
    line-height: 2;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(212, 156, 60, 0.04);
    border: 1px solid rgba(212, 156, 60, 0.1);
    color: var(--cream);
    transition: all 0.4s ease;
}

.contact-method:hover {
    background: rgba(212, 156, 60, 0.08);
    border-color: rgba(212, 156, 60, 0.3);
}

.contact-method svg { color: var(--gold); flex-shrink: 0; }

.contact-method strong {
    display: block;
    font-family: var(--font-ar);
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
}

.contact-method span {
    font-family: var(--font-en-body);
    font-size: 0.85rem;
    color: rgba(245, 239, 230, 0.45);
    direction: ltr;
    display: inline-block;
}

/* Contact Form — Royal Style */
.contact-form-wrapper {
    position: relative;
    background: var(--cream-light);
    border: 1px solid rgba(212, 156, 60, 0.25);
}

.form-ornament-top {
    height: 4px;
    background: var(--gold-gradient);
    background-size: 200% auto;
}

.contact-form {
    padding: 2.5rem;
}

.contact-form h3 {
    font-family: var(--font-ar);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
}

.form-group { margin-bottom: 1rem; }

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    font-family: var(--font-ar-body);
    font-size: 0.95rem;
    border: 1px solid rgba(212, 156, 60, 0.2);
    background: var(--white);
    color: var(--text-dark);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 156, 60, 0.08);
}

.form-group textarea { resize: vertical; min-height: 100px; }

/* ============================================
   Footer
   ============================================ */
.footer {
    position: relative;
    background: var(--navy-darker);
    color: rgba(245, 239, 230, 0.5);
    padding-top: 4rem;
}

.footer-pattern {
    position: absolute;
    inset: 0;
    background: var(--damask-dark);
    pointer-events: none;
    opacity: 0.5;
}

.footer-top {
    position: relative;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(212, 156, 60, 0.1);
}

.footer-logo {
    width: 180px;
    filter: brightness(0) invert(1);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-family: var(--font-ar-body);
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(245, 239, 230, 0.35);
}

.footer-links h4 {
    font-family: var(--font-ar);
    color: var(--gold);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    font-family: var(--font-ar-body);
    color: rgba(245, 239, 230, 0.4);
    font-size: 0.9rem;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-links li {
    font-family: var(--font-ar-body);
    font-size: 0.9rem;
    color: rgba(245, 239, 230, 0.4);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.25rem;
}

.footer-social a {
    color: rgba(212, 156, 60, 0.35);
    transition: all 0.3s ease;
}

.footer-social a:hover { color: var(--gold); }

.footer-bottom {
    position: relative;
    text-align: center;
    padding: 1.5rem 0;
    font-family: var(--font-ar-body);
    font-size: 0.8rem;
    color: rgba(245, 239, 230, 0.2);
}

/* ============================================
   WhatsApp Floating Button
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* ============================================
   Scroll Reveal Animations
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed { opacity: 1; transform: translateY(0); }

.feature-card.reveal:nth-child(2) { transition-delay: 0.12s; }
.feature-card.reveal:nth-child(3) { transition-delay: 0.24s; }
.feature-card.reveal:nth-child(4) { transition-delay: 0.36s; }

.collection-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.collection-card.reveal:nth-child(3) { transition-delay: 0.15s; }
.collection-card.reveal:nth-child(4) { transition-delay: 0.2s; }
.collection-card.reveal:nth-child(5) { transition-delay: 0.25s; }

.testimonial-card.reveal:nth-child(2) { transition-delay: 0.15s; }
.testimonial-card.reveal:nth-child(3) { transition-delay: 0.3s; }

/* ============================================
   Keyframe Animations
   ============================================ */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scrollBounce {
    0%, 100% { cy: 8; opacity: 1; }
    50% { cy: 18; opacity: 0.3; }
}

/* ============================================
   Responsive — Tablet
   ============================================ */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .collections-grid { grid-template-columns: repeat(2, 1fr); }
    .collection-card-large { grid-row: span 1; }
    .collection-card-wide { grid-column: span 2; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* ============================================
   Responsive — Mobile
   ============================================ */
@media (max-width: 768px) {
    .top-bar-social { display: none; }

    .nav-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--navy-darker);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 0;
        transition: right 0.4s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        border-left: 1px solid rgba(212, 156, 60, 0.15);
    }

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

    .nav-menu a {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(212, 156, 60, 0.08);
        font-size: 1.05rem;
    }

    .hero-logo { width: 200px; }

    .hero-cta-group { flex-direction: column; align-items: center; }

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

    .royal-frame img { height: 350px; }

    .about-stats { gap: 1rem; }

    .stat-number { font-size: 1.6rem; }

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

    .collection-card-large,
    .collection-card-wide { grid-column: span 1; grid-row: span 1; }

    .collection-card { height: 280px; }

    .collection-cta { opacity: 1; transform: translateY(0); }

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

    .showcase { background-attachment: scroll; }

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

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

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

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

    .footer-logo { margin: 0 auto 0.5rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.8rem; }
    .hero-subtitle { font-size: 0.85rem; }
    .btn { padding: 0.75rem 2rem; font-size: 0.9rem; }
    .contact-form { padding: 1.5rem; }
    .about-stats { flex-direction: column; gap: 1rem; }
    .stat-divider { width: 40px; height: 1px; }
    .flourish { width: 140px; }
    .ornament-line { width: 50px; }
}
