/* ==================================================
   Jawharat Al-Ibtikar Al-Mumayyaza – Main Stylesheet
   ================================================== */

/* ----- CSS Variables ----- */
:root {
    --gold: #c49b3c;
    --dark-blue: #1a2b4c;
    --soft-blue-bg: #f0f4fa;
}

/* ----- Base ----- */
body {
    font-family: 'Poppins', 'Cairo', sans-serif;
    padding-top: 0;
    margin: 0;
}

/* ----- Navbar Brand (Logo) ----- */
.navbar-brand img,
.navbar-brand svg {
    max-height: 50px;
    height: auto;
}

/* ----- Text Color Helpers ----- */
.text-gold { color: var(--gold); }
.bg-soft-blue { background-color: var(--soft-blue-bg); }

/* ----- Gold Solid Button ----- */
.btn-gold {
    background-color: var(--gold);
    border-color: var(--gold);
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-gold:hover {
    background-color: #b3872e;
    border-color: #b3872e;
    color: #fff;
}

/* ----- Gold Outline Button (Hero & CTAs) ----- */
.btn-outline-gold {
    color: var(--gold);
    border: 2px solid var(--gold);
    background: transparent;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-outline-gold:hover {
    background-color: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

/* ----- Hero Section ----- */
.hero h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* ----- Icon Square (used in sector cards) ----- */
.icon-square {
    flex-shrink: 0;
}

/* ----- Card Hover Effect ----- */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

/* ----- Footer ----- */
footer a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}
footer a:hover {
    color: #fff;
}

/* ----- Contact Form Feedback Messages ----- */
.php-email-form .loading,
.php-email-form .error-message,
.php-email-form .sent-message {
    display: none;
}