/* ===== AL AIN APPROVAL - MAIN STYLESHEET ===== */
/* UAE Flag Themed Professional Design */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
    /* Primary Colors */
    --uae-red: #CE1126;
    --uae-red-dark: #a60d1e;
    --uae-green: #007A5E;
    --uae-green-dark: #005A46;
    --uae-green-light: #00a67d;
    --uae-white: #FFFFFF;
    --uae-black: #000000;
    --uae-gold: #FDD835;
    
    /* Alias Colors */
    --primary: #CE1126;
    --primary-dark: #a60d1e;
    --accent: #007A5E;
    --accent-dark: #005A46;
    --gold: #FDD835;
    
    /* Neutrals */
    --dark: #0a0a0a;
    --light: #f8f9fa;
    --lighter: #fafcfb;
    --border: #e0e0e0;
    --border-light: #f0f0f0;
    
    /* Text Colors */
    --text: #1a1a1a;
    --text-light: #555;
    --text-muted: #888;
    --text-white: rgba(255, 255, 255, 0.9);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 25px 60px rgba(0, 0, 0, 0.15);
    --shadow-red: 0 10px 30px rgba(206, 17, 38, 0.2);
    --shadow-green: 0 10px 30px rgba(0, 122, 94, 0.2);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50px;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Container */
    --container-max: 1400px;
    --container-padding: 30px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--light);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

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

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

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

/* ===== SPLASH SCREEN ===== */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        var(--uae-green) 0%, 
        var(--uae-white) 25%, 
        var(--uae-black) 50%, 
        var(--uae-red) 75%, 
        var(--uae-gold) 100%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: fadeSplash 0.8s ease-in-out 3s forwards;
}

@keyframes fadeSplash {
    from { opacity: 1; visibility: visible; }
    to { opacity: 0; visibility: hidden; pointer-events: none; }
}

.splash-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    animation: splashPulse 2s ease-in-out infinite;
}

@keyframes splashPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.splash-logo-wrapper {
    width: 200px;
    height: 200px;
    background: white;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    animation: logoReveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 5px solid var(--uae-gold);
    padding: 20px;
}

@keyframes logoReveal {
    from { transform: scale(0.3) rotate(-15deg); opacity: 0; }
    to { transform: scale(1) rotate(0deg); opacity: 1; }
}

.splash-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.splash-text {
    color: white;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    animation: textReveal 0.8s ease 0.3s backwards;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
    font-family: 'Playfair Display', serif;
}

.splash-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    text-align: center;
    max-width: 400px;
    animation: textReveal 0.8s ease 0.5s backwards;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

@keyframes textReveal {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.loader {
    width: 120px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    animation: textReveal 0.8s ease 0.7s backwards;
}

.loader-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--uae-gold), var(--uae-red), var(--uae-green));
    border-radius: 10px;
    animation: loadFill 2.5s ease forwards;
}

@keyframes loadFill {
    from { width: 0%; }
    to { width: 100%; }
}

/* ===== UAE FLAG STRIPE ===== */
.uae-stripe {
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, 
        var(--uae-green) 0%, 
        var(--uae-white) 25%, 
        var(--uae-black) 50%, 
        var(--uae-red) 75%, 
        var(--uae-gold) 100%);
    position: sticky;
    top: 0;
    z-index: 1001;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--dark);
    color: white;
    padding: 10px 0;
    font-size: 13px;
}

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

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

.top-bar-left,
.top-bar-contact {
    display: flex;
    gap: 25px;
    align-items: center;
}

.top-bar-left a,
.top-bar-contact a,
.top-bar-contact span {
    color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    font-size: 13px;
}

.top-bar-left a:hover,
.top-bar-contact a:hover {
    color: var(--uae-gold);
}

.top-bar-right,
.top-bar-social {
    display: flex;
    gap: 12px;
    align-items: center;
}

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

.top-bar-social a:hover {
    background: var(--uae-red);
    transform: translateY(-2px);
}

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

.social-icon:hover {
    background: var(--uae-red);
    transform: translateY(-3px);
}

.social-icon.facebook:hover { background: #1877F2; }
.social-icon.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-icon.twitter:hover { background: #000; }
.social-icon.linkedin:hover { background: #0A66C2; }
.social-icon.youtube:hover { background: #FF0000; }

/* ===== HEADER ===== */
header,
.header {
    background: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--uae-red);
}

.header-container,
.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo-section,
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.logo-img {
    width: 70px;
    height: 70px;
    border-radius: var(--radius);
    background: white;
    padding: 5px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border);
    transition: var(--transition);
    object-fit: contain;
}

.logo-section:hover .logo-img,
.logo:hover .logo-img {
    transform: scale(1.05);
    border-color: var(--uae-red);
}

.logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text h1,
.logo-text .logo-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--uae-red);
    margin: 0;
    letter-spacing: 1px;
    display: block;
    font-family: 'Playfair Display', serif;
}

.logo-text p {
    font-size: 11px;
    color: var(--text-muted);
    margin: 3px 0 0 0;
    font-weight: 500;
}

/* Navigation Menu - Inline with header */
.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.nav-link {
    display: block;
    padding: 12px 20px;
    color: var(--text);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border-radius: 8px;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--uae-red);
    background: rgba(206, 17, 38, 0.05);
}

/* Header Actions */
.header-controls,
.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-shrink: 0;
}

/* Search Box */
.search-box {
    display: flex;
    align-items: center;
    background: var(--light);
    border: 2px solid var(--border);
    border-radius: 50px;
    overflow: hidden;
    transition: var(--transition);
}

.search-box input {
    border: none;
    background: transparent;
    padding: 10px 15px;
    font-size: 14px;
    width: 180px;
    outline: none;
    color: var(--text);
}

.search-box input::placeholder {
    color: var(--text-muted);
}

.search-box button {
    background: var(--uae-red);
    border: none;
    color: white;
    padding: 10px 15px;
    cursor: pointer;
    transition: var(--transition);
}

.search-box button:hover {
    background: var(--uae-green);
}

.search-box:focus-within {
    border-color: var(--uae-red);
    box-shadow: 0 0 0 4px rgba(206, 17, 38, 0.1);
}

/* Language Selector */
.language-selector {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border: 2px solid var(--border);
    border-radius: 8px;
    background: white;
    color: var(--text);
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
}

.lang-btn:hover {
    border-color: var(--uae-red);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 2px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    min-width: 140px;
    margin-top: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 100;
}

.language-selector:hover .lang-dropdown,
.lang-dropdown.show,
.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown a {
    display: block;
    padding: 10px 15px;
    color: var(--text);
    font-size: 14px;
    transition: var(--transition);
}

.lang-dropdown a:hover,
.lang-dropdown a.active {
    background: rgba(206, 17, 38, 0.05);
    color: var(--uae-red);
}

/* Select Language (Alternative Style) */
select.language-selector {
    padding: 10px 35px 10px 15px;
    border: 2px solid var(--border);
    border-radius: 8px;
    background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 12px center;
    background-size: 10px;
    color: var(--text);
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
}

select.language-selector:hover {
    border-color: var(--uae-red);
}

/* Mobile Menu Button */
.mobile-menu-btn,
.mobile-menu-toggle {
    display: none;
    background: none;
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 20px;
    cursor: pointer;
    color: var(--text);
    transition: var(--transition);
}

.mobile-menu-btn:hover,
.mobile-menu-toggle:hover {
    border-color: var(--uae-red);
    color: var(--uae-red);
}

.user-menu {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn {
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
}

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

.btn-primary:hover {
    background: var(--uae-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 122, 94, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--uae-red);
    border: 2px solid var(--uae-red);
}

.btn-secondary:hover {
    background: var(--uae-red);
    color: white;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--uae-red);
    border: 2px solid var(--uae-red);
}

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

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
}

/* ===== STANDALONE NAVIGATION (for index.html style) ===== */
header > nav {
    background: white;
    padding: 0;
    border-top: 1px solid var(--border);
}

header > nav ul {
    list-style: none;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    gap: 0;
}

header > nav a {
    color: var(--text);
    font-weight: 600;
    cursor: pointer;
    padding: 15px 25px;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    transition: var(--transition);
    display: block;
    font-size: 14px;
    letter-spacing: 0.5px;
}

header > nav a:hover, 
header > nav a.active {
    color: var(--uae-red);
    border-bottom-color: var(--uae-red);
    background: rgba(206, 17, 38, 0.03);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text);
    padding: 10px;
}

/* ===== MAIN CONTENT ===== */
main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.section {
    animation: fadeInSection 0.6s ease;
}

/* Section Padding Utility */
.section-padding {
    padding: 80px 0;
}

.section-padding-sm {
    padding: 50px 0;
}

.section-padding-lg {
    padding: 100px 0;
}

@keyframes fadeInSection {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #ffffff 0%, var(--light) 100%);
    padding: 80px 60px;
    margin: 40px 0;
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-left: 6px solid var(--uae-red);
    box-shadow: var(--shadow-lg);
}

.hero::before {
    content: '';
    position: absolute;
    right: -300px;
    top: -300px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(206, 17, 38, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: rotateGlow 30s linear infinite;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 52px;
    color: var(--text);
    margin-bottom: 25px;
    line-height: 1.15;
}

.hero-highlight {
    color: var(--uae-red);
    position: relative;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(253, 216, 53, 0.4);
    z-index: -1;
}

.hero p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

/* ===== STATS ===== */
.stats-container {
    background: white;
    padding: 50px;
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 60px 0;
    border: 2px solid var(--border);
    border-top: 5px solid var(--uae-red);
    box-shadow: var(--shadow);
}

.stat-item {
    text-align: center;
    padding: 20px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 2px;
    background: var(--border);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--uae-red);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    color: var(--text-light);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-size: 42px;
    color: var(--uae-red);
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--uae-green), var(--uae-red), var(--uae-gold));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    font-size: 17px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.service-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: center;
    border-top: 5px solid var(--uae-red);
}

.service-card:nth-child(2n) { border-top-color: var(--uae-green); }
.service-card:nth-child(3n) { border-top-color: var(--uae-gold); }

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--uae-red);
}

.service-icon {
    font-size: 60px;
    margin-bottom: 20px;
    display: block;
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--uae-red);
    margin-bottom: 15px;
}

.service-desc {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.7;
    min-height: 80px;
}

.service-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 14px;
    color: var(--text-muted);
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.service-btn {
    width: 100%;
    padding: 14px;
    background: var(--uae-green);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 15px;
    font-family: 'Poppins', sans-serif;
}

.service-btn:hover {
    background: var(--uae-red);
    transform: translateY(-2px);
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 5px solid var(--uae-red);
}

.feature-card:nth-child(2n) { border-left-color: var(--uae-green); }
.feature-card:nth-child(3n) { border-left-color: var(--uae-gold); }

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    font-size: 50px;
    margin-bottom: 20px;
    display: block;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--uae-red);
    margin-bottom: 15px;
}

.feature-desc {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose {
    background: linear-gradient(135deg, #ffffff 0%, var(--light) 100%);
    padding: 80px 60px;
    border-radius: var(--radius-lg);
    margin: 60px 0;
    border-right: 6px solid var(--uae-red);
    box-shadow: var(--shadow);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--uae-red), var(--dark));
    color: white;
    padding: 80px 60px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
    border: 4px solid var(--uae-gold);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    background: white;
    color: var(--uae-red);
    font-size: 16px;
    padding: 16px 40px;
}

.cta-section .btn:hover {
    background: var(--uae-gold);
    color: var(--dark);
    transform: translateY(-3px);
}

/* ===== BLOG CARDS ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin: 50px 0;
}

.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid var(--border);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--uae-red);
}

.blog-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--light), #e0e0e0);
}

.blog-content {
    padding: 30px;
}

.blog-category {
    display: inline-block;
    background: rgba(206, 17, 38, 0.1);
    color: var(--uae-red);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.blog-title {
    font-size: 22px;
    color: var(--text);
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title:hover {
    color: var(--uae-red);
}

.blog-excerpt {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-muted);
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--uae-red);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin: 50px 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background: white;
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border-left: 5px solid var(--uae-red);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.contact-card:nth-child(2) { border-left-color: var(--uae-green); }
.contact-card:nth-child(3) { border-left-color: var(--uae-gold); }

.contact-icon {
    font-size: 40px;
}

.contact-details h4 {
    font-size: 20px;
    color: var(--uae-red);
    margin-bottom: 10px;
}

.contact-details p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

.contact-details a {
    color: var(--uae-red);
    font-weight: 600;
}

.contact-details a:hover {
    color: var(--uae-green);
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border-top: 5px solid var(--uae-red);
}

.contact-form h3 {
    font-size: 28px;
    color: var(--uae-red);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: var(--transition);
    background: var(--light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--uae-red);
    box-shadow: 0 0 0 4px rgba(206, 17, 38, 0.1);
    background: white;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    background: var(--uae-red);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: var(--transition);
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.form-submit:hover {
    background: var(--uae-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 122, 94, 0.3);
}

/* ===== MAP ===== */
.map-container {
    margin: 50px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--border);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Location Address Card */
.location-address {
    margin: 30px 0;
    display: flex;
    justify-content: center;
}

.address-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(135deg, var(--uae-green), var(--uae-green-dark));
    color: white;
    padding: 30px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 500px;
}

.address-card i {
    font-size: 32px;
    color: var(--uae-gold);
    margin-top: 5px;
}

.address-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--uae-gold);
}

.address-card p {
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

.address-card p strong {
    font-size: 17px;
    color: white;
}

/* Map Info Section */
.map-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.map-info-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--uae-green);
    transition: var(--transition);
}

.map-info-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.map-info-item i {
    font-size: 24px;
    color: var(--uae-red);
    margin-top: 3px;
}

.map-info-item h4 {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 8px;
}

.map-info-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ===== ABOUT PAGE STYLES ===== */
.about-hero {
    background: linear-gradient(135deg, rgba(206, 17, 38, 0.05), rgba(0, 122, 94, 0.05));
    padding: 80px 60px;
    border-radius: var(--radius-lg);
    margin: 40px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 42px;
    color: var(--uae-red);
    margin-bottom: 25px;
}

.about-content p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.team-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.team-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--light), #ddd);
}

.team-info {
    padding: 30px;
}

.team-name {
    font-size: 22px;
    color: var(--text);
    margin-bottom: 5px;
}

.team-role {
    color: var(--uae-red);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-bio {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border-top: 5px solid var(--uae-gold);
    position: relative;
}

.testimonial-quote {
    font-size: 60px;
    color: var(--uae-gold);
    position: absolute;
    top: 20px;
    right: 30px;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--uae-red);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.testimonial-name {
    font-weight: 700;
    color: var(--text);
    margin-bottom: 3px;
}

.testimonial-role {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== OFFICIAL LINKS ===== */
.official-links {
    background: linear-gradient(135deg, var(--dark), #1a1a1a);
    color: white;
    padding: 80px 60px;
    border-radius: var(--radius-lg);
    margin: 60px 0;
    border-top: 5px solid var(--uae-red);
}

.official-links h2 {
    font-size: 36px;
    margin-bottom: 15px;
    text-align: center;
    color: var(--uae-gold);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.link-box {
    background: rgba(255, 255, 255, 0.08);
    padding: 35px;
    border-radius: var(--radius);
    border: 2px solid rgba(206, 17, 38, 0.3);
    transition: var(--transition);
}

.link-box:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--uae-gold);
    transform: translateY(-5px);
}

.link-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.link-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.link-desc {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 20px;
    line-height: 1.6;
}

.link-box a {
    color: var(--uae-gold);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.link-box a:hover {
    gap: 15px;
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark);
    color: white;
    padding: 80px 30px 30px;
    margin-top: 80px;
    border-top: 5px solid var(--uae-red);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

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

.footer-section h4 {
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 700;
    color: var(--uae-gold);
    font-family: 'Playfair Display', serif;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    font-size: 14px;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 12px;
    font-size: 14px;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--uae-gold);
    padding-left: 8px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: white;
    padding: 5px;
}

.footer-logo span {
    font-size: 22px;
    font-weight: 700;
    color: white;
    font-family: 'Playfair Display', serif;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
    margin-bottom: 0;
    padding: 0;
}

.footer-social a:hover {
    transform: translateY(-5px);
    padding: 0;
}

.footer-social a.facebook:hover { background: #1877F2; border-color: #1877F2; }
.footer-social a.instagram:hover { background: #E4405F; border-color: #E4405F; }
.footer-social a.twitter:hover { background: #000; border-color: #000; }
.footer-social a.linkedin:hover { background: #0A66C2; border-color: #0A66C2; }
.footer-social a.youtube:hover { background: #FF0000; border-color: #FF0000; }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
}

.footer-contact-item i {
    color: var(--uae-gold);
    font-size: 18px;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    display: inline;
    margin: 0;
    padding: 0;
}

.footer-bottom-links a:hover {
    color: var(--uae-gold);
    padding: 0;
}

/* ===== NEWSLETTER ===== */
.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--uae-gold);
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-form button {
    padding: 14px 25px;
    background: var(--uae-red);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--uae-gold);
    color: var(--dark);
}

/* ===== MODALS ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 50px;
    border-radius: var(--radius-lg);
    max-width: 550px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    position: relative;
    border-top: 5px solid var(--uae-red);
    animation: modalSlide 0.4s ease;
}

@keyframes modalSlide {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--uae-red);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 28px;
    color: var(--uae-red);
    margin-bottom: 30px;
    text-align: center;
}

/* ===== CHATBOT & WHATSAPP WIDGETS ===== */
.chat-widgets {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1500;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 25px rgba(206, 17, 38, 0.4);
    transition: var(--transition);
    font-size: 26px;
    color: white;
    background: var(--uae-red);
    border: none;
    animation: chatPulse 2s infinite;
}

.chat-toggle:hover {
    transform: scale(1.1);
    background: var(--uae-green);
    box-shadow: 0 10px 35px rgba(0, 122, 94, 0.4);
    animation: none;
}

/* Hide WhatsApp widget - already in footer */
.whatsapp-widget {
    display: none !important;
}

.chatbot-widget {
    background: var(--uae-red);
    animation: chatPulse 2s infinite;
}

@keyframes chatPulse {
    0%, 100% { box-shadow: 0 5px 25px rgba(206, 17, 38, 0.3); }
    50% { box-shadow: 0 5px 40px rgba(206, 17, 38, 0.5); }
}

.chatbot-widget:hover {
    box-shadow: 0 10px 35px rgba(206, 17, 38, 0.4);
    animation: none;
}

.chat-tooltip {
    position: absolute;
    right: 75px;
    background: var(--dark);
    color: white;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.chat-widget:hover .chat-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ===== CHATBOT WINDOW ===== */
.chatbot-window {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 380px;
    max-height: 500px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    z-index: 1500;
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 2px solid var(--border);
}

.chatbot-window.active {
    display: flex;
    animation: chatSlide 0.3s ease;
}

@keyframes chatSlide {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.chatbot-header {
    background: var(--uae-red);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h4 {
    font-size: 18px;
    font-weight: 600;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    max-height: 300px;
}

.chat-message {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.chat-message.bot {
    align-items: flex-start;
}

.chat-message.user {
    align-items: flex-end;
}

.chat-bubble {
    max-width: 85%;
    padding: 12px 18px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.5;
}

.bot .chat-bubble {
    background: var(--light);
    color: var(--text);
    border-bottom-left-radius: 5px;
}

.user .chat-bubble {
    background: var(--uae-red);
    color: white;
    border-bottom-right-radius: 5px;
}

.chatbot-input {
    display: flex;
    padding: 15px;
    border-top: 1px solid var(--border);
    gap: 10px;
}

.chatbot-input input {
    flex: 1;
    padding: 12px 18px;
    border: 2px solid var(--border);
    border-radius: 25px;
    font-size: 14px;
}

.chatbot-input input:focus {
    outline: none;
    border-color: var(--uae-red);
}

.chatbot-input button {
    padding: 12px 20px;
    background: var(--uae-red);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
}

.chatbot-input button:hover {
    background: var(--uae-green);
}

/* ===== ALERT MESSAGES ===== */
.alert-container {
    position: fixed;
    top: 100px;
    right: 30px;
    z-index: 2500;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.alert {
    padding: 18px 25px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    animation: alertSlide 0.4s ease;
    box-shadow: var(--shadow-lg);
    max-width: 400px;
}

@keyframes alertSlide {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-left: 5px solid #28a745;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border-left: 5px solid #dc3545;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border-left: 5px solid #17a2b8;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-section {
    background: var(--light);
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}

.breadcrumb {
    padding: 15px 0;
    font-size: 14px;
    color: var(--text-muted);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item::after {
    content: '/';
    margin-left: 10px;
    color: var(--text-muted);
}

.breadcrumb-item:last-child::after {
    display: none;
}

.breadcrumb-item.active {
    color: var(--uae-red);
    font-weight: 500;
}

.breadcrumb a,
.breadcrumb-item a {
    color: var(--text-muted);
    transition: var(--transition);
}

.breadcrumb a:hover,
.breadcrumb-item a:hover {
    color: var(--uae-red);
}

.breadcrumb span {
    margin: 0 10px;
}

/* ===== PAGE HEADERS ===== */
.page-header {
    background: linear-gradient(135deg, rgba(206, 17, 38, 0.08), rgba(0, 122, 94, 0.05));
    padding: 60px 30px;
    border-radius: var(--radius-lg);
    margin: 30px auto 50px;
    max-width: 1400px;
    text-align: center;
    border-bottom: 5px solid var(--uae-red);
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-header h1,
.page-title {
    font-size: 42px;
    color: var(--uae-red);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.page-header p,
.page-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 50px 0;
}

.pagination a,
.pagination span {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.pagination a:hover,
.pagination span.active {
    background: var(--uae-red);
    color: white;
    border-color: var(--uae-red);
}

/* ===== SHARE BUTTONS ===== */
.share-buttons {
    display: flex;
    gap: 12px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.share-btn {
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    color: white;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.share-btn.facebook { background: #1877F2; }
.share-btn.twitter { background: #000; }
.share-btn.linkedin { background: #0A66C2; }
.share-btn.whatsapp { background: #25D366; }
.share-btn.telegram { background: #0088cc; }
.share-btn.email { background: #EA4335; }
.share-btn.copy { background: #6c757d; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 50px 40px;
        gap: 40px;
    }
    
    .hero h1 {
        font-size: 42px;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-item:nth-child(2)::after {
        display: none;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .top-bar-left,
    .top-bar-contact {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .header-container,
    .header-content {
        flex-wrap: wrap;
        gap: 15px;
        padding: 15px 20px;
    }
    
    .logo-section,
    .logo {
        flex: 1 1 auto;
    }
    
    .logo-img {
        width: 55px;
        height: 55px;
    }
    
    .logo-text h1 {
        font-size: 18px;
    }
    
    .logo-text p {
        font-size: 10px;
    }
    
    /* Hide nav menu on mobile, show toggle */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border-top: 1px solid var(--border);
        box-shadow: var(--shadow);
        z-index: 100;
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-link {
        padding: 15px 20px;
        border-bottom: 1px solid var(--border);
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .header-controls,
    .header-actions {
        gap: 10px;
    }
    
    .search-box {
        display: none;
    }
    
    .user-menu {
        display: none;
    }
    
    select.language-selector {
        padding: 8px 30px 8px 12px;
        font-size: 12px;
    }
    
    header > nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    header > nav a {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .hero {
        padding: 40px 25px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    
    .stat-item::after {
        display: none;
    }
    
    .services-grid,
    .features-grid,
    .blog-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 50px 30px;
    }
    
    .cta-section h2 {
        font-size: 28px;
    }
    
    .official-links {
        padding: 50px 30px;
    }
    
    .why-choose {
        padding: 50px 30px;
    }
    
    .page-header {
        padding: 40px 25px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .modal-content {
        padding: 30px;
    }
    
    .chat-widgets {
        bottom: 20px;
        right: 20px;
    }
    
    .chatbot-window {
        width: calc(100% - 40px);
        right: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 15px;
    }
    
    .logo-text h1 {
        font-size: 20px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .share-buttons {
        justify-content: center;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .splash-screen,
    .chat-widgets,
    .chatbot-window,
    .top-bar,
    header,
    footer,
    .modal {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section-title,
    .feature-title,
    .service-title {
        color: black;
    }
}

/* ===== RTL SUPPORT ===== */
[dir="rtl"],
body.rtl {
    text-align: right;
}

[dir="rtl"] .header-container,
[dir="rtl"] .nav-list,
[dir="rtl"] .footer-grid {
    direction: rtl;
}

[dir="rtl"] .logo-section {
    flex-direction: row-reverse;
}

[dir="rtl"] .feature-card,
[dir="rtl"] .contact-card {
    border-left: none;
    border-right: 5px solid var(--uae-red);
}

[dir="rtl"] .hero {
    border-left: none;
    border-right: 6px solid var(--uae-red);
}

[dir="rtl"] nav a {
    border-bottom: none;
    border-top: 3px solid transparent;
}

[dir="rtl"] nav a:hover,
[dir="rtl"] nav a.active {
    border-top-color: var(--uae-red);
}

[dir="rtl"] .footer-contact-item i {
    margin-left: 10px;
    margin-right: 0;
}

[dir="rtl"] .breadcrumb-list {
    flex-direction: row-reverse;
}

[dir="rtl"] .service-card,
[dir="rtl"] .blog-card {
    text-align: right;
}

[dir="rtl"] .btn i {
    margin-left: 8px;
    margin-right: 0;
}

[dir="rtl"] .lang-dropdown {
    left: 0;
    right: auto;
}

[dir="rtl"] .search-box input {
    text-align: right;
    padding-left: 45px;
    padding-right: 15px;
}

[dir="rtl"] .fa-chevron-right:before {
    content: "\f053"; /* Change to chevron-left */
}

[dir="rtl"] .fa-arrow-right:before {
    content: "\f060"; /* Change to arrow-left */
}

/* RTL - Chat and Scroll Buttons */
[dir="rtl"] .chat-widget,
[dir="rtl"] .scroll-top,
[dir="rtl"] .whatsapp-float {
    right: auto;
    left: 30px;
}

[dir="rtl"] .chatbot-window {
    right: auto;
    left: 30px;
}

[dir="rtl"] .whatsapp-tooltip,
[dir="rtl"] .chat-tooltip {
    right: auto;
    left: 75px;
}

/* RTL - Footer */
[dir="rtl"] .footer-links a:hover,
[dir="rtl"] .footer-contact li {
    text-align: right;
}

/* RTL - Service Cards */
[dir="rtl"] .service-detail-card::before {
    left: auto;
    right: 0;
}

[dir="rtl"] .service-detail-card:hover {
    transform: translateX(-10px);
}

/* RTL - Contact Cards */
[dir="rtl"] .address-card {
    border-left: none;
    border-right: 5px solid var(--uae-red);
}

/* RTL - Blog */
[dir="rtl"] .read-more i {
    transform: rotate(180deg);
}

/* ===== SERVICES PAGE - ENHANCED INTERACTIVE STYLES ===== */

/* Services Introduction */
.services-intro {
    background: white;
    border-radius: var(--radius-lg);
    margin: 30px auto;
    max-width: 1400px;
}

.intro-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: start;
}

.intro-text h2 {
    font-size: 36px;
    color: var(--uae-red);
    margin-bottom: 25px;
}

.intro-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.intro-stats .stat-card {
    background: linear-gradient(135deg, var(--light), white);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    border: 2px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.intro-stats .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--uae-red), var(--uae-green));
}

.intro-stats .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--uae-red);
}

.intro-stats .stat-card i {
    font-size: 36px;
    color: var(--uae-red);
    margin-bottom: 15px;
    display: block;
}

.intro-stats .stat-card .stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--uae-green);
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

.intro-stats .stat-card .stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Section Header Styles */
.section-header {
    margin-bottom: 50px;
}

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

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--uae-red), var(--uae-red-dark));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.section-description {
    font-size: 16px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Background Light */
.bg-light {
    background: var(--light);
}

/* ===== SERVICE DETAIL CARDS - INTERACTIVE ===== */
.service-detail-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    align-items: start;
    border: 2px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--uae-red);
    transition: var(--transition);
}

.service-detail-card:nth-child(2n)::before {
    background: var(--uae-green);
}

.service-detail-card:nth-child(3n)::before {
    background: var(--uae-gold);
}

.service-detail-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(206, 17, 38, 0.02), transparent);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.service-detail-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--uae-red);
}

.service-detail-card:hover::after {
    opacity: 1;
}

.service-detail-card:hover::before {
    width: 8px;
}

.service-detail-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--uae-red), var(--uae-red-dark));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    transition: var(--transition);
    box-shadow: var(--shadow-red);
}

.service-detail-card:nth-child(2n) .service-detail-icon {
    background: linear-gradient(135deg, var(--uae-green), var(--uae-green-dark));
    box-shadow: var(--shadow-green);
}

.service-detail-card:nth-child(3n) .service-detail-icon {
    background: linear-gradient(135deg, var(--uae-gold), #e6c300);
    box-shadow: 0 10px 30px rgba(253, 216, 53, 0.3);
}

.service-detail-card:hover .service-detail-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-detail-content {
    position: relative;
    z-index: 1;
}

.service-detail-content h3 {
    font-size: 28px;
    color: var(--uae-red);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    transition: var(--transition);
}

.service-detail-card:hover .service-detail-content h3 {
    color: var(--uae-green);
}

.service-detail-content > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 15px;
}

/* Service Features List */
.service-features {
    background: linear-gradient(135deg, var(--light), rgba(206, 17, 38, 0.03));
    padding: 30px;
    border-radius: var(--radius);
    margin: 25px 0;
    border: 1px solid var(--border);
}

.service-features h4 {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.service-features ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: white;
    border-radius: 8px;
    font-size: 14px;
    color: var(--text);
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-features li:hover {
    background: var(--uae-green);
    color: white;
    transform: translateX(5px);
    border-color: var(--uae-green);
}

.service-features li i {
    color: var(--uae-green);
    font-size: 16px;
    transition: var(--transition);
}

.service-features li:hover i {
    color: white;
}

/* Service Meta Info */
.service-detail-card .service-meta {
    display: flex;
    gap: 30px;
    margin: 25px 0;
    padding: 20px 0;
    border-top: 1px dashed var(--border);
    border-bottom: 1px dashed var(--border);
    justify-content: flex-start;
}

.service-detail-card .service-meta span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
}

.service-price {
    color: var(--uae-green);
}

.service-price i {
    color: var(--uae-gold);
}

.service-duration {
    color: var(--text-light);
}

.service-duration i {
    color: var(--uae-red);
}

/* ===== PROCESS SECTION ===== */
.process-section {
    background: white;
    border-radius: var(--radius-lg);
    margin: 30px auto;
    max-width: 1400px;
}

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

.process-step {
    background: var(--light);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 2px solid var(--border);
}

.process-step::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -30px;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--uae-red), var(--uae-green));
    z-index: 1;
}

.process-step:nth-child(3n)::before {
    display: none;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: white;
    border-color: var(--uae-red);
}

.process-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--uae-red);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    box-shadow: var(--shadow-red);
}

.process-step:nth-child(2n) .process-number {
    background: var(--uae-green);
    box-shadow: var(--shadow-green);
}

.process-step:nth-child(3n) .process-number {
    background: var(--uae-gold);
    color: var(--dark);
    box-shadow: 0 5px 20px rgba(253, 216, 53, 0.4);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(206, 17, 38, 0.1), rgba(0, 122, 94, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 25px;
    font-size: 32px;
    color: var(--uae-red);
    transition: var(--transition);
}

.process-step:hover .process-icon {
    background: var(--uae-red);
    color: white;
    transform: scale(1.1);
}

.process-step h3 {
    font-size: 20px;
    color: var(--text);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.process-step p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}

/* ===== CTA SECTION ENHANCED ===== */
.cta-content {
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: var(--uae-red);
    padding: 16px 40px;
    font-weight: 600;
}

.btn-white:hover {
    background: var(--uae-gold);
    color: var(--dark);
    transform: translateY(-3px);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 16px 40px;
    font-weight: 600;
}

.btn-outline-white:hover {
    background: white;
    color: var(--uae-red);
    transform: translateY(-3px);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--uae-red);
    color: white;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0 5px 20px rgba(206, 17, 38, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.scroll-top.visible {
    display: flex;
}

.scroll-top:hover {
    background: var(--uae-green);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 122, 94, 0.4);
}

/* ===== FOOTER ENHANCED ===== */
.footer {
    background: var(--dark);
    color: white;
    padding: 80px 0 30px;
    margin-top: 80px;
    border-top: 5px solid var(--uae-red);
}

.footer-col h4 {
    color: var(--uae-gold);
    font-size: 20px;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    width: 70px;
    height: 70px;
    border-radius: var(--radius);
    background: white;
    padding: 8px;
}

.footer-about {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--uae-gold);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
}

.footer-contact li i {
    color: var(--uae-gold);
    font-size: 18px;
    margin-top: 3px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--uae-gold);
}

.footer-newsletter h5 {
    color: var(--uae-gold);
    font-size: 16px;
    margin-bottom: 15px;
}

/* ===== MODAL ENHANCED ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-container {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 2001;
    animation: modalSlide 0.4s ease;
}

.modal-header {
    padding: 25px 30px;
    background: linear-gradient(135deg, var(--uae-red), var(--uae-red-dark));
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 22px;
    font-family: 'Playfair Display', serif;
}

.modal-header .modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-header .modal-close:hover {
    background: white;
    color: var(--uae-red);
}

.modal-body {
    padding: 30px;
}

/* Application Form */
.application-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.application-form .form-group {
    margin-bottom: 20px;
}

.application-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
    font-size: 14px;
}

.application-form input,
.application-form textarea,
.application-form select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    transition: var(--transition);
    background: var(--light);
}

.application-form input:focus,
.application-form textarea:focus,
.application-form select:focus {
    outline: none;
    border-color: var(--uae-red);
    background: white;
    box-shadow: 0 0 0 4px rgba(206, 17, 38, 0.1);
}

.btn-block {
    width: 100%;
}

/* ===== RESPONSIVE UPDATES FOR SERVICES ===== */
@media (max-width: 1200px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .service-detail-card {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .service-detail-icon {
        margin: 0 auto;
    }

    .service-features ul {
        grid-template-columns: 1fr;
    }

    .service-detail-card .service-meta {
        justify-content: center;
    }

    .service-detail-card .btn {
        display: block;
        text-align: center;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step::before {
        display: none;
    }

    .intro-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-card {
        padding: 30px 25px;
    }

    .service-detail-content h3 {
        font-size: 24px;
    }

    .service-features {
        padding: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .application-form .form-row {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        bottom: 90px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .intro-stats {
        grid-template-columns: 1fr;
    }

    .intro-stats .stat-card {
        padding: 25px 20px;
    }

    .service-detail-icon {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

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

/* Contact Info Cards */
.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-info-cards .contact-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--border);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-info-cards .contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--uae-red) 0%, var(--uae-gold) 50%, var(--uae-green) 100%);
}

.contact-info-cards .contact-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--uae-green) 0%, var(--uae-red) 50%, var(--uae-gold) 100%);
}

.contact-info-cards .contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--uae-red);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
    background: linear-gradient(135deg, var(--uae-red), var(--uae-red-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
    transition: var(--transition);
    flex-shrink: 0;
}

.contact-info-cards .contact-card:nth-child(2) .contact-card-icon {
    background: linear-gradient(135deg, var(--uae-green), var(--uae-green-dark));
}

.contact-info-cards .contact-card:nth-child(3) .contact-card-icon {
    background: linear-gradient(135deg, var(--uae-gold), #e6c300);
}

.contact-info-cards .contact-card:nth-child(4) .contact-card-icon {
    background: linear-gradient(135deg, var(--uae-red), var(--uae-gold));
}

.contact-info-cards .contact-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-info-cards .contact-card h3 {
    font-size: 20px;
    color: var(--text);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    width: 100%;
}

.contact-info-cards .contact-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
    width: 100%;
}

.contact-info-cards .contact-card a {
    color: var(--uae-red);
    font-weight: 600;
    transition: var(--transition);
}

.contact-info-cards .contact-card a:hover {
    color: var(--uae-green);
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px 20px;
    background: var(--light);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--uae-red) !important;
    transition: var(--transition);
}

.contact-link:hover {
    background: var(--uae-red);
    color: white !important;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 2px solid var(--border);
    border-top: 5px solid var(--uae-red);
}

.contact-form-wrapper h2 {
    font-size: 28px;
    color: var(--uae-red);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.contact-form-wrapper > p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 15px;
}

/* Form Row */
.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Checkbox Styles */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-light);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--uae-red);
}

.checkbox-label a {
    color: var(--uae-red);
    font-weight: 600;
}

.checkbox-label a:hover {
    color: var(--uae-green);
}

/* File Input */
.form-group input[type="file"] {
    padding: 12px;
    background: var(--light);
    border: 2px dashed var(--border);
    cursor: pointer;
}

.form-group input[type="file"]:hover {
    border-color: var(--uae-red);
}

.form-group small {
    display: block;
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 12px;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--light);
}

.map-container {
    margin-bottom: 30px;
}

.map-container iframe {
    box-shadow: var(--shadow);
}

.location-address {
    margin-bottom: 30px;
}

.address-card {
    background: white;
    padding: 25px 30px;
    border-radius: var(--radius);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--uae-red);
}

.address-card i {
    font-size: 28px;
    color: var(--uae-red);
    margin-top: 5px;
}

.address-card h4 {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.address-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

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

.map-info-item {
    background: white;
    padding: 25px;
    border-radius: var(--radius);
    display: flex;
    gap: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid var(--border);
}

.map-info-item:hover {
    transform: translateY(-5px);
    border-color: var(--uae-red);
}

.map-info-item i {
    font-size: 24px;
    color: var(--uae-red);
    flex-shrink: 0;
}

.map-info-item:nth-child(2) i {
    color: var(--uae-green);
}

.map-info-item:nth-child(3) i {
    color: var(--uae-gold);
}

.map-info-item h4 {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.map-info-item p {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

.section-header.center {
    text-align: center;
    margin-bottom: 40px;
}

.section-header.center h2 {
    font-size: 36px;
    color: var(--uae-red);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.section-header.center p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--uae-red);
}

.faq-item.active {
    border-color: var(--uae-red);
    box-shadow: var(--shadow);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(206, 17, 38, 0.03);
}

.faq-question h3 {
    font-size: 16px;
    color: var(--text);
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.faq-question i {
    color: var(--uae-red);
    font-size: 14px;
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 25px;
}

.faq-answer p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* Quick Contact Section */
.quick-contact {
    padding: 80px 0;
    background: var(--light);
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.quick-contact-item {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--border);
    display: block;
}

.quick-contact-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.quick-contact-item i {
    font-size: 45px;
    margin-bottom: 20px;
    display: block;
    transition: var(--transition);
}

.quick-contact-item.whatsapp i { color: #25D366; }
.quick-contact-item.phone i { color: var(--uae-red); }
.quick-contact-item.email i { color: var(--uae-gold); }
.quick-contact-item.chat i { color: var(--uae-green); }

.quick-contact-item:hover i {
    transform: scale(1.2);
}

.quick-contact-item h3 {
    font-size: 20px;
    color: var(--text);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.quick-contact-item p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

.quick-contact-item.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
}

.quick-contact-item.phone:hover {
    background: var(--uae-red);
    border-color: var(--uae-red);
}

.quick-contact-item.email:hover {
    background: var(--uae-gold);
    border-color: var(--uae-gold);
}

.quick-contact-item.chat:hover {
    background: var(--uae-green);
    border-color: var(--uae-green);
}

.quick-contact-item:hover h3,
.quick-contact-item:hover p,
.quick-contact-item:hover i {
    color: white;
}

/* WhatsApp Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: var(--dark);
    color: white;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Chatbot Widget Styles */
.chatbot-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    background: var(--uae-red);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 26px;
    cursor: pointer;
    box-shadow: var(--shadow-red);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-toggle:hover {
    background: var(--uae-green);
    transform: scale(1.1);
}

/* Blog Page Styles */
.blog-section {
    background: var(--light);
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.category-btn {
    padding: 10px 20px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.category-btn:hover,
.category-btn.active {
    background: var(--uae-red);
    color: white;
    border-color: var(--uae-red);
}

/* Blog Card Enhanced */
.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid var(--border);
    margin-bottom: 30px;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--uae-red);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-image .blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--uae-red);
    color: white;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-card-content {
    padding: 25px;
}

.blog-card-content .blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-muted);
}

.blog-card-content .blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card-content h3 a {
    color: var(--text);
    transition: var(--transition);
}

.blog-card-content h3 a:hover {
    color: var(--uae-red);
}

.blog-card-content > p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.read-more {
    color: var(--uae-red);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--uae-green);
    gap: 12px;
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-share span {
    font-size: 13px;
    color: var(--text-muted);
}

.blog-share button {
    width: 32px;
    height: 32px;
    background: var(--light);
    border: none;
    border-radius: 50%;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.blog-share button:hover {
    background: var(--uae-red);
    color: white;
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination-btn {
    width: 45px;
    height: 45px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}

.pagination-btn:hover,
.pagination-btn.active {
    background: var(--uae-red);
    color: white;
    border-color: var(--uae-red);
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    padding: 25px;
    border-radius: var(--radius);
    margin-bottom: 25px;
    border: 2px solid var(--border);
}

.sidebar-widget h4 {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--uae-red);
    font-family: 'Playfair Display', serif;
}

.sidebar-search {
    display: flex;
    gap: 10px;
}

.sidebar-search input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
}

.sidebar-search input:focus {
    outline: none;
    border-color: var(--uae-red);
}

.sidebar-search button {
    padding: 12px 18px;
    background: var(--uae-red);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.sidebar-search button:hover {
    background: var(--uae-green);
}

.sidebar-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-categories li {
    margin-bottom: 12px;
}

.sidebar-categories a {
    display: flex;
    justify-content: space-between;
    color: var(--text-light);
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 8px;
    transition: var(--transition);
}

.sidebar-categories a:hover {
    background: var(--light);
    color: var(--uae-red);
}

.sidebar-categories span {
    color: var(--text-muted);
}

.sidebar-recent {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-recent li {
    margin-bottom: 15px;
}

.sidebar-recent a {
    display: flex;
    gap: 15px;
    color: var(--text);
    transition: var(--transition);
}

.sidebar-recent a:hover {
    color: var(--uae-red);
}

.sidebar-recent img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.recent-info h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.4;
}

.recent-info span {
    font-size: 12px;
    color: var(--text-muted);
}

.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sidebar-tags a {
    padding: 8px 15px;
    background: var(--light);
    border-radius: 50px;
    font-size: 13px;
    color: var(--text-light);
    transition: var(--transition);
}

.sidebar-tags a:hover {
    background: var(--uae-red);
    color: white;
}

.sidebar-newsletter {
    background: linear-gradient(135deg, var(--uae-red), var(--uae-red-dark));
    color: white;
}

.sidebar-newsletter h4 {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.sidebar-newsletter p {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.newsletter-form-sidebar input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 14px;
}

.newsletter-form-sidebar button {
    width: 100%;
    padding: 12px;
    background: white;
    color: var(--uae-red);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form-sidebar button:hover {
    background: var(--uae-gold);
    color: var(--dark);
}

.sidebar-contact {
    background: linear-gradient(135deg, var(--uae-green), var(--uae-green-dark));
    color: white;
}

.sidebar-contact h4 {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.sidebar-contact p {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.btn-success {
    background: #25D366;
    color: white;
}

.btn-success:hover {
    background: #128C7E;
}

/* Contact Page Responsive */
@media (max-width: 1200px) {
    .blog-layout {
        grid-template-columns: 1fr 300px;
    }

    .map-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .contact-section .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .sidebar-widget {
        margin-bottom: 0;
    }

    .map-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-info-cards {
        grid-template-columns: 1fr;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .quick-contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 30px 25px;
    }

    .faq-question h3 {
        font-size: 15px;
    }

    .blog-sidebar {
        grid-template-columns: 1fr;
    }

    .blog-categories {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-info-cards .contact-card {
        padding: 25px 20px;
    }

    .contact-card-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        min-height: 60px;
        font-size: 24px;
    }

    .quick-contact-item {
        padding: 30px 20px;
    }

    .quick-contact-item i {
        font-size: 36px;
    }
}
