* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

:root {
    --primary-color: #1B2A4A; /* Navy Blue */
    --secondary-color: #B8963E; /* Gold */
    --secondary-hover: #D4AF37; /* Lighter Gold */
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border-color: #E5E5E5;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* RTL Support */
html[dir="rtl"] {
    text-align: right;
}
html[dir="rtl"] .ms-auto { margin-right: auto !important; margin-left: 0 !important; }
html[dir="rtl"] .me-1 { margin-left: 0.25rem !important; margin-right: 0 !important; }
html[dir="rtl"] .me-2 { margin-left: 0.5rem !important; margin-right: 0 !important; }

/* Top Bar */
.top-bar {
    background-color: #111A2E;
    color: #fff;
    padding: 8px 0;
    font-size: 0.9rem;
}
.lang-link {
    color: #a0a0a0;
    margin: 0 5px;
    font-weight: 500;
}
.lang-link.active, .lang-link:hover {
    color: var(--secondary-color);
}
.top-bar-divider {
    color: #555;
    margin: 0 10px;
}
.top-bar-contact {
    color: #fff;
}
.top-bar-contact:hover {
    color: var(--secondary-color);
}
.top-bar-contact i {
    color: var(--secondary-color);
    margin-right: 5px;
}
html[dir="rtl"] .top-bar-contact i { margin-right: 0; margin-left: 5px; }

/* Navbar */
.navbar {
    background-color: rgba(248, 248, 248, 0.4);
    backdrop-filter: blur(5px);
    padding: 15px 0;
    transition: var(--transition);
    top: 0;
    transform: translateY(37px);
}
.navbar.scrolled {
    background-color: rgb(245,245,240);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 10px 0;
    transform: translateY(0);
}
.navbar-logo {
    height: 70px;
    transition: var(--transition);
}
.navbar-dark .navbar-nav .nav-link {
    color: rgb(11,21,40);
    font-weight: 500;
    padding: 8px 15px;
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--secondary-color);
}
.btn-gold {
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
}
.btn-gold:hover {
    background-color: var(--secondary-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(184, 150, 62, 0.4);
}
.btn-outline-gold {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
}
.btn-outline-gold:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: linear-gradient(to bottom, rgba(255,255,255,0.15) 0%, rgba(240,235,220,0.5) 60%, rgba(240, 238, 234, 0.5) 100%), url('../images/hero-bg-light.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: var(--primary-color);
    text-align: left;
    padding-top: 80px;
}
.hero-title {
    font-size: 3.8rem;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 0.5s;
    max-width: 600px;
    line-height: 1.15;
}
.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 35px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 0.8s;
    max-width: 500px;
    color: 2f2b2b;
}
.hero-btns {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 1.1s;
}

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

/* Section Common */
.section-padding {
    padding: 50px 0;
}
.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 0.95rem;
}

/* Services */
.section-padding.bg-light {
    background-color: #fff !important;
   
}
.service-card {
    background: #f5f5f0;
    border-radius: 12px;
    padding: 55px 24px 30px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.04);
    transition: var(--transition);
    height: 100%;
    position: relative;
    margin-top: 40px;
    border: 1px solid rgba(0,0,0,0.04);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}
.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 30px;
    transition: var(--transition);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 6px 20px rgba(27,42,74,0.25);
}
.service-card:hover .service-icon {
    background: var(--secondary-color);
    color: #fff;
    box-shadow: 0 6px 20px rgba(184,150,62,0.35);
}
.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}
.service-card p {
    color: var(--text-light);
    margin-bottom: 18px;
    font-size: 0.9rem;
    line-height: 1.6;
}
.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.85rem;
}
.service-link i {
    color: var(--secondary-color);
    margin-left: 6px;
    transition: var(--transition);
    font-size: 0.8rem;
}
.service-link:hover {
    color: var(--secondary-color);
}
.service-link:hover i {
    transform: translateX(5px);
}

/* Features */
.features-section {
    background-color: #ffffff;
    padding: 30px 0 60px;
}
.features-box {
    background-color: #fdfaf4;
    border: 1px solid #eaddce;
    border-radius: 12px;
    padding: 30px 40px;
}
.feature-item {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 25px 0;
    border-bottom: 1px solid #eaddce;
}
.feature-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.feature-item:first-child {
    padding-top: 0;
}
.feature-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    color: var(--secondary-color);
    font-size: 26px;
}
.feature-icon .icon-text {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
}
.feature-icon i {
    line-height: 1;
}
html[dir="rtl"] .feature-icon { margin-right: 0; margin-left: 25px; }
.feature-content p {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Why Us & Form */
.why-us-section {
    background: linear-gradient(rgba(255,255,255,0.55), rgba(255,255,255,0.65)), url('../images/whyus-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.why-us-content {
    padding-right: 20px;
}
html[dir="rtl"] .why-us-content { padding-right: 0; padding-left: 20px; }
.why-us-content .section-label {
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}
.why-us-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}
.why-us-content > p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.7;
}
.why-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}
.why-list li {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: var(--text-color);
}
.why-list li i {
    color: var(--secondary-color);
    font-size: 18px;
    margin-right: 12px;
    min-width: 20px;
}
html[dir="rtl"] .why-list li i { margin-right: 0; margin-left: 12px; }
.why-us-btn {
    display: inline-block;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.why-us-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.request-form-card {
    background: var(--primary-color);
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 15px 50px rgba(27,42,74,0.2);
}
.request-form-card h3 {
    text-align: center;
    color: #fff;
    margin-bottom: 8px;
    font-size: 1.6rem;
}
.request-form-card .form-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 25px;
}
.request-form-card .form-control {
    padding: 13px 16px;
    background-color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: black;
}
.request-form-card .form-control::placeholder {
    color: black;
}
.request-form-card .form-control:focus {
    border-color: var(--secondary-color);
    background-color: rgba(255,255,255,0.15);
    box-shadow: 0 0 0 0.2rem rgba(184, 150, 62, 0.25);
    color: #fff;
}
.request-form-card .btn-gold {
    padding: 14px 28px;
    font-size: 0.95rem;
    border-radius: 8px;
    letter-spacing: 1px;
}
.form-control {
    padding: 12px 15px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 6px;
}
.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(184, 150, 62, 0.25);
}

/* Stats */
.stats-section {
    background-color: #fff;
    color: var(--primary-color);
    padding: 70px 0;
    border-top: 1px solid #eee;
}
.stat-item {
    text-align: center;
    padding: 20px;
}
.stat-icon {
    width: 70px;
    height: 70px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
    color: var(--secondary-color);
}
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-color);
}
.stat-text {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Blog */
.blog-card {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.blog-img {
    height: 240px;
    overflow: hidden;
}
.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-img img {
    transform: scale(1.05);
}
.blog-content {
    padding: 30px;
}
.blog-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.blog-desc {
    color: var(--text-light);
    margin-bottom: 20px;
}
.blog-link {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}
.blog-link i {
    margin-left: 8px;
    transition: var(--transition);
}
html[dir="rtl"] .blog-link i { margin-left: 0; margin-right: 8px; transform: scaleX(-1); }
.blog-link:hover {
    color: var(--primary-color);
}
.blog-link:hover i {
    transform: translateX(5px);
}
html[dir="rtl"] .blog-link:hover i { transform: translateX(-5px) scaleX(-1); }

/* Footer */
.footer {
    background-color: #111A2E;
    color: rgba(255,255,255,0.7);
}
.footer-top {
    padding: 80px 0 40px;
}
.footer-logo {
    height: 45px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}
.footer-desc {
    margin-bottom: 25px;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    color: #fff;
    margin-right: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}
html[dir="rtl"] .footer-social a { margin-right: 0; margin-left: 10px; }
.footer-social a:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
}
.footer-title {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 25px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 15px;
}
.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}
html[dir="rtl"] .footer-links a:hover { padding-left: 0; padding-right: 5px; }

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact li {
    display: flex;
    margin-bottom: 20px;
}
.footer-contact li i {
    color: var(--secondary-color);
    margin-top: 5px;
    margin-right: 15px;
    font-size: 1.1rem;
}
html[dir="rtl"] .footer-contact li i { margin-right: 0; margin-left: 15px; }
.footer-contact a:hover {
    color: var(--secondary-color);
}
.footer-bottom {
    background-color: #0B1221;
    padding: 25px 0;
    font-size: 0.9rem;
}
.footer-copyright {
    margin: 0;
}
.footer-legal {
    margin-left: 20px;
}
html[dir="rtl"] .footer-legal { margin-left: 0; margin-right: 20px; }
.footer-legal:hover {
    color: var(--secondary-color);
}

/* Floating Elements */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
html[dir="rtl"] .whatsapp-float { right: auto; left: 30px; }
.whatsapp-float:hover {
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0px 8px 25px rgba(37, 211, 102, 0.6);
}
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    cursor: pointer;
}
html[dir="rtl"] .back-to-top { right: auto; left: 30px; }
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background-color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 991px) {
    .navbar {
        background-color: rgba(248, 248, 248, 0.4) !important;
        top: 0;
        transform: translateY(0px) !important;
        padding: 10px 0 !important;
    }
    .navbar-logo {
        height: 50px;
        max-width: 150px;
    }
    .navbar.scrolled {
        transform: translateY(0px) !important;
        padding: 15px 0 !important;
    }
    .top-bar { display: none; }
    .hero {
        padding-top: 0 !important;
        text-align: center !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background-attachment: scroll !important; /* Fixed background causes issues on mobile */
    }
    .hero .container {
        width: 100%;
    }
    .hero .row {
        justify-content: center !important;
    }
    .hero-title {
        font-size: 2.2rem;
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
        word-wrap: break-word;
    }
    .hero-btns {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px;
    }
    .navbar-dark .navbar-nav .nav-link {
        color: var(--primary-color) !important;
        padding: 12px 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    .navbar-toggler {
        border-color: var(--primary-color);
        padding: 4px 8px;
        margin-right: 20px;
    }
    .navbar-toggler:focus {
        box-shadow: none;
    }
    .navbar-toggler-icon {
        filter: brightness(0);
    }
    .navbar-collapse {
        background-color: rgba(248, 248, 248, 0.4);
        padding: 0 10px 20px;
    }
    .nav-cta {
        margin-top: 15px;
        display: block;
        text-align: center;
    }
    .why-us-content {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .hero-title { font-size: 1.8rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-btns .btn {
        display: block;
        width: 100%;
        max-width: 280px;
        margin: 5px auto !important;
    }
    .section-padding { padding: 50px 0; }
    .stat-item { margin-bottom: 30px; }
    .footer-top { text-align: center; }
    .footer-social { justify-content: center; margin-bottom: 20px; }
    .footer-contact li { justify-content: center; }
    html[dir="rtl"] .footer-contact li i { margin-left: 10px; }
    .footer-bottom { text-align: center; }
    .footer-legal { margin: 5px 10px; display: inline-block; }
}

@media (max-width: 575px) {
    .hero-title { font-size: 1.8rem; }
    .hero-subtitle { font-size: 0.9rem; }
    .section-title h2 { font-size: 1.8rem; }
    .features-box { padding: 25px 20px; }
    .feature-icon { 
        width: 50px; 
        height: 50px; 
        min-width: 50px; 
        font-size: 20px; 
        margin-right: 15px;
    }
    .feature-content p { font-size: 0.95rem; }
    .page-hero h1 { font-size: 2rem; }
    .contact-form-card { padding: 25px 20px; }
}

/* ===== SUB-PAGE STYLES ===== */

/* Page Hero */
.page-hero {
    background: rgb(253,250,244);
    padding: 40px 0 20px;
    margin-top: 100px;
    color: #fff;
    text-align: center;
}
.page-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    animation: fadeUp 0.8s ease forwards;
    color: rgb(17,26,46);
}
.page-hero h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    margin: 20px auto;
    border-radius: 2px;
}
.page-hero p {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeUp 0.8s ease forwards 0.2s;
    opacity: 0;
    color: rgb(17,26,46);
}

/* Page Content */
.section-heading {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}
.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}
html[dir="rtl"] .section-heading::after { left: auto; right: 0; }
.page-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
}

/* Advantage Items */
.advantage-item {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 3px solid var(--secondary-color);
    transition: var(--transition);
}
html[dir="rtl"] .advantage-item { border-left: none; border-right: 3px solid var(--secondary-color); }
.advantage-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.advantage-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-right: 12px;
    min-width: 24px;
}
html[dir="rtl"] .advantage-item i { margin-right: 0; margin-left: 12px; }
.advantage-item span {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-color);
}

/* Mini Contact Form */
.mini-contact-card {
    background: var(--primary-color);
    border-radius: 12px;
    padding: 28px;
    position: sticky;
    top: 120px;
}
.mini-contact-header {
    text-align: center;
    margin-bottom: 20px;
}
.mini-contact-header i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    display: block;
}
.mini-contact-header h5 {
    color: #fff;
    font-size: 1.1rem;
    margin: 0;
}
.mini-contact-card .form-control-sm {
    padding: 10px 14px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.95);
    font-size: 0.85rem;
}
.mini-contact-card .btn-gold.btn-sm {
    padding: 10px 20px;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Service Detail Cards */
.service-detail-card {
    display: flex;
    align-items: flex-start;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.04);
}
.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.sdc-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 24px;
    margin-right: 20px;
}
html[dir="rtl"] .sdc-icon { margin-right: 0; margin-left: 20px; }
.sdc-content h3 {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}
.sdc-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 12px;
}
.sdc-link {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.85rem;
}
.sdc-link:hover { color: var(--primary-color); }
.sdc-link i { margin-left: 5px; transition: var(--transition); }
html[dir="rtl"] .sdc-link i { margin-left: 0; margin-right: 5px; }
.sdc-link:hover i { transform: translateX(5px); }

/* Contact Page */
.contact-form-card {
    background: #fff;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.contact-form-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.6rem;
}
.contact-info-list {
    list-style: none;
    padding: 0;
}
.contact-info-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}
.contact-info-list li i {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
}
html[dir="rtl"] .contact-info-list li i { margin-right: 0; margin-left: 15px; }
.contact-info-list li a { 
    color: inherit; 
    display: flex;
    align-items: flex-start;
    text-decoration: none;
    width: 100%;
}
.contact-info-list li a:hover { color: var(--secondary-color); }

/* Blog Date */
.blog-date {
    color: var(--text-light);
    font-size: 0.8rem;
}

/* Navbar Dropdown */
.dropdown-menu {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 8px 0;
    margin-top: 10px;
}
.dropdown-item {
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
}
.dropdown-item:hover {
    background: var(--bg-light);
    color: var(--secondary-color);
}
.dropdown-divider {
    margin: 4px 0;
}

/* Sub-page responsive */
@media (max-width: 991px) {
    .page-hero { padding: 20px 0 10px; }
    .page-hero h1 { font-size: 2.2rem; }
    .mini-contact-card { position: static; margin-top: 30px; }
    .navbar-dark .navbar-nav .nav-link { color: var(--primary-color) !important; }
    .dropdown-menu {
        background: transparent;
        border: none;
        box-shadow: none;
        padding-left: 15px;
    }
    .dropdown-item { color: var(--primary-color); }
    .dropdown-item:hover { background: transparent; color: var(--secondary-color); }
}
@media (max-width: 767px) {
    .page-hero h1 { font-size: 1.8rem; }
    .service-detail-card { flex-direction: column; text-align: center; }
    .sdc-icon { margin: 0 auto 15px; }
    html[dir="rtl"] .sdc-icon { margin: 0 auto 15px; }
    .advantage-item { font-size: 0.85rem; }
}
    .dropdown-item:hover { background: transparent; color: var(--secondary-color); }

