:root {
    --primary-color: #0B2447;
    /* Deep Navy Blue */
    --primary-hover: #19376D;
    --accent-color: #D4AF37;
    /* Gold */
    --accent-hover: #B5952F;
    --teal-color: #0ba5a3;
    /* Teal */
    --teal-hover: #098b89;
    --text-color: #1f2937;
    --text-light: #4b5563;
    --bg-color: #f8fafc;
    --nav-bg: #ffffff;
}

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

body {
    font-family: 'Heebo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navigation Bar */
header {
    background-color: #ffffff;
}

.navbar {
    background-color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-container:hover {
    transform: translateY(-2px);
}

.nav-logo-img {
    height: 70px;
    width: auto;
    display: block;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover {
    color: var(--teal-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: -4px;
    right: 0;
    background-color: var(--teal-color);
    transform: scaleX(0);
    transform-origin: bottom left;
    /* RTL */
    transition: transform 0.3s ease-out;
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: bottom right;
    /* RTL */
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 700;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle svg {
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    list-style: none;
    min-width: 200px;
    border-radius: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border: 1px solid rgba(0,0,0,0.05);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: 500;
}

.dropdown-link:hover {
    background-color: var(--bg-color);
    color: var(--primary-color);
}

/* Nav Action Button */
.nav-action {
    display: flex;
    align-items: center;
    margin-right: 2rem;
}

.nav-btn {
    padding: 0.6rem 1.5rem;
    font-size: 1.1rem;
    white-space: nowrap;
    border-radius: 50px;
}

@media (max-width: 900px) {
    .nav-action {
        display: none;
    }
}

/* Modern Hero Section */
.modern-hero {
    background-color: #ffffff;
    padding: 6rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-flex {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out forwards;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title span {
    color: var(--accent-color);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.btn-glow {
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-glow:hover {
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.hero-illustration {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-svg {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.hero-photo {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(11, 36, 71, 0.15);
    border: 8px solid #ffffff;
    object-fit: cover;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background-color: #e5c358;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Stats Bar */
.stats-bar {
    background-color: var(--primary-color);
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.stat-icon {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(212, 175, 55, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.2);
}

.stat-text {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.5;
}

/* Trust Block Section */
.trust-block {
    background-color: #ffffff;
    padding: 6rem 2rem;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.trust-content {
    flex: 1;
}

.trust-title {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.trust-body {
    font-size: 1.5rem; /* Large readable font for accessibility */
    color: var(--text-color);
    line-height: 1.8;
}

.trust-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.trust-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    object-fit: cover;
}

/* Testimonials Carousel Section */
.testimonials-block {
    background-color: var(--bg-color);
    padding: 6rem 2rem;
    overflow: hidden;
}

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

.testimonials-title {
    margin-bottom: 4rem;
    text-align: center;
}

.carousel-outer {
    max-width: 60%;
    margin: 0 auto;
    position: relative;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 1.5rem 0;
    cursor: grab;
    /* Soft glowing fade at edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.carousel-wrapper:active {
    cursor: grabbing;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    will-change: transform;
}

.testimonial-card {
    background-color: #f1f5f9; /* #f1f5f9 is a very light navy/grey tint used in Tailwind, or #f5f7fa */
    border: 1px solid var(--accent-color); /* thin gold border */
    width: 350px;
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    user-select: none;
}

.quote-icon {
    margin-bottom: 1.25rem;
    opacity: 0.8;
}

.testimonial-text {
    font-size: 1.15rem;
    color: var(--primary-color);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.testimonials-footer-note {
    margin-top: 3rem;
    font-size: 1.25rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Community CTA Section */
.community-cta {
    background-color: #fdfaf6; /* Light Gold / Warm background */
    padding: 5rem 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

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

.cta-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-body {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-secondary {
    background-color: var(--primary-color);
    color: #ffffff;
    border: 2px solid var(--accent-color);
}

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

/* Services Section */
.services {
    padding: 5rem 2rem;
    background-color: var(--bg-color);
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 800;
}

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

.service-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--accent-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(11, 36, 71, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

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

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

/* Coming Soon General Content */
.content-wrapper {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
}

.coming-soon-container {
    background: #ffffff;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.coming-soon-container h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.coming-soon-container p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Siaud Page Styles */
.siaud-hero {
    background-color: #faf7f2; /* Soft, warm background */
    padding: 6rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.siaud-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.siaud-title span {
    color: var(--accent-hover);
}

.siaud-description {
    font-size: 1.25rem;
    color: #5a6b7c;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.btn-siaud {
    background-color: var(--accent-color);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-siaud:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.siaud-svg {
    filter: drop-shadow(0px 10px 20px rgba(0,0,0,0.03));
}

.siaud-values {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    width: 80px;
    height: 80px;
    background-color: #faf7f2;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
}

.value-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Eligibility Vertical List */
.eligibility-list-wrapper {
    background-color: #fcfcfd;
    border: 1px solid rgba(11, 36, 71, 0.05); /* very subtle border */
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.eligibility-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.eligibility-icon {
    width: 38px;
    height: 38px;
    min-width: 38px; /* prevent squishing */
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px; /* slightly rounded square */
    margin-top: 0.15rem; /* fine tune alignment with text */
}

.eligibility-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.eligibility-content strong {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
}

.eligibility-content span {
    color: var(--text-color);
    font-size: 1.15rem;
    line-height: 1.6;
}

/* --------------------------------------
   Contact Page - Split Layout Redesign 
   -------------------------------------- */
.contact-split-page {
    background-color: var(--bg-color); /* Subtle light background to pop the module */
    min-height: calc(100vh - 80px); /* minus header */
    display: flex;
    align-items: center; /* Center vertically on page */
    justify-content: center;
    padding: 4rem 2rem;
}

.contact-split-wrapper {
    width: 100%;
    max-width: 1100px;
    display: flex;
    justify-content: center;
}

/* New Cohesive Unified Power Block */
.contact-unified-block {
    display: flex;
    flex-direction: row;
    width: 100%;
    background-color: var(--primary-color);
    border: 4px solid var(--accent-color); /* Thick gold border wrapping everything */
    border-radius: 12px;
    overflow: hidden; /* Clips children to match border radius */
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Right side image */
.contact-image-col {
    flex: 1; /* Stretch to match height */
    position: relative;
    background-color: var(--primary-color);
}

.contact-team-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Left side form */
.contact-form-col {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 4rem;
}

.compact-form-card {
    width: 100%;
    max-width: 450px;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.form-title-gold {
    color: var(--accent-color);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-subtitle {
    color: #e2e8f0;
    font-size: 1.15rem;
    text-align: center;
    margin-bottom: 2rem;
}

.compact-lead-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.compact-group label {
    display: block;
    color: #fff;
    margin-bottom: 0.4rem;
    font-weight: 500;
    font-size: 1rem;
}

.compact-group input, 
.compact-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background-color: #ffffff; /* Fully solid white rectangles as requested */
    color: var(--primary-color);
    font-family: 'Heebo', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    direction: rtl; /* Crucial RTL fix */
    text-align: right; /* Text starts beautifully on the right side */
}

.compact-group input::placeholder, 
.compact-group textarea::placeholder {
    color: #64748b; /* Accessible dark grey placeholder */
    text-align: right;
    direction: rtl;
}

.compact-group input:focus, 
.compact-group textarea:focus {
    outline: none;
    border: 2px solid var(--accent-color);
}

.compact-submit {
    margin-top: 1.5rem;
    background-color: var(--primary-color);
    color: var(--accent-color);
    border: 3px solid var(--accent-color);
    font-size: 1.4rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 800;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.compact-submit:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Map & Office Info Layer */
.contact-location-section {
    margin-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.office-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 500;
}

.gold-icon {
    color: var(--accent-color);
    flex-shrink: 0;
}

.map-container {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #f9fafb;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal-color);
    box-shadow: 0 0 0 3px rgba(11, 165, 163, 0.1);
    background-color: #ffffff;
}

.btn-submit {
    margin-top: 1rem;
    background-color: var(--primary-color);
    color: var(--accent-color);
    font-size: 1.25rem;
    padding: 1.25rem;
    width: 100%;
    text-align: center;
    font-weight: 800;
    border-radius: 0.5rem;
}

.btn-submit:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(11, 36, 71, 0.2);
}

/* Parliament Page Styles */
.parliament-page {
    background-color: var(--bg-color);
    padding-bottom: 5rem;
}

.parliament-hero {
    background-color: #fdfaf6; /* Very subtle warm background */
    padding: 5rem 2rem 3rem;
    position: relative;
    border-bottom: 1px solid #e5e7eb;
}

.page-title span {
    color: var(--accent-color);
    font-size: 0.6em;
    vertical-align: middle;
}

.parliament-vision {
    font-size: 1.35rem;
    color: var(--text-color);
    max-width: 800px;
    margin: 1.5rem auto 0;
    line-height: 1.8;
}

.parliament-form-card {
    border-color: var(--teal-color);
    background: linear-gradient(to bottom right, #ffffff, #fdfaf6);
}

.form-description {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.btn-parliament {
    background-color: var(--teal-color);
    color: #ffffff;
}

.btn-parliament:hover {
    background-color: var(--teal-hover);
    box-shadow: 0 8px 25px rgba(11, 165, 163, 0.2);
}

/* Sharam Page Styles */
.sharam-page {
    background-color: var(--bg-color);
    padding-bottom: 5rem;
}

.sharam-hero {
    background-color: var(--primary-color);
    padding: 6rem 2rem 4rem;
    color: #ffffff;
    border-bottom: 5px solid var(--accent-color);
}

.sharam-hero .page-title {
    color: #ffffff;
    font-size: 3rem;
}

.sharam-hero .page-title span {
    color: var(--accent-color);
    display: block;
    margin-top: 0.5rem;
    font-size: 0.7em;
    font-weight: 500;
}

.sharam-intro {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 1.5rem auto 0;
    line-height: 1.8;
    color: #e2e8f0;
}

.sharam-content-section {
    padding: 4rem 2rem 0;
}

.sharam-container {
    max-width: 900px;
    margin: 0 auto;
}

.content-block {
    background: #ffffff;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    margin-bottom: 3rem;
    border-top: 4px solid var(--teal-color);
}

.content-block h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 0.5rem;
}

.content-block p {
    font-size: 1.2rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.sharam-list {
    list-style: none;
    margin: 1.5rem 0;
}

.sharam-list li {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.6;
}

.list-icon {
    color: var(--accent-color);
    font-weight: bold;
}

/* Cards for Sharam Levels */
.level-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.level-card {
    background: #fdfaf6;
    padding: 2rem 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease;
}

.level-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.1);
}

.level-icon {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.level-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.level-card p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Trust highlight special block */
.trust-highlight {
    border-top: 4px solid var(--accent-color);
    background: linear-gradient(to bottom right, #ffffff, #fdfaf6);
}

.sharam-cta-container {
    margin-top: 4rem;
}

.btn-sharam-cta {
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-size: 1.5rem;
    padding: 1.5rem 3rem;
}

.btn-sharam-cta:hover {
    background-color: #e5c358;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1.25rem;
    }

    .nav-menu {
        width: 100%;
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        border: none;
        background: transparent;
        padding-top: 0.5rem;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .modern-hero {
        padding: 4rem 1.5rem;
    }

    .hero-flex {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hero-title, .siaud-title, .page-title {
        font-size: 2.5rem;
    }
    
    .form-card {
        padding: 2rem 1.5rem;
    }

    .trust-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .trust-title {
        font-size: 2.2rem;
    }

    .trust-body {
        font-size: 1.25rem;
    }

    .sharam-hero .page-title {
        font-size: 2.2rem;
    }

    .content-block {
        padding: 2rem 1.5rem;
    }
    
    .content-block h2 {
        font-size: 1.6rem;
    }

    /* Carousel Responsive Overrides */
    .carousel-outer {
        max-width: 100%;
    }
    .carousel-wrapper {
        -webkit-mask-image: none;
        mask-image: none;
        padding: 0;
    }
    .testimonial-card {
        width: 85vw; /* Fills screen leaving small margin */
        padding: 2rem 1.5rem;
    }

    /* Contact Page - Mobile Split Fix */
    .contact-unified-block {
        flex-direction: column;
    }

    .contact-split-page {
        padding: 2rem 1rem;
    }

    .contact-form-col {
        order: 1; /* Form first on mobile */
        padding: 2.5rem 1.5rem;
    }

    .contact-image-col {
        order: 2; /* Image second on mobile */
        height: 300px; /* Reduced height for better balance on small screens */
        width: 100%;
    }

    .compact-form-card {
        padding: 0;
    }

    .form-title-gold {
        font-size: 2rem;
    }
}

/* Footer Styles */
.site-footer {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 2rem;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-links a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

/* Terms Checkbox Styles */
.terms-checkbox-group {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.terms-checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin: 0;
}

.terms-label {
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
    cursor: pointer;
}

.terms-label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.terms-label a:hover {
    color: var(--teal-color);
}