/* ============================================
   REGAL TALENT — Qatari / Islamic Geometric
   Islamic geometric art meets luxury fashion
   ============================================ */

/* --- CSS Variables --- */
:root {
    --primary: #1B1B2F;
    --bg: #FEFEFE;
    --surface: #FFFFFF;
    --accent: #C9A84C;
    --accent-hover: #b8952f;
    --accent-light: #C9A84C33;
    --secondary: #1B1B2F;
    --text: #1B1B2F;
    --text-light: #5A5A7A;
    --border: #E0D5C0;
    --card-bg: #FFFFFF;
    --shadow: 0 4px 24px rgba(27, 27, 47, 0.08);
    --shadow-lg: 0 12px 48px rgba(27, 27, 47, 0.14);
    --radius: 4px;
    --radius-sm: 2px;
    --radius-lg: 8px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Amiri', Georgia, serif;
    --font-body: 'Noto Sans', 'Segoe UI', sans-serif;
    --max-width: 1200px;
    --header-height: 80px;
    --gold-gradient: linear-gradient(135deg, #C9A84C 0%, #E8D48B 50%, #C9A84C 100%);
    --pattern-color: #C9A84C33;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.2rem; }

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent-hover);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.section {
    padding: 100px 0;
    position: relative;
}

/* --- Islamic Geometric Divider --- */
.geometric-divider {
    height: 40px;
    background:
        linear-gradient(135deg, transparent 33.33%, var(--accent-light) 33.33%, var(--accent-light) 66.66%, transparent 66.66%),
        linear-gradient(225deg, transparent 33.33%, var(--accent-light) 33.33%, var(--accent-light) 66.66%, transparent 66.66%);
    background-size: 40px 40px;
    opacity: 0.7;
}

/* --- Tessellation Background --- */
.tessellation-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.06;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M40 0 L80 20 L80 60 L40 80 L0 60 L0 20Z' fill='none' stroke='%23C9A84C' stroke-width='1'/%3E%3Cpath d='M40 10 L70 25 L70 55 L40 70 L10 55 L10 25Z' fill='none' stroke='%23C9A84C' stroke-width='0.5'/%3E%3Ccircle cx='40' cy='40' r='8' fill='none' stroke='%23C9A84C' stroke-width='0.5'/%3E%3C/svg%3E");
    background-size: 80px 80px;
}

/* --- Section Header --- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
    position: relative;
    padding: 0 24px;
}

.section-badge::before,
.section-badge::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 16px;
    height: 16px;
    border: 1px solid var(--accent);
    transform: translateY(-50%) rotate(45deg);
}

.section-badge::before { left: 0; }
.section-badge::after { right: 0; }

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all var(--transition);
    height: var(--header-height);
}

.site-header.scrolled {
    background: rgba(254, 254, 254, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border), var(--shadow);
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--accent);
    transition: color var(--transition);
}

.logo-icon {
    display: flex;
    align-items: center;
    color: var(--accent);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary);
}

.site-header:not(.scrolled) .logo-text {
    color: var(--surface);
}

.site-header:not(.scrolled) .logo-icon {
    color: var(--accent);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-link {
    display: block;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    text-decoration: none;
    transition: all var(--transition);
    letter-spacing: 0.5px;
    position: relative;
}

.site-header:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.85);
}

.site-header:not(.scrolled) .nav-link:hover,
.site-header:not(.scrolled) .nav-link.active {
    color: var(--accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: all var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 26px;
    height: 2px;
    background: var(--text);
    transition: all var(--transition);
}

.site-header:not(.scrolled) .hamburger-line {
    background: var(--surface);
}

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

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

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

/* ============================================
   HERO — Islamic geometric overlay
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        url('../../assets/img/model1.webp')
        center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(27, 27, 47, 0.75) 0%,
        rgba(27, 27, 47, 0.6) 50%,
        rgba(27, 27, 47, 0.85) 100%
    );
    z-index: 1;
}

/* Islamic geometric star pattern overlay using CSS */
.hero-geometric-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.12;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cpolygon points='60,5 70,25 92,12 82,35 105,40 82,45 92,68 70,55 60,75 50,55 28,68 38,45 15,40 38,35 28,12 50,25' fill='none' stroke='%23C9A84C' stroke-width='1'/%3E%3Cpolygon points='60,20 66,32 80,26 74,40 88,43 74,46 80,60 66,54 60,66 54,54 40,60 46,46 32,43 46,40 40,26 54,32' fill='none' stroke='%23C9A84C' stroke-width='0.7'/%3E%3Ccircle cx='60' cy='43' r='10' fill='none' stroke='%23C9A84C' stroke-width='0.5'/%3E%3Cline x1='60' y1='0' x2='60' y2='120' stroke='%23C9A84C' stroke-width='0.3'/%3E%3Cline x1='0' y1='43' x2='120' y2='43' stroke='%23C9A84C' stroke-width='0.3'/%3E%3C/svg%3E");
    background-size: 120px 120px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 28px;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.hero-star-icon {
    color: var(--accent);
}

.hero h1 {
    color: var(--surface);
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    max-width: 620px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.section-cta {
    text-align: center;
    margin-top: 48px;
}

/* ============================================
   MODEL CARDS — Octagonal frames
   ============================================ */
.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.model-card {
    text-align: center;
}

.model-image-octagon {
    position: relative;
    width: 240px;
    height: 280px;
    margin: 0 auto 20px;
    clip-path: polygon(30% 0%, 70% 0%, 100% 25%, 100% 75%, 70% 100%, 30% 100%, 0% 75%, 0% 25%);
    overflow: hidden;
}

.model-image-octagon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.model-card:hover .model-image-octagon img {
    transform: scale(1.08);
}

.model-overlay {
    position: absolute;
    inset: 0;
    background: rgba(27, 27, 47, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.model-card:hover .model-overlay {
    opacity: 1;
}

.model-social {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent);
    color: var(--accent);
    font-size: 1.2rem;
    transition: all var(--transition);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    background: rgba(27, 27, 47, 0.6);
}

.model-social:hover {
    background: var(--accent);
    color: var(--primary);
}

.model-info h3 {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.model-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

/* ============================================
   SERVICE CARDS — Geometric star icons, gold borders
   ============================================ */
.services-preview {
    position: relative;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--card-bg);
    padding: 40px 32px;
    text-align: center;
    border: 1px solid var(--border);
    position: relative;
    transition: all var(--transition);
    overflow: hidden;
}

/* Geometric gold corner ornaments */
.service-card::before,
.service-card::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid var(--accent);
    transition: all var(--transition);
}

.service-card::before {
    top: 12px;
    left: 12px;
    border-right: none;
    border-bottom: none;
}

.service-card::after {
    bottom: 12px;
    right: 12px;
    border-left: none;
    border-top: none;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.service-card:hover::before,
.service-card:hover::after {
    width: 32px;
    height: 32px;
}

.service-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--accent);
    position: relative;
    background: var(--accent-light);
    clip-path: polygon(50% 0%, 85% 15%, 100% 50%, 85% 85%, 50% 100%, 15% 85%, 0% 50%, 15% 15%);
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

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

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    background: var(--primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M30 0 L60 15 L60 45 L30 60 L0 45 L0 15Z' fill='none' stroke='%23C9A84C' stroke-width='0.8'/%3E%3C/svg%3E");
    background-size: 60px 60px;
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 24px;
}

.stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 40px 32px;
    border: 1px solid var(--border);
    position: relative;
}

/* Top gold geometric border */
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
}

.testimonial-stars {
    margin-bottom: 20px;
    color: var(--accent);
    font-size: 0.85rem;
    letter-spacing: 4px;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.cta-geometric-bg {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cpolygon points='50,5 61,20 80,12 73,32 95,38 73,44 80,64 61,56 50,71 39,56 20,64 27,44 5,38 27,32 20,12 39,20' fill='none' stroke='%23C9A84C' stroke-width='0.8'/%3E%3C/svg%3E");
    background-size: 100px 100px;
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--surface);
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 36px;
    line-height: 1.8;
}

/* ============================================
   PAGE HERO (Sub-pages)
   ============================================ */
.page-hero {
    padding: 160px 0 80px;
    text-align: center;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.page-hero-geometric {
    position: absolute;
    inset: 0;
    opacity: 0.07;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cpolygon points='50,5 61,20 80,12 73,32 95,38 73,44 80,64 61,56 50,71 39,56 20,64 27,44 5,38 27,32 20,12 39,20' fill='none' stroke='%23C9A84C' stroke-width='0.8'/%3E%3Ccircle cx='50' cy='38' r='12' fill='none' stroke='%23C9A84C' stroke-width='0.4'/%3E%3C/svg%3E");
    background-size: 100px 100px;
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-hero .section-badge {
    color: var(--accent);
}

.page-hero h1 {
    color: var(--surface);
    margin-bottom: 16px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.15rem;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* Islamic Arch Frame */
.islamic-arch-frame {
    position: relative;
    clip-path: polygon(
        0% 20%, 2% 14%, 6% 9%, 12% 5%, 20% 2%, 30% 0.5%, 40% 0%, 50% 0%, 60% 0%, 70% 0.5%, 80% 2%, 88% 5%, 94% 9%, 98% 14%, 100% 20%,
        100% 100%, 0% 100%
    );
    overflow: hidden;
}

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

.about-content h2 {
    margin-bottom: 24px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.02rem;
}

.about-values {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.value-icon-geo {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 1.1rem;
    clip-path: polygon(50% 0%, 85% 15%, 100% 50%, 85% 85%, 50% 100%, 15% 85%, 0% 50%, 15% 15%);
}

.value-item strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 2px;
}

.value-item span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============================================
   TEAM — Octagonal frames
   ============================================ */
.team-section {
    position: relative;
    overflow: hidden;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.team-card {
    text-align: center;
    background: var(--card-bg);
    padding: 32px 24px;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.team-image-octagon {
    width: 160px;
    height: 180px;
    margin: 0 auto 20px;
    clip-path: polygon(30% 0%, 70% 0%, 100% 25%, 100% 75%, 70% 100%, 30% 100%, 0% 75%, 0% 25%);
    overflow: hidden;
}

.team-image-octagon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info h3 {
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.team-role {
    display: block;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.team-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================
   SERVICES DETAIL
   ============================================ */
.services-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-detail-card {
    display: flex;
    gap: 32px;
    padding: 40px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    position: relative;
    transition: all var(--transition);
}

.service-detail-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gold-gradient);
}

.service-detail-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--accent-light);
}

.service-detail-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent);
    background: var(--accent-light);
    clip-path: polygon(50% 0%, 85% 15%, 100% 50%, 85% 85%, 50% 100%, 15% 85%, 0% 50%, 15% 15%);
}

.service-detail-content h3 {
    margin-bottom: 12px;
    font-size: 1.35rem;
}

.service-detail-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text);
}

.service-features li i {
    color: var(--accent);
    font-size: 0.8rem;
}

/* --- Process Section --- */
.process-section {
    position: relative;
    overflow: hidden;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.process-step {
    text-align: center;
    padding: 32px 24px;
    position: relative;
}

.process-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 16px;
}

.process-step h3 {
    margin-bottom: 12px;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   PRICING — Islamic arch tops
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: start;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all var(--transition);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--accent);
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-4px);
}

/* Islamic arch header for pricing */
.pricing-arch-header {
    background: var(--primary);
    padding: 40px 32px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Geometric pattern in arch header */
.pricing-arch-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M30 0 L60 15 L60 45 L30 60 L0 45 L0 15Z' fill='none' stroke='%23C9A84C' stroke-width='0.6'/%3E%3Ccircle cx='30' cy='30' r='6' fill='none' stroke='%23C9A84C' stroke-width='0.4'/%3E%3C/svg%3E");
    background-size: 60px 60px;
    pointer-events: none;
}

/* Pointed arch bottom shape */
.pricing-arch-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 24px;
    background: var(--card-bg);
    clip-path: polygon(0% 100%, 50% 0%, 100% 100%);
}

.pricing-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 4px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.pricing-arch-header h3 {
    color: var(--surface);
    font-size: 1.4rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin-bottom: 8px;
}

.currency {
    font-size: 1rem;
    color: var(--accent);
    font-weight: 600;
}

.amount {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.pricing-period {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-body {
    padding: 32px;
}

.pricing-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 24px;
    text-align: center;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--accent);
    font-size: 0.8rem;
}

.pricing-note {
    text-align: center;
    margin-top: 48px;
    padding: 24px 32px;
    background: var(--accent-light);
    border-left: 4px solid var(--accent);
}

.pricing-note p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.pricing-note a {
    font-weight: 600;
}

/* ============================================
   EVENTS
   ============================================ */
.events-controls {
    margin-bottom: 32px;
}

.events-months {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.month-btn {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid var(--border);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: all var(--transition);
}

.month-btn:hover,
.month-btn.active {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

.events-filters {
    display: flex;
    gap: 16px;
}

.events-select {
    padding: 10px 16px;
    border: 1px solid var(--border);
    background: var(--card-bg);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text);
    cursor: pointer;
}

.events-count {
    margin-bottom: 24px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.events-count span {
    color: var(--accent);
    font-weight: 700;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.event-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition);
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.event-card-image {
    height: 180px;
    overflow: hidden;
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.event-card:hover .event-card-image img {
    transform: scale(1.08);
}

.event-card-body {
    padding: 24px;
}

.event-card-category {
    display: inline-block;
    padding: 3px 14px;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.event-card-body h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.event-card-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.event-card-meta span {
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-card-meta i {
    color: var(--accent);
    width: 14px;
    text-align: center;
}

.events-empty {
    text-align: center;
    padding: 60px 24px;
    color: var(--text-light);
}

.events-empty i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 16px;
}

/* --- Event Modal --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(27, 27, 47, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    padding: 24px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--card-bg);
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--accent);
    border: 1px solid var(--accent);
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: all var(--transition);
}

.modal-close:hover {
    background: var(--accent);
    color: var(--primary);
}

.modal-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.modal-content {
    padding: 32px;
}

.modal-content h2 {
    font-size: 1.6rem;
    margin: 12px 0 16px;
}

.modal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}

.modal-meta-item {
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-meta-item i {
    color: var(--accent);
}

.modal-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.modal-talent-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--accent-light);
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    margin-bottom: 12px;
    transition: all var(--transition);
}

.faq-item:hover {
    border-color: var(--accent-light);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    text-align: left;
}

.faq-question i {
    color: var(--accent);
    transition: transform var(--transition);
    font-size: 0.8rem;
    min-width: 16px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 24px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
}

.faq-item.active {
    border-color: var(--accent);
}

.faq-item.active .faq-question {
    color: var(--accent);
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: start;
}

.contact-form-wrapper h2 {
    margin-bottom: 32px;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}

.required {
    color: var(--accent);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    background: var(--card-bg);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-light);
}

.form-group textarea {
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    accent-color: var(--accent);
}

.form-checkbox label {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-light);
}

.form-success {
    text-align: center;
    padding: 48px 24px;
}

.form-success i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.form-success h3 {
    margin-bottom: 12px;
}

.form-success p {
    color: var(--text-light);
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 28px;
}

.contact-info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 12px 0;
}

.contact-details li i {
    color: var(--accent);
    font-size: 1rem;
    margin-top: 4px;
    width: 20px;
    text-align: center;
}

.contact-details li strong {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.contact-details li span,
.contact-details li a {
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-socials {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-socials a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 0.9rem;
    transition: all var(--transition);
}

.contact-socials a:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-light);
}

.contact-socials a i {
    font-size: 1.1rem;
    color: var(--accent);
    width: 20px;
    text-align: center;
}

.contact-map {
    overflow: hidden;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin: 40px 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-light);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.15rem;
    margin: 24px 0 12px;
}

.legal-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 0 0 16px 24px;
    color: var(--text-light);
}

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
}

.legal-table th,
.legal-table td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid var(--border);
    font-size: 0.9rem;
}

.legal-table th {
    background: var(--primary);
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

.legal-table td {
    color: var(--text-light);
}

/* ============================================
   404 ERROR
   ============================================ */
.error-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.error-geometric-bg {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cpolygon points='60,5 70,25 92,12 82,35 105,40 82,45 92,68 70,55 60,75 50,55 28,68 38,45 15,40 38,35 28,12 50,25' fill='none' stroke='%23C9A84C' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 120px 120px;
    pointer-events: none;
}

.error-content {
    position: relative;
    z-index: 1;
}

.error-star {
    margin-bottom: 24px;
}

.error-page h1 {
    font-size: 8rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
    opacity: 0.7;
}

.error-page h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.error-page p {
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer-geometric-border {
    height: 4px;
    background: var(--gold-gradient);
}

.site-footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.7);
}

.footer-top {
    padding: 64px 0 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 0.7fr 1fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--surface);
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 8px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: var(--accent);
    font-size: 0.9rem;
    transition: all var(--transition);
}

.footer-socials a:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--surface);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    transition: all var(--transition);
}

.footer-col ul a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact ul li i {
    color: var(--accent);
    margin-top: 4px;
    font-size: 0.85rem;
}

.footer-contact ul li a,
.footer-contact ul li span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-contact ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: var(--primary);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all var(--transition);
    z-index: 900;
    clip-path: polygon(50% 0%, 85% 15%, 100% 50%, 85% 85%, 50% 100%, 15% 85%, 0% 50%, 15% 15%);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent-hover);
    transform: translateY(-4px);
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .models-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .model-image-octagon {
        width: 200px;
        height: 240px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--primary);
        padding: 100px 32px 32px;
        transition: right var(--transition);
        z-index: 999;
    }

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

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        color: rgba(255, 255, 255, 0.8);
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1rem;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--accent);
    }

    .nav-link::after {
        display: none;
    }

    .hero {
        min-height: 90vh;
    }

    .hero h1 {
        font-size: clamp(2rem, 7vw, 2.6rem);
    }

    .models-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .model-image-octagon {
        width: 160px;
        height: 200px;
    }

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

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .islamic-arch-frame img {
        height: 350px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .service-detail-card {
        flex-direction: column;
        padding: 28px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .section {
        padding: 64px 0;
    }

    .page-hero {
        padding: 140px 0 60px;
    }
}

@media (max-width: 480px) {
    .models-grid {
        grid-template-columns: 1fr;
    }

    .model-image-octagon {
        width: 220px;
        height: 260px;
    }

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

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .events-filters {
        flex-direction: column;
    }

    .events-select {
        width: 100%;
    }

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

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

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

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

    .geometric-divider {
        height: 24px;
    }
}

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3000;
    background: var(--primary, #1B1B2F);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
    padding: 20px;
    transform: translateY(100%);
    transition: transform var(--transition);
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: var(--max-width, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 0.9rem;
    color: var(--text-light, #5A5A7A);
}

.cookie-content p a {
    color: var(--accent, #C9A84C);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

/* Breadcrumbs */
.breadcrumbs { padding: 80px 0 12px 0; font-size: 0.85rem; opacity: 0.7; }
.breadcrumbs-list { display: flex; list-style: none; margin: 0; padding: 0; gap: 8px; }
.breadcrumbs-list li:not(:last-child)::after { content: "/"; margin-left: 8px; opacity: 0.5; }
.breadcrumbs-list a { text-decoration: none; color: inherit; }
.breadcrumbs-list a:hover { text-decoration: underline; }
.breadcrumbs-list li[aria-current] { opacity: 0.6; }
