:root {
    --primary: #0f172a;      /* Dark Navy */
    --accent: #d4af37;       /* Gold */
    --accent-light: #f3e5b5; /* Light Gold */
    --text: #f8fafc;         /* Off-white */
    --text-muted: #94a3b8;
    --white: #ffffff;
    --font-main: 'Tajawal', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--primary);
    color: var(--text);
    overflow-x: hidden;
    scroll-behavior: smooth;
    line-height: 1.6;
}

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

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 0;
    z-index: 10;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -1px;
}

.logo h1 span {
    color: var(--accent);
}

.logo .subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    margin-top: 5px;
    font-family: sans-serif;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle at top right, #1e293b, #0f172a);
    text-align: center;
    overflow: hidden;
    padding-top: 80px; /* Space for header on mobile */
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 900;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    text-decoration: none;
    padding: 14px 35px;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 0 10px;
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent), #b8962e);
    color: var(--primary);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--white);
}

/* About Section */
.section-padding {
    padding: 100px 0;
}

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

.section-header h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 15px;
}

.section-header .line {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: rgba(30, 41, 59, 0.5);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

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

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

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

/* Location Section */
.location {
    position: relative;
    overflow: hidden;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.location-wrapper {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: 20px;
    padding: 60px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

/* Style specifically for the second card if needed */
.location-wrapper.team-card {
    background: linear-gradient(135deg, #2c3e50, #1e293b); 
}

.location-info {
    position: relative;
    z-index: 2;
    max-width: 60%;
}

.location-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.address-box {
    margin-top: 30px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-right: 3px solid var(--accent);
    border-radius: 0 5px 5px 0;
}

.address-item {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.address-item.subtitle-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-family: sans-serif;
}

.address-item strong {
    color: var(--accent);
    margin-left: 10px;
}

.brand-signature {
    margin-top: 40px;
    font-family: sans-serif;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-size: 0.9rem;
    opacity: 0.5;
}

.location-map-visual {
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
    height: 250px;
    z-index: 1;
    opacity: 0.3;
}

.circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.c1 { width: 150px; height: 150px; animation: pulse 4s infinite; }
.c2 { width: 250px; height: 250px; animation: pulse 4s infinite 1s; }
.c3 { width: 350px; height: 350px; animation: pulse 4s infinite 2s; border-style: dashed; }

/* Footer */
.footer {
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.3; }
}

/* Utility Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

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

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

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

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

/* Responsive */
@media (max-width: 900px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero h2 { font-size: 2.2rem; }
    .location-wrapper { 
        flex-direction: column; 
        padding: 40px 20px;
        text-align: center;
    }
    .location-info { max-width: 100%; }
    .address-box {
        text-align: right; 
    }
    .location-map-visual {
        display: none;
    }
}
