/* Modern Theme Overrides for Frame Construction */
/* User requested: Original colors, no orange, but modern clean shape */

:root {
    /* Reverting to Original/Neutral Colors */
    --ltn__primary-color: #0B2C3D;
    /* Dark Petrol/Navy */

    /* Secondary was orange/reddish. User wants NO orange. */
    --ltn__secondary-color: #5C727D;
    /* Neutral Gray-Blue */
    --ltn__accent-color: #C5A059;
    /* Optional Gold */

    /* Backgrounds */
    --body-bg: #FFFFFF;
    --card-bg: #FFFFFF;

    /* Typography */
    --ltn__heading-font: 'Outfit', sans-serif;
    --ltn__body-font: 'Inter', sans-serif;

    /* Shadows & Border Radius */
    --box-shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --box-shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.08);
    --border-radius-lg: 12px;
    --border-radius-md: 6px;
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@500;700;800&display=swap');

/* Base Styles */
body {
    background-color: var(--body-bg);
    color: #555;
    font-family: var(--ltn__body-font);
}

h1,
h2,
h3,
h4,
h5,
h6,
.ltn__heading-font {
    font-family: var(--ltn__heading-font);
    color: var(--ltn__primary-color);
    letter-spacing: 0;
}

/* Hero Section */
.ltn__slider-area::after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
}

/* Card Styling Modernization */
.ltn__feature-item,
.ltn__service-item,
.ltn__blog-item {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-soft);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.ltn__feature-item:hover,
.ltn__service-item:hover,
.ltn__blog-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
    border-color: transparent;
}

/* Button Modernization */
.btn {
    border-radius: 4px;
    box-shadow: none;
    font-weight: 600;
    font-family: var(--ltn__heading-font);
    padding: 14px 40px;
    border: none !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.theme-btn-1 {
    background-color: var(--ltn__primary-color);
    color: #fff;
}

.theme-btn-1:hover {
    background-color: #071c26;
    color: #fff;
    transform: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.theme-btn-2 {
    background-color: #f2f2f2;
    color: var(--ltn__primary-color);
}

.theme-btn-2:hover {
    background-color: var(--ltn__primary-color);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Section Header Improvements */
.section-title-area {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--ltn__primary-color);
    margin: 20px auto 0;
}

.section-subtitle {
    color: #777;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
}

/* Footer - Dark Neutral */
.ltn__footer-area {
    background-color: #081b24 !important;
    color: rgba(255, 255, 255, 0.7);
}

.footer-widget .footer-title {
    color: #fff;
    font-family: var(--ltn__heading-font);
    font-size: 18px;
    font-weight: 600;
}

.footer-menu ul li a {
    color: #aaa;
}

.footer-menu ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

/* Copyright Area */
.ltn__copyright-area {
    background-color: rgba(0, 0, 0, 0.3) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

/* =========================================
   HEADER VISIBILITY FIXES
   ========================================= */

/* Header - Dark Luxury Background */
.ltn__header-transparent {
    backdrop-filter: blur(10px);
    background: var(--ltn__primary-color);
    /* Dark Navy */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Header Menu Text - White */
.ltn__main-menu>ul>li>a {
    color: #fff !important;
}

.ltn__main-menu>ul>li>a:hover {
    color: var(--ltn__secondary-color) !important;
}

/* Logo Adjustment - Dark Logo on Dark Background Fix */
.site-logo img {
    filter: none;
    /* Remove filter that caused white block */
    background-color: #fff;
    /* White background to make dark logo visible */
    padding: 5px 10px;
    border-radius: 4px;
    height: 50px;
    /* Ensure consistent height */
    width: auto;
}

/* Map Visibility Force Fix */
#gmap,
.google-map {
    min-height: 500px !important;
    height: 500px !important;
    /* Force fixed height to prevent 0px collapse */
    width: 100% !important;
    background-color: #f2f5f8;
    /* Light gray placeholder background */
}

/* =========================================
   ARAB GATE SECTION REDESIGN
   ========================================= */
.product-features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.product-features-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--ltn__primary-color);
}

.product-features-list li::before {
    content: '✔';
    /* Or use an icon font code if available */
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--ltn__secondary-color);
    /* Accent color for bullet */
    font-weight: bold;
}

.product-features-list .sub-list {
    margin-top: 10px;
    margin-left: 10px;
    padding-left: 15px;
    border-left: 2px solid #ddd;
}

.product-features-list .sub-list li {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.product-features-list .sub-list li::before {
    content: '';
    /* Remove checkmark for sub items */
    width: 6px;
    height: 6px;
    background-color: var(--ltn__secondary-color);
    border-radius: 50%;
    top: 8px;
}

.arab-gate-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--ltn__primary-color);
}

.arab-gate-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--ltn__secondary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Arab Gate Image Polish */
.about-us-img-wrap img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Mobile Menu Toggle - Default White (for Dark Header) */
.ltn__utilize-toggle svg path {
    stroke: #fff;
    fill: #fff;
}

/* FIX: Mobile Menu Toggle - Dark on White Backgrounds (Sticky or Mobile) */
.ltn__header-sticky .ltn__utilize-toggle svg path,
@media (max-width: 991px) {
    .ltn__utilize-toggle svg path {
        stroke: var(--ltn__primary-color) !important;
        fill: var(--ltn__primary-color) !important;
    }

    /* Also ensure the header link colors are dark on mobile if background is white */
    .ltn__header-transparent .site-logo a {
        color: var(--ltn__primary-color) !important;
    }
}

/* Special Link (Get A Quote) - High Contrast */
.special-link a {
    background-color: var(--ltn__secondary-color) !important;
    /* Neutral Gray/Blue */
    color: #fff !important;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.special-link a:hover {
    background-color: #fff !important;
    color: var(--ltn__primary-color) !important;
}

/* Input Fields */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="submit"],
textarea {
    background-color: #f9f9f9;
    border: 1px solid #e1e1e1;
    border-radius: var(--border-radius-md);
    padding: 15px 20px;
}

input:focus,
textarea:focus {
    border-color: var(--ltn__primary-color);
    background-color: #fff;
    box-shadow: none;
}