/* ============================================
   Ultra-Premium Modern Home Page (Dubai Standard)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&family=Cairo:wght@400;600;700;800;900&family=Outfit:wght@300;400;700;900&display=swap');

/* Global Premium Variables */
:root {
    --pr-gold: #C5A059;
    --pr-gold-light: #e8dcc5;
    --pr-gold-glow: rgba(197, 160, 89, 0.3);
    --pr-navy: #0f172a;
    --pr-navy-light: #1e293b;
    --pr-white: #ffffff;
    --pr-bg-soft: #f8fafc;
    --pr-bg-warm: #fcfbf9;
    --pr-text-main: #334155;
    --pr-text-muted: #64748b;
    --pr-shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.02);
    --pr-shadow-md: 0 10px 30px rgba(0, 0, 0, 0.04);
    --pr-shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.06);
    --pr-shadow-glow: 0 10px 25px var(--pr-gold-glow);
    --pr-radius-md: 12px;
    --pr-radius-lg: 20px;
    --pr-transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pr-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

body {
    background-color: var(--pr-bg-soft);
    color: var(--pr-text-main);
    font-family: 'Cairo', sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* Typography Enhancements (Scaled Down for Elegance) */
.pr-heading-xl { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 900; line-height: 1.2; color: var(--pr-navy); letter-spacing: -0.02em; }
.pr-heading-lg { font-size: clamp(1.5rem, 2.5vw, 2.2rem); font-weight: 800; line-height: 1.3; color: var(--pr-navy); letter-spacing: -0.01em; }
.pr-heading-md { font-size: 1.25rem; font-weight: 800; color: var(--pr-navy); }
.pr-text-gold { color: var(--pr-gold); }

/* Premium Buttons */
.pr-btn-primary {
    background: linear-gradient(135deg, var(--pr-gold) 0%, #b08d4a 100%);
    color: var(--pr-white) !important;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: var(--pr-transition);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: var(--pr-shadow-glow);
    position: relative;
    overflow: hidden;
}
.pr-btn-primary::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: all 0.6s ease;
}
.pr-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.4);
}
.pr-btn-primary:hover::after { left: 100%; }

.pr-btn-outline {
    background: transparent;
    color: var(--pr-navy) !important;
    border: 2px solid rgba(15, 23, 42, 0.1);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--pr-transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.pr-btn-outline:hover {
    border-color: var(--pr-gold);
    color: var(--pr-gold) !important;
    background: rgba(197, 160, 89, 0.05);
}

.pr-btn-login {
    background: transparent;
    color: var(--pr-navy) !important;
    border: 2px solid var(--pr-gold);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    transition: var(--pr-transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.pr-btn-login::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, var(--pr-gold) 0%, #b08d4a 100%);
    z-index: -1; transform: scaleY(0); transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.pr-btn-login:hover {
    color: var(--pr-white) !important;
    border-color: transparent;
}
.pr-btn-login:hover::before { transform: scaleY(1); }
.pr-btn-login i { font-size: 1.1rem; }

/* Utility Layout */
.section-padding { padding: 60px 0; position: relative; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header p { font-size: 1rem; color: var(--pr-text-muted); max-width: 600px; margin: 0 auto; line-height: 1.8; }
.pr-badge { 
    background: linear-gradient(135deg, rgba(197,160,89,0.1) 0%, rgba(197,160,89,0.05) 100%);
    color: var(--pr-gold); padding: 6px 16px; border-radius: 30px; font-size: 0.85rem; font-weight: 700;
    display: inline-flex; align-items: center; gap: 8px; margin-bottom: 15px; border: 1px solid rgba(197, 160, 89, 0.2); 
}

/* Animations */
@keyframes prFloat { 0% { transform: translateY(0px); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0px); } }
@keyframes prPulse { 0% { box-shadow: 0 0 0 0 rgba(197,160,89,0.4); } 70% { box-shadow: 0 0 0 15px rgba(197,160,89,0); } 100% { box-shadow: 0 0 0 0 rgba(197,160,89,0); } }

/* 1. Dynamic Hero Section (Light & Airy) */
.pr-hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}
.pr-hero::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.85) 100%);
    backdrop-filter: blur(5px);
    z-index: 1;
}
.pr-hero-bg-shape {
    position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(197,160,89,0.1) 0%, transparent 70%);
    top: -100px; right: -100px; z-index: 1; animation: prFloat 10s ease-in-out infinite;
}
.pr-hero-content {
    position: relative; z-index: 2; text-align: center; max-width: 900px; margin: 0 auto;
}
.pr-hero-content .pr-heading-xl { color: var(--pr-navy); margin-bottom: 20px; }
.pr-hero-content p { font-size: 1.25rem; margin-bottom: 40px; color: var(--pr-text-muted); font-weight: 500; }

/* 2. Pillars Section (Exquisite Cards) */
.pr-pillars { background: var(--pr-white); position: relative; }
.pr-pillar-card {
    background: var(--pr-white);
    border-radius: var(--pr-radius-lg);
    padding: 45px 30px 30px;
    text-align: center;
    box-shadow: var(--pr-shadow-md);
    border: 1px solid rgba(0,0,0,0.02);
    position: relative;
    height: 100%;   
    transition: var(--pr-transition);
    z-index: 1;
}
.pr-pillar-card::before {
    content: ''; position: absolute; inset: 0; border-radius: var(--pr-radius-lg);
    background: linear-gradient(135deg, transparent 0%, rgba(197,160,89,0.03) 100%);
    z-index: -1; opacity: 0; transition: var(--pr-transition);
}
.pr-pillar-card:hover { transform: translateY(-10px); box-shadow: var(--pr-shadow-lg); border-color: rgba(197,160,89,0.2); }
.pr-pillar-card:hover::before { opacity: 1; }
.pr-pillar-icon {
    width: 65px; height: 65px;
    background: linear-gradient(135deg, var(--pr-bg-warm) 0%, var(--pr-white) 100%);
    border-radius: 50%;
    box-shadow: var(--pr-shadow-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--pr-gold); font-size: 1.5rem;
    position: absolute; top: -32px; left: 50%; transform: translateX(-50%);
    border: 2px solid rgba(197,160,89,0.1);
    transition: var(--pr-transition);
}
.pr-pillar-card:hover .pr-pillar-icon { background: var(--pr-gold); color: var(--pr-white); border-color: var(--pr-gold); transform: translateX(-50%) rotateY(180deg); }
.pr-pillar-card p { font-size: 1rem; color: var(--pr-text-muted); margin-top: 15px; }

/* 3. About Us / Vision Area (Artistic Layout) */
.pr-about-section { background: var(--pr-bg-soft); }
.pr-about-image-wrapper { position: relative; padding: 20px; }
.pr-about-image-wrapper::before {
    content: ''; position: absolute; top: 0; right: 0; bottom: 40px; left: 40px;
    border: 2px solid var(--pr-gold); border-radius: var(--pr-radius-lg); z-index: 0;
}
.pr-about-image { border-radius: var(--pr-radius-md); overflow: hidden; box-shadow: var(--pr-shadow-lg); position: relative; z-index: 1; }
.pr-about-image img { width: 100%; transition: transform 0.8s ease; }
.pr-about-image:hover img { transform: scale(1.05); }

/* 4. Leader's Word (Elegant Typography focus) */
.pr-leader-word {
    background: var(--pr-white);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}
.pr-leader-pattern {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(197,160,89,0.1) 1px, transparent 1px);
    background-size: 30px 30px; opacity: 0.5; z-index: 0;
}
.pr-quote-content { text-align: center; max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.pr-quote-icon { font-size: 3.5rem; color: var(--pr-gold); margin-bottom: 30px; opacity: 0.3; animation: prFloat 6s ease-in-out infinite; }
.pr-quote-text {
    font-size: clamp(1.5rem, 3vw, 2.2rem); font-family: 'Almarai', sans-serif;
    font-weight: 300; line-height: 1.8; margin-bottom: 40px; color: var(--pr-navy);
}
.pr-leader-info { border-top: 2px solid rgba(197,160,89,0.2); padding-top: 30px; display: inline-block; }
.pr-leader-name { font-size: 1.3rem; font-weight: 900; color: var(--pr-navy); margin-bottom: 5px; }
.pr-leader-title { font-size: 1rem; color: var(--pr-gold); font-weight: 700; }

/* 5. Achievements (Data Cards) */
.pr-stats { background: var(--pr-bg-warm); }
.pr-stat-card {
    background: var(--pr-white);
    padding: 40px 30px;
    border-radius: var(--pr-radius-lg);
    text-align: center;
    box-shadow: var(--pr-shadow-sm);
    border: 1px solid rgba(0,0,0,0.02);
    transition: var(--pr-transition);
}
.pr-stat-card:hover { transform: translateY(-5px); box-shadow: var(--pr-shadow-md); border-bottom: 3px solid var(--pr-gold); }
.pr-stat-icon { font-size: 2.5rem; color: var(--pr-gold); margin-bottom: 15px; opacity: 0.8; }
.pr-stat-number { font-size: 3.5rem; font-family: 'Outfit', sans-serif; font-weight: 900; color: var(--pr-navy); line-height: 1; margin-bottom: 10px; }
.pr-stat-label { font-size: 1.1rem; font-weight: 700; color: var(--pr-text-muted); }

/* 6. Benefits (Glassy Elements) */
.pr-benefits { background: var(--pr-white); }
.pr-benefit-item {
    display: flex; align-items: flex-start; gap: 20px;
    padding: 30px; background: var(--pr-bg-soft);
    border-radius: var(--pr-radius-lg);
    box-shadow: var(--pr-shadow-sm);
    border: 1px solid rgba(255,255,255,0.8);
    transition: var(--pr-transition);
    height: 100%;
}
.pr-benefit-item:hover { background: var(--pr-white); box-shadow: var(--pr-shadow-md); transform: translateX(-5px); border-color: rgba(197,160,89,0.2); }
.pr-benefit-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, rgba(197,160,89,0.1) 0%, rgba(197,160,89,0.05) 100%);
    color: var(--pr-gold); border-radius: 16px;
    display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0;
}
.pr-benefit-item h5 { font-size: 1.2rem; margin-bottom: 8px; font-weight: 800; color: var(--pr-navy); }
.pr-benefit-item p { font-size: 0.95rem; color: var(--pr-text-muted); margin-bottom:0; line-height: 1.6; }

/* 7. Success Stories (Minimal Elegance) */
.pr-testimonials { background: var(--pr-bg-soft); }
.pr-testim-card {
    background: var(--pr-white); padding: 50px 40px; border-radius: var(--pr-radius-lg);
    box-shadow: var(--pr-shadow-sm); position: relative; margin-top: 50px; text-align: center;
}
.pr-testim-avatar {
    width: 90px; height: 90px; border-radius: 50%; position: absolute; top: -45px; left: 50%; transform: translateX(-50%);
    border: 4px solid var(--pr-white); box-shadow: var(--pr-shadow-md); object-fit: cover;
}
.pr-testim-name { font-size: 1.2rem; font-weight: 800; color: var(--pr-navy); margin-top: 10px; margin-bottom: 2px; }
.pr-testim-title { font-size: 0.9rem; color: var(--pr-gold); font-weight: 700; display: block; margin-bottom: 20px; }
.pr-testim-text { font-size: 1.05rem; color: var(--pr-text-muted); line-height: 1.8; font-style: italic; }

/* 8. Recruitment Journey (Interactive Timeline) */
.pr-journey { background: var(--pr-white); }
.pr-timeline-wrapper { position: relative; margin-top: 60px; padding-top: 20px; }
.pr-timeline-line {
    position: absolute; top: 40px; left: 10%; right: 10%; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(197,160,89,0.3), transparent); z-index: 1;
}
.pr-step { text-align: center; position: relative; z-index: 2; }
.pr-step-icon {
    width: 80px; height: 80px; background: var(--pr-white);
    border: 2px solid var(--pr-gold); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; color: var(--pr-gold); font-size: 1.8rem;
    box-shadow: 0 0 0 10px var(--pr-white), 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--pr-transition);
}
.pr-step:hover .pr-step-icon { background: var(--pr-gold); color: var(--pr-white); animation: prPulse 1.5s infinite; }
.pr-step h5 { font-size: 1.15rem; font-weight: 800; margin-bottom: 8px; color: var(--pr-navy); }
.pr-step p { font-size: 0.95rem; color: var(--pr-text-muted); }

/* 9. FAQs (Sleek Accordion) */
.pr-faq { background: var(--pr-bg-soft); }
.pr-accordion .accordion-item {
    border: none; margin-bottom: 15px; border-radius: var(--pr-radius-md) !important;
    background: var(--pr-white); box-shadow: var(--pr-shadow-sm); overflow: hidden;
}
.pr-accordion .accordion-button {
    font-weight: 800; padding: 25px; font-size: 1.1rem; color: var(--pr-navy); background: transparent; box-shadow: none;
}
.pr-accordion .accordion-button:not(.collapsed) { color: var(--pr-gold); background: rgba(197,160,89,0.02); }
.pr-accordion .accordion-body { padding: 0 25px 25px; font-size: 1rem; color: var(--pr-text-muted); line-height: 1.8; }

/* Bottom CTA (Stunning Gradient) */
.pr-bottom-cta {
    background: linear-gradient(135deg, var(--pr-bg-warm) 0%, #f0e6d2 100%);
    padding: 100px 0; text-align: center; position: relative; overflow: hidden;
}
.pr-bottom-cta::before {
    content: ''; position: absolute; inset: 0;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23c5a059" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}
.pr-bottom-cta h2 { color: var(--pr-navy); margin-bottom: 20px; font-size: clamp(2rem, 4vw, 3rem); position: relative; z-index: 1; font-weight: 900; }
.pr-bottom-cta p { color: var(--pr-text-muted); margin-bottom: 40px; font-size: 1.2rem; position: relative; z-index: 1; }

/* 11. Premium Footer (Light & Elegant) */
.pr-footer {
    background: var(--pr-white);
    position: relative;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    padding-top: 80px;
    font-family: 'Cairo', sans-serif;
    overflow: hidden;
}
.pr-footer::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 5px;
    background: linear-gradient(90deg, var(--pr-gold) 0%, #b08d4a 100%);
}
.pr-footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}
@media (max-width: 991px) {
    .pr-footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
    .pr-footer-top { grid-template-columns: 1fr; gap: 40px; text-align: center; }
}
.pr-footer-logo {
    height: 70px;
    margin-bottom: 25px;
    /* Since it's a light theme, the original white logo won't show.
       We should apply a filter to make it navy/gold if it's currently white.
       Assuming the SVG is somewhat adaptable or we just brightness(0) hue-rotate it to Navy */
    filter: brightness(0) sepia(1) hue-rotate(180deg) saturate(3) invert(0.1); 
    opacity: 0.9;
}
.pr-footer-desc {
    color: var(--pr-text-muted);
    font-size: 1rem;
    line-height: 1.8;
}
.pr-footer-title {
    color: var(--pr-navy);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}
.pr-footer-title::after {
    content: ''; position: absolute; right: 0; bottom: -8px; width: 30px; height: 3px;
    background: var(--pr-gold); border-radius: 2px;
}
@media (max-width: 768px) {
    .pr-footer-title::after { right: 50%; transform: translateX(50%); }
    .pr-footer-logo { margin: 0 auto 25px auto; }
}
.pr-footer-menu { list-style: none; padding: 0; margin: 0; }
.pr-footer-menu li { margin-bottom: 12px; }
.pr-footer-menu a {
    color: var(--pr-text-muted);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--pr-transition);
    display: inline-block;
}
.pr-footer-menu a:hover {
    color: var(--pr-gold);
    transform: translateX(-5px);
}

.pr-footer-contact-list { list-style: none; padding: 0; margin: 0; }
.pr-footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--pr-text-muted);
    font-size: 1rem;
    font-weight: 600;
}
@media (max-width: 768px) {
    .pr-footer-contact-list li { justify-content: center; }
}
.pr-footer-icon-wrap {
    width: 40px; height: 40px;
    background: rgba(197, 160, 89, 0.1);
    color: var(--pr-gold);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: var(--pr-transition);
}
.pr-footer-contact-list li:hover .pr-footer-icon-wrap {
    background: var(--pr-gold);
    color: var(--pr-white);
    transform: scale(1.1);
}

.pr-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: var(--pr-bg-warm);
    padding: 25px 50px;
    border-radius: var(--pr-radius-md) var(--pr-radius-md) 0 0;
    margin: 0 15px;
}
@media (max-width: 768px) {
    .pr-footer-bottom { flex-direction: column; text-align: center; gap: 20px; padding: 25px; margin: 0; border-radius: 0; }
}
.pr-footer-copyright p {
    margin: 0;
    color: var(--pr-text-muted);
    font-weight: 600;
    font-size: 0.95rem;
}
.pr-footer-admin-link {
    color: var(--pr-navy);
    font-weight: 800;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 30px;
    background: rgba(15, 23, 42, 0.05);
    transition: var(--pr-transition);
}
.pr-footer-admin-link:hover {
    background: var(--pr-navy);
    color: var(--pr-white);
}
