﻿/* ===================================================================
   مكتب المحامي رياض ناصر التركي - Professional Law Firm Design
   Premium Saudi Legal Practice Theme - Structural Overhaul
   =================================================================== */

/* ===== CSS Variables ===== */
:root {
    --primary: #0c1f3f;
    --primary-light: #162d54;
    --primary-dark: #060f1f;
    --gold: #b8964e;
    --gold-light: #d4b06a;
    --gold-dark: #9a7a3c;
    --dark: #0a0e17;
    --text: #3a3f4b;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --border: #e2e4e9;
    --bg: #fafafa;
    --bg-warm: #f8f7f4;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(12,31,63,0.06);
    --shadow: 0 4px 20px rgba(12,31,63,0.08);
    --shadow-lg: 0 10px 40px rgba(12,31,63,0.12);
    --shadow-xl: 0 20px 60px rgba(12,31,63,0.16);
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; scroll-padding-top:90px; overflow-x:hidden; width:100%; }
body {
    font-family:'Cairo',sans-serif;
    line-height:1.8;
    color:var(--text);
    background:var(--white);
    overflow-x:hidden;
    width:100%;
    max-width:100vw;
    -webkit-font-smoothing:antialiased;
}
img { max-width:100%; height:auto; }
a { text-decoration:none; transition:var(--transition); }
.container, .container-fluid { max-width:100%; overflow-x:hidden; }
.row { margin-left:0; margin-right:0; }

/* ===== Section Utilities ===== */
.section-padding { padding: 100px 0; }
.bg-light { background: var(--bg-warm) !important; }

.section-label {
    display: inline-block;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    position: relative;
    padding-right: 15px;
}
.section-label::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: var(--gold);
    border-radius: 2px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.title-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 1rem auto 1.5rem;
    border-radius: 2px;
}

/* ===== Navbar ===== */
.navbar {
    padding: 0.75rem 0;
    transition: var(--transition);
    background: transparent !important;
    backdrop-filter: none;
    border: none;
}
.navbar-logo {
    height: 55px;
    width: auto;
    transition: var(--transition);
}
.navbar.scrolled .navbar-logo {
    height: 45px;
}
.navbar.scrolled {
    background: rgba(12, 31, 63, 0.97) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
}
.navbar-brand {
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--white) !important;
    letter-spacing: 0.5px;
}
.navbar-brand .brand-highlight {
    color: var(--gold-light);
    font-weight: 900;
}
.nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1rem !important;
    position: relative;
    transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
    color: var(--gold-light) !important;
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
}
.navbar .btn-gold {
    background: var(--gold);
    color: var(--white);
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}
.navbar .btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(184,150,78,0.4);
}

/* ===== Buttons ===== */
.btn-primary {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    color: var(--white) !important;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.7rem 2rem;
    transition: var(--transition);
}
.btn-primary:hover {
    background: var(--gold-dark) !important;
    border-color: var(--gold-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184,150,78,0.35);
}
.btn-outline-primary {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.7rem 2rem;
    transition: var(--transition);
}
.btn-outline-primary:hover {
    background: var(--primary) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
}
.btn-outline-light {
    color: var(--white) !important;
    border-color: rgba(255,255,255,0.4) !important;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.7rem 2rem;
    transition: var(--transition);
}
.btn-outline-light:hover {
    background: var(--white) !important;
    color: var(--primary) !important;
    border-color: var(--white) !important;
}
.btn-gold {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    color: var(--white) !important;
    font-weight: 700;
    border-radius: 50px;
    padding: 0.75rem 2.5rem;
    transition: var(--transition);
}
.btn-gold:hover {
    background: var(--gold-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184,150,78,0.35);
    color: var(--white) !important;
}

/* ===== Animations ===== */
@keyframes fadeInUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInRight { from { opacity:0; transform:translateX(30px); } to { opacity:1; transform:translateX(0); } }
@keyframes fadeInLeft { from { opacity:0; transform:translateX(-30px); } to { opacity:1; transform:translateX(0); } }
@keyframes scaleIn { from { opacity:0; transform:scale(0.9); } to { opacity:1; transform:scale(1); } }
@keyframes heroZoom { from { transform:scale(1); } to { transform:scale(1.08); } }
@keyframes float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-10px); } }
@keyframes slideScroll { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }

.animate-fade-in { animation: fadeInUp 0.8s ease forwards; }
.animate-fade-in-delay { animation: fadeInUp 0.8s 0.2s ease both; }
.animate-fade-in-delay-2 { animation: fadeInUp 0.8s 0.4s ease both; }

.scroll-reveal { opacity:0; transform:translateY(40px); transition:all 0.7s cubic-bezier(0.4,0,0.2,1); }
.scroll-reveal.revealed { opacity:1; transform:translateY(0); }
.scroll-reveal-right { opacity:0; transform:translateX(40px); transition:all 0.7s cubic-bezier(0.4,0,0.2,1); }
.scroll-reveal-right.revealed { opacity:1; transform:translateX(0); }
.scroll-reveal-left { opacity:0; transform:translateX(-40px); transition:all 0.7s cubic-bezier(0.4,0,0.2,1); }
.scroll-reveal-left.revealed { opacity:1; transform:translateX(0); }
.scroll-reveal-scale { opacity:0; transform:scale(0.95); transition:all 0.7s cubic-bezier(0.4,0,0.2,1); }
.scroll-reveal-scale.revealed { opacity:1; transform:scale(1); }

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.hero-slide.active {
    opacity: 1;
    animation: heroZoom 12s ease forwards;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12,31,63,0.92) 0%, rgba(12,31,63,0.7) 50%, rgba(12,31,63,0.85) 100%);
    z-index: 1;
}
.hero-section .container {
    position: relative;
    z-index: 3;
}
.hero-content {
    padding-top: 100px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(184,150,78,0.12);
    border: 1px solid rgba(184,150,78,0.25);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.2rem;
}
.hero-title-accent {
    color: var(--gold-light);
    display: inline-block;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.9;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.hero-slider-dots {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}
.hero-slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition);
}
.hero-slider-dots .dot.active {
    background: var(--gold);
    box-shadow: 0 0 12px rgba(184,150,78,0.5);
    transform: scale(1.2);
}

/* Hero Trust Bar */
.hero-trust-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.25rem 0;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}
.trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(184,150,78,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.trust-text strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
}
.trust-text span {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
}

/* ===== About Section ===== */
.about-image-wrapper {
    position: relative;
    padding: 20px;
}
.about-main-image {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    object-fit: cover;
    min-height: 450px;
}
.about-experience-badge {
    position: absolute;
    bottom: -10px;
    left: -10px;
    background: var(--gold);
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 30px rgba(184,150,78,0.4);
    text-align: center;
    animation: float 4s ease-in-out infinite;
    z-index: 2;
}
.experience-number {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.25rem;
}
.experience-text {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.3;
    opacity: 0.9;
}
.about-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 80%;
    border: 3px solid var(--gold);
    border-radius: var(--radius-xl);
    opacity: 0.15;
    z-index: 0;
}
.about-content .section-title { margin-bottom: 0.75rem; }
.about-text {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 2rem;
}
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
.about-feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: var(--bg-warm);
    border-radius: var(--radius);
    transition: var(--transition);
}
.about-feature-item:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.about-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}
.about-feature-item h6 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.15rem;
    font-size: 0.9rem;
}
.about-feature-item p {
    margin: 0;
    font-size: 0.78rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ===== Statistics Section ===== */
.statistics-section {
    background: var(--primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.statistics-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b8964e' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}
.stat-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}
.stat-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
    border-color: rgba(184,150,78,0.3);
}
.stat-icon {
    font-size: 2rem;
    color: var(--gold-light);
    margin-bottom: 1rem;
    display: inline-flex;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(184,150,78,0.12);
}
.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label {
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    font-size: 0.95rem;
}

/* ===== Services Section ===== */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 0.5s ease;
}
.service-card:hover::before { width: 100%; }
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-icon {
    width: 65px;
    height: 65px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(184,150,78,0.1), rgba(184,150,78,0.05));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white);
    transform: scale(1.1);
}
.service-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}
.service-description {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.service-link {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}
.service-link:hover {
    color: var(--gold-dark);
    gap: 0.75rem;
}

/* ===== Process Section ===== */
.process-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}
.process-step {
    text-align: center;
    padding: 2.5rem 1.5rem;
    position: relative;
    border-radius: var(--radius-lg);
    background: var(--bg-warm);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}
.process-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(184,150,78,0.12);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Cairo', sans-serif;
}
.process-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
    transition: var(--transition);
}
.process-step:hover .process-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white);
    transform: scale(1.1);
}
.process-step h5 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}
.process-step p {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.7;
    margin: 0;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 70% 50%, rgba(184,150,78,0.08) 0%, transparent 60%);
}
.cta-content {
    position: relative;
    z-index: 1;
}
.cta-content h2 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.cta-content p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* ===== Testimonials Section ===== */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border);
    border-right: 4px solid var(--gold);
    transition: var(--transition);
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 4rem;
    color: rgba(184,150,78,0.1);
    font-family: Georgia, serif;
    line-height: 1;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    border-right-color: var(--gold);
}
.testimonial-rating {
    color: var(--gold);
    font-size: 0.9rem;
}
.testimonial-text {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}
.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.testimonial-author h6 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0;
    font-size: 0.95rem;
}
.testimonial-author small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ===== Clients Section ===== */
.clients-slider-wrapper {
    overflow: hidden;
    padding: 20px 0;
    position: relative;
}
.clients-slider-wrapper::before,
.clients-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.clients-slider-wrapper::before {
    right: 0;
    background: linear-gradient(to left, var(--bg-warm), transparent);
}
.clients-slider-wrapper::after {
    left: 0;
    background: linear-gradient(to right, var(--bg-warm), transparent);
}
.clients-slider {
    display: flex;
    gap: 3rem;
    animation: slideScroll 30s linear infinite;
    width: max-content;
}
.client-logo {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 90px;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
}
.client-logo:hover {
    box-shadow: var(--shadow);
    border-color: var(--gold);
    transform: translateY(-3px);
}
.client-logo img {
    max-height: 50px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}
.client-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* ===== Blog Cards ===== */
.blog-card-featured {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.blog-card-featured:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}
.blog-card-featured-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}
.blog-card-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.blog-card-featured:hover .blog-card-featured-image img {
    transform: scale(1.05);
}
.blog-card-featured-content {
    padding: 1.75rem;
}
.blog-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}
.blog-card-title a {
    color: var(--primary);
    transition: var(--transition);
}
.blog-card-title a:hover { color: var(--gold); }
.blog-category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}
.read-more-link {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}
.read-more-link:hover {
    color: var(--gold-dark);
    gap: 0.75rem;
}

.blog-card-side {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.blog-card-side:hover {
    box-shadow: var(--shadow);
    transform: translateX(-5px);
}
.blog-card-side-image {
    height: 100%;
    min-height: 140px;
    overflow: hidden;
}
.blog-card-side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-card-side-content {
    padding: 1.25rem;
}
.blog-card-side-content h5 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}
.blog-card-side-content h5 a {
    color: var(--primary);
    transition: var(--transition);
}
.blog-card-side-content h5 a:hover { color: var(--gold); }
.blog-mini-badge {
    display: inline-block;
    background: rgba(184,150,78,0.1);
    color: var(--gold-dark);
    padding: 0.15rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* ===== Careers / Benefits ===== */
.benefit-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--gold);
}
.benefit-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}
.benefit-card h6 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.benefit-card p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
}

.careers-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.careers-form-card h4 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-warm);
}

/* ===== Contact Section ===== */
.contact-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}
.contact-info-panel {
    background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 3rem;
    height: 100%;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.contact-info-panel::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -40%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(184,150,78,0.08) 0%, transparent 70%);
}
.contact-info-panel h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    position: relative;
}
.contact-info-panel p {
    color: rgba(255,255,255,0.65);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    position: relative;
}
.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}
.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.contact-info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: rgba(184,150,78,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 1rem;
}
.contact-info-item strong {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.1rem;
}
.contact-info-item span {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}
.contact-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 2.5rem;
    position: relative;
}
.contact-social a {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}
.contact-social a:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
    border-color: var(--gold);
}

.contact-form-panel {
    background: var(--white);
    padding: 3rem;
    height: 100%;
}
.contact-form-panel h4 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.contact-form-panel .form-control {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.85rem 1.1rem;
    font-size: 0.9rem;
    transition: var(--transition);
    background: var(--bg-warm);
}
.contact-form-panel .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(184,150,78,0.1);
    background: var(--white);
}

/* General Form Styles */
.form-control {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    transition: var(--transition);
}
.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(184,150,78,0.1);
}
.form-label { font-weight: 600; color: var(--primary); font-size: 0.9rem; }

/* ===== Footer ===== */
.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.7);
    padding-top: 0;
    position: relative;
}
.footer-gradient-border {
    height: 4px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
}
.footer-main {
    padding: 4rem 0 2rem;
}
.footer-brand {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}
.footer-brand .brand-gold { color: var(--gold-light); }
.footer-logo-link {
    display: inline-block;
    margin-bottom: 1rem;
}
.footer-logo {
    height: 60px;
    width: auto;
}
.footer-desc { font-size: 0.88rem; line-height: 1.8; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 8px;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: var(--transition);
}
.footer-social a:hover {
    background: var(--gold); color: var(--white);
    border-color: var(--gold); transform: translateY(-3px);
}
.footer-title {
    color: var(--white); font-weight: 700;
    font-size: 1rem; margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(184,150,78,0.3);
    display: inline-block;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
    color: rgba(255,255,255,0.6); font-size: 0.88rem;
    transition: var(--transition); display: inline-flex; align-items: center;
}
.footer-links a:hover { color: var(--gold-light); padding-right: 5px; }
.footer-links a i { margin-left: 0.5rem; font-size: 0.7rem; }
.footer-contact-item {
    display: flex; gap: 0.75rem; margin-bottom: 1rem; align-items: flex-start;
}
.footer-contact-icon {
    color: var(--gold-light); font-size: 0.9rem; margin-top: 5px; min-width: 20px; text-align: center;
}
.footer-contact-text { font-size: 0.88rem; line-height: 1.6; }
.footer-contact-text a { color: rgba(255,255,255,0.6); }
.footer-contact-text a:hover { color: var(--gold-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 0;
}
.footer-bottom-text { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin: 0; }

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
    color: white;
}

/* ===== Responsive ===== */
@media (max-width: 991.98px) {
    body, html { max-width:100vw; overflow-x:hidden; }
    .container { max-width:100%; overflow-x:hidden; }
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-content { padding-top: 120px; text-align: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-trust-bar { position: relative; }
    .trust-item { justify-content: center; margin-bottom: 1rem; }
    .section-title { font-size: 2rem; }
    .section-padding { padding: 70px 0; }
    .about-features { grid-template-columns: 1fr; }
    .about-experience-badge { bottom: 10px; left: 10px; padding: 1rem 1.5rem; }
    .experience-number { font-size: 2rem; }
    .about-image-wrapper { margin-bottom: 2rem; }
    .contact-info-panel { padding: 2rem; }
    .contact-form-panel { padding: 2rem; }
    .cta-section { text-align: center; }
    .cta-content h2 { font-size: 1.5rem; }
    .process-section { padding: 70px 0; }
    .statistics-section { padding: 60px 0; }
}

@media (max-width: 767.98px) {
    body, html { max-width:100vw; overflow-x:hidden; }
    .container { max-width:100%; overflow-x:hidden; }
    .navbar-logo { height: 45px; }
    .navbar.scrolled .navbar-logo { height: 38px; }
    .footer-logo { height: 50px; }
    .hero-title { font-size: 2rem; }
    .hero-badge { font-size: 0.78rem; padding: 0.4rem 1rem; }
    .hero-slider-dots { bottom: auto; top: auto; }
    .hero-trust-bar .col-md-4 { margin-bottom: 0.75rem; }
    .section-title { font-size: 1.7rem; }
    .section-padding { padding: 60px 0; }
    .stat-number { font-size: 2.2rem; }
    .stat-card { padding: 1.5rem 1rem; }
    .contact-wrapper { border-radius: var(--radius-lg); }
    .blog-card-featured-image { height: 200px; }
    .about-main-image { min-height: 300px; }
    .about-decoration { display: none; }
}

@media (max-width: 575.98px) {
    body, html { max-width:100vw; overflow-x:hidden; }
    .container { padding-left:15px; padding-right:15px; max-width:100%; }
    .row { margin-left:-15px; margin-right:-15px; }
    [class*="col-"] { padding-left:15px; padding-right:15px; }
    .hero-title { font-size: 1.7rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 100%; max-width:100%; }
    .trust-item { flex-direction: column; text-align: center; gap: 0.5rem; }
    .about-features { gap: 0.75rem; }
    .clients-slider-wrapper { overflow-x:hidden; max-width:100%; }
    .clients-slider { max-width:100%; }
    .client-logo { min-width:140px; }
    .about-feature-item { padding: 0.75rem; }
    .contact-info-panel, .contact-form-panel { padding: 1.5rem; }
}

/* ===== Blog Card (Legacy for blog listing pages) ===== */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.blog-card .blog-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.blog-card .blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

/* Phone Number */
.phone-number { direction: ltr; unicode-bidi: bidi-override; }
