:root {
    --primary: #f39c12; /* A premium golden-orange color */
    --primary-dark: #d68910;
    --secondary: #1e3a8a; /* Deep trust blue */
    --dark: #111827;
    --darker: #030712;
    --light: #f9fafb;
    --gray: #6b7280;
    --gray-light: #e5e7eb;
    --white: #ffffff;
    --font-main: 'Inter', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--light);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

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

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--darker);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1.5rem;
    color: var(--gray);
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #152c6b;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary);
    border-color: var(--secondary);
}

.btn-outline:hover {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.125rem;
}

/* Top Bar */
.top-bar {
    background-color: var(--white);
    color: var(--text-dark);
    font-size: 0.85rem;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-light);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left a, .top-bar-left span {
    color: #6b7280;
}
.top-bar-left i {
    color: #dfae74;
    margin-right: 5px;
}
.top-bar-left a:hover {
    color: #dfae74;
}

.top-bar-social {
    display: flex;
    gap: 15px;
}
.top-bar-social a {
    color: #6b7280;
}
.top-bar-social a:hover {
    color: #dfae74;
}

.btn-top-google {
    background-color: #dfae74;
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
}
.btn-top-google:hover {
    background-color: #c29562;
    color: var(--white);
}

/* ==========================================
   Google Sign-In / User Auth
   ========================================== */
#google-login-btn {
    position: relative;
    display: flex;
    align-items: center;
}
.g-signin-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border: 1.5px solid var(--gray-light);
    border-radius: 50px;
    background: var(--white);
    font-family: var(--font-main);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.g-signin-btn:hover {
    border-color: #4285F4;
    box-shadow: 0 4px 12px rgba(66,133,244,0.15);
    transform: translateY(-1px);
}
.g-user-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px 5px 6px;
    border: 1.5px solid var(--gray-light);
    border-radius: 50px;
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.g-user-badge:hover { border-color: #dfae74; }
.g-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #dfae74;
}
.g-username {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--dark);
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.g-user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 240px;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    padding: 16px;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
}
.g-user-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}
.g-user-info { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.g-user-info img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 2px solid #dfae74; flex-shrink: 0; }
.g-user-info strong { display: block; font-size: 0.9rem; color: var(--darker); font-weight: 700; }
.g-user-info span { font-size: 0.75rem; color: var(--gray); word-break: break-all; }
.g-divider { border: none; border-top: 1px solid var(--gray-light); margin: 12px 0; }
.g-signout-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border: none;
    border-radius: 8px;
    background: #fff1f0;
    color: #dc2626;
    font-family: var(--font-main);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.g-signout-btn:hover { background: #fee2e2; }

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.82) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    position: sticky;
    top: 0;
    z-index: 1005; /* Higher than overlay (998) so menu toggle stays clickable */
    padding: 15px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-icon i {
    font-size: 3rem;
    color: #f7d8b5;
}
.logo-text {
    display: flex;
    flex-direction: column;
}
.logo-main {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}
.logo-sub {
    font-size: 1.2rem;
    font-weight: 700;
    color: #dfae74;
    line-height: 1;
}
.logo-sub .black-text {
    color: var(--dark);
}
.logo-div {
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--dark);
    margin-top: 4px;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links a {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links a.active, .nav-links a:hover {
    color: #dfae74;
}

.nav-arrow {
    font-size: 0.7rem;
}

/* Navigation Dropdowns */
.nav-item-dropdown {
    position: relative;
    display: inline-block;
}

.nav-item-dropdown .dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--white);
    min-width: 220px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-radius: 6px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid var(--gray-light);
    z-index: 1000;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block !important;
    padding: 10px 20px !important;
    font-size: 0.9rem !important;
    font-weight: 550 !important;
    color: var(--dark) !important;
    transition: var(--transition) !important;
    border-bottom: 1px solid rgba(229, 231, 235, 0.3);
    text-align: left;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background-color: #fafbfc !important;
    color: var(--primary) !important;
    padding-left: 25px !important;
}

.lang-selector img {
    margin-right: 5px;
    width: 20px;
}

.btn-quote {
    background-color: #dfae74;
    color: var(--white);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
}
.btn-quote:hover {
    background-color: #c29562;
    color: var(--white);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 19px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1051;
    position: relative;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--dark);
    border-radius: 3px;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s ease, background-color 0.3s ease;
}

/* Hero Section */
.hero {
    background-color: #666666;
    padding: 80px 0;
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-subtitle {
    color: #dfae74;
    font-weight: 500;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.hero-title {
    color: var(--white);
    font-size: 2.5rem;
    line-height: 1.4;
    margin-bottom: 30px;
}

.underline-text {
    position: relative;
    display: inline-block;
}
.underline-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #dfae74;
}

.hero-desc {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.btn-hero-primary {
    background-color: #dfae74;
    color: var(--white);
    padding: 14px 30px;
    border-radius: 4px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}
.btn-hero-primary:hover {
    background-color: #c29562;
    color: var(--white);
}

.btn-hero-secondary {
    background-color: var(--white);
    color: var(--dark);
    padding: 14px 30px;
    border-radius: 4px;
    font-weight: 600;
}
.btn-hero-secondary:hover {
    background-color: #f1f1f1;
}

/* Quick Inquiry Form */
.quick-inquiry-form {
    background-color: #dea568;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.quick-inquiry-form h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.quick-inquiry-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row input, .select-wrapper {
    flex: 1;
}

.quick-inquiry-form input,
.quick-inquiry-form select,
.quick-inquiry-form textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 4px;
    color: var(--white);
    outline: none;
    font-family: inherit;
}

.quick-inquiry-form input::placeholder,
.quick-inquiry-form textarea::placeholder {
    color: rgba(255,255,255,0.8);
}

.quick-inquiry-form select {
    color: rgba(255,255,255,0.8);
    cursor: pointer;
}
.quick-inquiry-form select option {
    color: var(--dark);
}

.btn-submit {
    background-color: #e6c8a6;
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    transition: var(--transition);
}

.btn-submit:hover {
    background-color: #dfae74;
}

/* Main Info Section */
.main-info-section {
    background-color: var(--white);
    padding: 80px 0;
}

.info-top-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.info-left h2 {
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 20px;
}

.info-left p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.8;
}

.info-right {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.aramco-text {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.vendor-text {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 15px;
}

.aramco-logo img {
    max-width: 250px;
    object-fit: contain;
}

.info-middle {
    margin-bottom: 50px;
}

.info-middle h2 {
    font-size: 1.6rem;
    color: var(--black);
    margin-bottom: 25px;
}

.benefits-list {
    margin-bottom: 30px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.benefits-list i {
    color: #e27d35; /* Orange icon from screenshot */
    font-size: 1.3rem;
    margin-top: 2px;
}

.benefits-footer-text {
    text-align: center;
    color: var(--secondary);
    font-size: 1.05rem;
    margin-top: 40px;
}

.info-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.info-gallery img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.info-gallery img:hover {
    transform: scale(1.02);
    z-index: 10;
    box-shadow: var(--shadow);
}

/* Stats Section */
.stats {
    background-color: var(--white);
    padding: 60px 0;
    margin-top: -60px;
    position: relative;
    z-index: 20;
    box-shadow: var(--shadow);
    border-radius: 12px;
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-card h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-card p {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-features {
    margin-bottom: 30px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--dark);
}

.about-features i {
    color: var(--primary);
    font-size: 1.25rem;
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background-color: var(--gray-light);
    border-radius: 12px;
    box-shadow: var(--shadow);
    background-size: cover;
    background-position: center;
}

/* Products & Services Section */
.products-services {
    padding: 80px 0;
    background-color: var(--white);
}

.products-services-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.products-services-header h2 {
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.4;
}

.products-services-header p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 6px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 20px;
}

.service-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 4px;
}

.service-card p {
    color: var(--text-dark);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.btn-service {
    display: inline-block;
    background-color: #dfae74;
    color: var(--white);
    padding: 10px 0;
    width: 100%;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
}
.btn-service:hover {
    background-color: #c29562;
    color: var(--white);
}

.service-cta-box {
    background-color: #dfae74;
    border-radius: 6px;
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-cta-box h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 20px;
    line-height: 1.4;
}

.service-cta-box p {
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-service-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 12px 0;
    width: 100%;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-service-outline:hover {
    background-color: var(--white);
    color: #dfae74;
}

/* CTA Section */
.cta-section {
    background-color: var(--secondary);
    padding: 100px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 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="%23ffffff" fill-opacity="0.05"%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');
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    color: var(--gray-light);
    font-size: 1.25rem;
    margin-bottom: 40px;
}

/* Footer */
footer {
    background-color: var(--darker);
    color: var(--gray-light);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    display: block;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.25rem;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-info i {
    color: var(--primary);
    margin-top: 5px;
}

.footer-bottom {
    background-color: #000000;
    padding: 25px 0;
    text-align: center;
    font-size: 0.875rem;
}

.footer-bottom p {
    margin-bottom: 0;
}

/* ==========================================
   Client Reviews Section
   ========================================== */
.client-reviews-section {
    padding: 90px 0 70px;
    background: linear-gradient(135deg, #fafbfc 0%, #f3f4f6 100%);
    border-top: 1px solid var(--gray-light);
    position: relative;
    overflow: hidden;
}

/* Header */
.cr-header { text-align: center; margin-bottom: 50px; }
.cr-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(223, 174, 116, 0.12);
    color: #b48048;
    border: 1px solid rgba(223, 174, 116, 0.35);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}
.cr-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--darker);
    margin-bottom: 12px;
}
.cr-header p {
    color: var(--gray);
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto;
}

/* Reviews Grid */
.cr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 55px;
}
.cr-card {
    background: var(--white);
    border-radius: 16px;
    padding: 26px 24px;
    border: 1px solid rgba(229, 231, 235, 0.8);
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    animation: crFadeIn 0.4s ease both;
}
.cr-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    border-color: rgba(223,174,116,0.3);
}
@keyframes crFadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
.cr-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.cr-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.cr-meta { flex: 1; min-width: 0; }
.cr-meta strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--darker);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cr-meta span {
    font-size: 0.75rem;
    color: var(--gray);
}
.cr-stars { color: #f59e0b; font-size: 0.82rem; display: flex; gap: 2px; flex-shrink: 0; }
.cr-text {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.7;
    font-style: italic;
}
.cr-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px 20px;
    color: var(--gray);
}
.cr-empty i {
    font-size: 2.5rem;
    color: var(--gray-light);
    display: block;
    margin-bottom: 12px;
}

/* Submit Form */
.cr-form-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 44px;
    border: 1px solid rgba(229, 231, 235, 0.8);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    max-width: 750px;
    margin: 0 auto;
}
.cr-form-wrapper h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--darker);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cr-form-wrapper h3 i { color: #dfae74; }
.cr-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.cr-field { display: flex; flex-direction: column; gap: 8px; }
.cr-field label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--darker);
    letter-spacing: 0.3px;
}
.cr-field label span { color: #dfae74; }
.cr-field input[type="text"],
.cr-field textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--gray-light);
    border-radius: 10px;
    font-family: var(--font-main);
    font-size: 0.92rem;
    color: var(--dark);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    resize: vertical;
}
.cr-field input[type="text"]:focus,
.cr-field textarea:focus {
    border-color: #dfae74;
    box-shadow: 0 0 0 3px rgba(223, 174, 116, 0.15);
}

/* CSS Star rating input */
.cr-star-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 4px;
    padding: 10px 0;
}
.cr-star-input input[type="radio"] { display: none; }
.cr-star-input label {
    font-size: 1.7rem;
    color: #d1d5db;
    cursor: pointer;
    transition: color 0.15s ease, transform 0.15s ease;
    padding: 0 2px;
}
.cr-star-input input:checked ~ label,
.cr-star-input label:hover,
.cr-star-input label:hover ~ label {
    color: #f59e0b;
    transform: scale(1.15);
}

/* Submit button */
.cr-submit-btn {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 32px;
    background: linear-gradient(135deg, #dfae74, #c29562);
    color: var(--white);
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(223, 174, 116, 0.35);
    letter-spacing: 0.3px;
}
.cr-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(223, 174, 116, 0.45);
}
.cr-submit-btn:active { transform: scale(0.98); }

/* Toast notification */
.cr-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: #030712;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 99999;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}
.cr-toast i { color: #22c55e; font-size: 1.1rem; }
.cr-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .cr-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .cr-grid { grid-template-columns: 1fr; }
    .cr-form-wrapper { padding: 28px 20px; }
    .cr-form-row { grid-template-columns: 1fr; }
    .cr-header h2 { font-size: 1.7rem; }
}

/* Nav Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(3, 7, 18, 0.4);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Floating Circular Action Buttons */
.floating-actions {
    display: contents;
}

.floating-btn {
    position: fixed;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    z-index: 995;
    cursor: pointer;
}

.whatsapp-float {
    background-color: #25D366;
    font-size: 1.8rem;
    bottom: 30px;
    right: 30px;
}
.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.call-float {
    background-color: #dfae74;
    font-size: 1.4rem;
    bottom: 30px;
    left: 30px;
}
.call-float:hover {
    background-color: #c29562;
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 6px 20px rgba(223, 174, 116, 0.3);
}

/* Adjust position if document is RTL */
body.rtl-mode .whatsapp-float {
    right: auto;
    left: 30px;
}
body.rtl-mode .call-float {
    left: auto;
    right: 30px;
}

/* By default, hide the mobile-only quote link inside nav on desktop */
.mobile-only-quote {
    display: none !important;
}

/* Google login inside mobile nav drawer — hidden on desktop */
.nav-google-mobile {
    display: none;
    width: 100%;
    position: relative;
}
/* Mobile sign-in button full width */
.g-signin-btn-mobile {
    width: 100%;
    justify-content: center;
    border-radius: 8px !important;
    padding: 11px 16px !important;
    font-size: 0.88rem !important;
    border-color: #dfae74 !important;
}
/* Mobile user badge full width */
.nav-google-mobile-inner {
    width: 100%;
    justify-content: center;
    border-radius: 8px !important;
    padding: 9px 16px !important;
}
/* Mobile dropdown opens upward inside drawer */
.g-user-dropdown-mobile {
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    border: 1px solid var(--gray-light) !important;
    border-radius: 10px !important;
    margin-top: 8px;
    width: 100% !important;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-actions {
        justify-content: center;
    }
    .info-top-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    .info-right {
        align-items: center;
        justify-content: center;
    }
    .about-content {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .info-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .logo-main { font-size: 1.3rem; }
    .logo-sub { font-size: 1rem; }
    .logo-div { font-size: 0.5rem; }
    .navbar .btn-quote {
        display: none;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .hero-actions a {
        width: 100%;
        justify-content: center;
    }
    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: var(--white) !important;
        padding: 80px 24px 40px;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        gap: 20px;
        transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        overflow-y: auto;
    }
    .nav-links a {
        justify-content: center;
        width: 100%;
    }
    .nav-item-dropdown {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .dropdown-trigger {
        justify-content: center;
        width: 100%;
    }
    body.rtl-mode .nav-links {
        right: auto;
        left: -300px;
        box-shadow: 5px 0 25px rgba(0, 0, 0, 0.15);
        border-left: none;
        border-right: none;
        transition: left 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    .nav-links.active {
        right: 0;
    }
    body.rtl-mode .nav-links.active {
        left: 0;
    }
    .menu-toggle {
        display: flex;
    }
    .top-bar {
        display: none;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .info-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    .image-placeholder {
        height: 300px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-col ul {
        padding: 0;
        list-style: none;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-col ul li a {
        text-align: center;
    }
    .footer-col ul li a:hover {
        padding-left: 0;
    }
    .footer-logo {
        text-align: center;
    }
    .social-links {
        justify-content: center;
    }
    .contact-info {
        padding: 0;
        width: 100%;
    }
    .contact-info li {
        justify-content: center;
        text-align: left;
    }
    .footer-col p {
        text-align: center;
    }
    
    /* Sliding dropdown animation on mobile */
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        max-height: 0;
        overflow: hidden;
        display: block !important;
        padding: 0 15px !important;
        margin-top: 0;
        transition: max-height 0.3s ease-out, opacity 0.3s ease, padding 0.3s ease !important;
        background-color: transparent !important;
        width: 100% !important;
    }
    .dropdown-menu a {
        border-bottom: none !important;
        padding: 8px 15px !important;
        justify-content: center !important;
        text-align: center !important;
    }
    .nav-item-dropdown.active .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 350px;
        padding: 8px 15px !important;
        margin-top: 5px;
    }
    
    /* Mobile-only quote button and floating actions padding adjustments */
    .mobile-only-quote {
        display: flex !important;
        background-color: #dfae74;
        color: var(--white) !important;
        padding: 12px 20px;
        border-radius: 4px;
        justify-content: center;
        align-items: center;
        font-weight: 700;
        margin-top: 15px;
        text-align: center;
        box-shadow: 0 4px 10px rgba(223, 174, 116, 0.2);
    }
    .mobile-only-quote:hover {
        background-color: #c29562;
    }

    /* Show Google login inside mobile nav drawer */
    .nav-google-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    /* Desktop google-login-btn hidden on mobile — shown in drawer instead */
    #google-login-btn {
        display: none !important;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
    .call-float {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    body.rtl-mode .whatsapp-float {
        right: auto;
        left: 20px;
    }
    body.rtl-mode .call-float {
        left: auto;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .logo-container {
        gap: 6px;
    }
    .logo-icon i {
        font-size: 1.6rem;
    }
    .logo-main {
        font-size: 1.15rem;
    }
    .logo-sub {
        font-size: 0.85rem;
    }
    .logo-div {
        display: none;
    }
    .hero-title {
        font-size: 1.8rem;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .info-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    .quick-inquiry-form {
        padding: 20px;
    }
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
}

/* ==========================================
   Where We Operate Section (#areas)
   ========================================== */
.areas-section {
    padding: 80px 0;
    background-color: #f6f7f9;
}

.areas-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: flex-start;
}

.areas-left {
    position: sticky;
    top: 100px;
}

.areas-left h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--darker);
    font-weight: 800;
}

.areas-left p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.map-container {
    background-color: transparent;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.saudi-map {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.05));
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.saudi-map:hover {
    transform: scale(1.03);
}

.areas-right {
    background: transparent;
}

.areas-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.areas-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.region-group h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--darker);
    margin-bottom: 10px;
    border-bottom: 1px solid var(--gray-light);
    padding-bottom: 6px;
    letter-spacing: 0.3px;
}

.region-group ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.region-group ul li {
    font-size: 0.9rem;
    font-style: italic;
    color: #4b5563;
    font-weight: 400;
    transition: var(--transition);
    cursor: default;
}

.region-group ul li:hover {
    color: var(--primary);
    padding-left: 3px;
}

/* ==========================================
   Our Clients Section
   ========================================== */
.clients-section {
    padding: 85px 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--gray-light);
}

.clients-logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
    align-items: center;
    justify-items: center;
    margin-top: 45px;
}

.client-logo-card {
    width: 100%;
    max-width: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    transition: var(--transition);
}

.client-logo-card svg {
    width: 100%;
    height: auto;
    max-height: 50px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.client-logo-card:hover svg {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.06);
}

/* ==========================================
   Reviews / Testimonials Section
   ========================================== */
.reviews-section {
    padding: 90px 0;
    background-color: #fafbfc;
}

.reviews-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    padding: 0 10px;
}

.reviews-wrapper {
    overflow: hidden;
    width: 100%;
}

.reviews-track {
    display: flex;
    gap: 30px;
    transition: transform 0.4s ease-in-out;
    width: 100%;
}

.review-slide {
    flex: 0 0 calc(33.333% - 20px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.review-card-body {
    background-color: var(--white);
    border: 1px solid rgba(229, 231, 235, 0.7);
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.review-slide:hover .review-card-body {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(223, 174, 116, 0.4);
}

.quote-icon {
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 2.2rem;
    color: rgba(229, 231, 235, 0.5);
    line-height: 1;
    pointer-events: none;
}

.review-stars {
    color: #ffb800;
    font-size: 0.95rem;
    margin-bottom: 18px;
    display: flex;
    gap: 2px;
}

.review-content {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 25px;
    font-weight: 450;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.google-logo {
    align-self: flex-end;
    margin-top: 10px;
}

.google-logo svg {
    display: block;
}

.review-author-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    padding-left: 10px;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.letter-avatar {
    text-transform: uppercase;
}

.green-avatar {
    background-color: #0f766e;
}

.blue-avatar {
    background-color: #1d4ed8;
}

.img-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details h4 {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--darker);
    margin-bottom: 2px;
    letter-spacing: 0.3px;
}

.author-details span {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 500;
}

.slider-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--gray-light);
    background-color: var(--white);
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    flex-shrink: 0;
}

.slider-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: scale(1.08);
    box-shadow: 0 4px 10px rgba(243, 156, 18, 0.3);
}

/* Section generic classes */
.text-center {
    text-align: center;
}

.section-title {
    font-size: 2.2rem;
    color: var(--darker);
    font-weight: 800;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .areas-left {
        position: relative;
        top: 0;
    }
    .areas-columns {
        grid-template-columns: repeat(3, 1fr);
    }
    .clients-logos-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    .review-slide {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .areas-columns {
        grid-template-columns: repeat(2, 1fr);
    }
    .clients-logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    .reviews-track {
        gap: 0;
    }
    .review-slide {
        flex: 0 0 100%;
        padding: 0 10px;
    }
    .reviews-slider-container {
        gap: 10px;
    }
    .slider-btn {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 480px) {
    .areas-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .clients-logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* RTL Mode Support */
body.rtl-mode {
    text-align: right;
}
body.rtl-mode .dropdown-menu a {
    text-align: right;
}
body.rtl-mode .dropdown-menu {
    left: auto;
    right: 50%;
    transform: translateX(50%) translateY(10px);
}
body.rtl-mode .nav-item-dropdown:hover .dropdown-menu {
    transform: translateX(50%) translateY(0);
}
body.rtl-mode .about-features li i {
    margin-right: 0;
    margin-left: 10px;
}
body.rtl-mode .footer-grid {
    direction: rtl;
}
body.rtl-mode .footer-col ul {
    padding-right: 0;
}
body.rtl-mode .contact-info li i {
    margin-right: 0;
    margin-left: 10px;
}
body.rtl-mode .top-bar-left i {
    margin-right: 0;
    margin-left: 5px;
}

