/* ===== Color Variables Based on Logo ===== */
:root {
    --primary-gold: #D4AF37;
    --dark-gold: #B8941F;
    --light-gold: #F4D03F;
    --gradient-gold-start: #FFD700;
    --gradient-gold-end: #B8860B;
    --black: #000000;
    --dark-bg: #1a1a1a;
    --text-light: #f8f9fa;
    --text-dark: #333333;
}

/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tajawal', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    padding-top: 76px;
}

/* ===== Navigation ===== */
.navbar {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-bg) 100%) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding: 1rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    color: var(--primary-gold) !important;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
}

.brand-text {
    font-size: 1.3rem;
    background: linear-gradient(135deg, var(--gradient-gold-start), var(--gradient-gold-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    margin: 0 10px;
    font-weight: 500;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-gold) !important;
}

/* ===== Hero Section ===== */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../11.jpg') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--text-light);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(26, 26, 26, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--gradient-gold-start), var(--gradient-gold-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-gold-start), var(--gradient-gold-end));
    border: none;
    color: var(--black);
    font-weight: bold;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--light-gold), var(--primary-gold));
}

.btn-outline-light {
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
}

.btn-outline-light:hover {
    background: var(--primary-gold);
    color: var(--black);
}

/* ===== Exclusive Agent Badge ===== */
.exclusive-agent-badge {
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 20px;
    border: 3px solid var(--primary-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    position: relative;
    z-index: 2;
}

.agent-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.agent-text {
    color: var(--primary-gold);
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
}

/* ===== Section Styles ===== */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gradient-gold-start), var(--gradient-gold-end));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-top: 1.5rem;
}

/* ===== Products Section ===== */
.products-section {
    background: #f8f9fa;
}

.product-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.product-card:hover {
    border-top: 4px solid var(--primary-gold);
}

.product-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--gradient-gold-start), var(--gradient-gold-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--black);
}

.product-card h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: bold;
}

.product-card p {
    color: #666;
}

/* ===== Partners Section ===== */
.partner-logo {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo:hover {
    border: 2px solid var(--primary-gold);
}

.partner-logo img {
    max-height: 100px;
    max-width: 100%;
    object-fit: contain;
}

/* ===== Contact Section ===== */
.contact-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--black) 100%);
    color: var(--text-light);
}

.contact-section .section-title {
    color: var(--text-light);
}

.contact-section .section-title::after {
    background: linear-gradient(90deg, var(--gradient-gold-start), var(--gradient-gold-end));
}

.contact-section .section-subtitle {
    color: var(--text-light);
    opacity: 0.9;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.contact-info-wrapper .contact-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 0;
}

.contact-info-wrapper .contact-card:last-child {
    flex: 1;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-gold);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--gradient-gold-start), var(--gradient-gold-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--black);
}

.contact-info-wrapper .contact-card .contact-icon {
    margin-bottom: 15px;
    flex-shrink: 0;
}

.contact-info-wrapper .contact-card h4 {
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-wrapper .contact-card p {
    color: var(--text-light);
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .contact-info-wrapper {
        margin-bottom: 30px;
    }
    
    .contact-info-wrapper .contact-card {
        flex: none;
        min-height: auto;
    }
}

.contact-card h4 {
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-weight: bold;
}

.contact-card a {
    color: var(--text-light);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 8px;
}

.contact-card a:hover {
    color: var(--primary-gold);
}

/* ===== Contact Form ===== */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-label {
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    color: var(--text-light);
    padding: 12px 15px;
    font-family: 'Tajawal', sans-serif;
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-gold);
    color: var(--text-light);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    outline: none;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form select.form-control {
    cursor: pointer;
}

.contact-form select.form-control option {
    background: var(--dark-bg);
    color: var(--text-light);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    background: linear-gradient(135deg, var(--gradient-gold-start), var(--gradient-gold-end));
    border: none;
    color: var(--black);
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
}

.contact-form .btn-primary:hover {
    background: linear-gradient(135deg, var(--light-gold), var(--primary-gold));
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-bg) 100%) !important;
    border-top: 3px solid var(--primary-gold);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
}

.footer-title {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 0.9rem;
}

.footer-contact-info,
.footer-hours-info {
    margin-top: 10px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--primary-gold);
    font-size: 1rem;
    margin-left: 8px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--primary-gold);
}

.footer-contact span {
    color: rgba(255, 255, 255, 0.8);
}

.footer-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-hours li {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.footer-hours span:first-child {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.9rem;
}

.footer-hours span:last-child {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 0.9rem;
}

.footer-badge {
    text-align: center;
    padding: 15px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.agent-logo-small {
    max-width: 80px;
    height: auto;
    margin: 0 auto;
}

.footer-badge p {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 0.9rem;
}

.footer-divider {
    border-color: rgba(212, 175, 55, 0.2);
    margin: 20px 0;
}

.social-links {
    display: flex;
    gap: 10px;
    justify-content: center;
}

@media (min-width: 992px) {
    .social-links {
        justify-content: flex-start;
    }
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: var(--primary-gold);
    text-decoration: none;
    font-size: 1.1rem;
}

.social-link:hover {
    background: rgba(212, 175, 55, 0.2);
    color: var(--light-gold);
    border-color: var(--primary-gold);
}

/* ===== About Page Styles ===== */
.page-header {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--black) 100%);
    color: var(--text-light);
    margin-top: 76px;
}

.page-title {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--gradient-gold-start), var(--gradient-gold-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--primary-gold);
    margin-top: 10px;
}

.about-section {
    background: white;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.about-image img {
    border: 5px solid var(--primary-gold);
    padding: 10px;
}

.vision-mission-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(184, 148, 31, 0.1) 100%);
    padding: 40px;
    border-radius: 20px;
    border-right: 5px solid var(--primary-gold);
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gradient-gold-start), var(--gradient-gold-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 25px;
}

.card-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.card-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
}

.goals-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.goal-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.goal-item:hover {
    transform: translateX(-5px);
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.2);
}

.goal-item i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.goal-item span {
    color: #555;
    font-size: 1rem;
}

/* ===== Why Choose Us Section ===== */
.why-choose-section {
    background: #f8f9fa;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.feature-card:hover {
    border-top: 4px solid var(--primary-gold);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--gradient-gold-start), var(--gradient-gold-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--black);
}

.feature-card h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: bold;
}

.feature-card p {
    color: #666;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .exclusive-agent-badge {
        margin-top: 30px;
    }
    
    .goals-list {
        grid-template-columns: 1fr;
    }
}

/* ===== Smooth Scroll ===== */
html {
    scroll-behavior: smooth;
}

/* ===== Animations Disabled ===== */
/* All animations and complex transitions have been removed */

/* ===== Navbar Animation ===== */
.navbar {
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%) !important;
    padding: 0.5rem 0;
}

/* ===== Loading Animation for Images ===== */
img {
    transition: opacity 0.3s ease;
}

img[loading="lazy"] {
    opacity: 0;
}

img[loading="lazy"].loaded {
    opacity: 1;
    animation: fadeInUp 0.6s ease-out;
}

/* ===== Text Shimmer Effect ===== */
.brand-text {
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

/* ===== Scroll Progress Indicator ===== */
.scroll-progress {
    display: none;
}

/* ===== Smooth Transitions ===== */
/* All animations and transitions disabled */

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    left: 30px;
    background: #25D366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #20BA5A;
}

.whatsapp-float i {
    font-size: 32px;
    color: white;
}

.whatsapp-tooltip {
    display: none;
}

/* WhatsApp animation removed */

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        left: 20px;
        font-size: 28px;
    }
    
    .whatsapp-float i {
        font-size: 28px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

