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

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
}

html {
    scroll-behavior: smooth;
    background: transparent;
}

/* Remove forced transparency */

/* Color Variables - AL AKARIA Inspired Theme */
:root {
    /* Primary Colors - Dark Blue/Navy like AL AKARIA */
    --primary-dark: #1a365d;
    --primary-gray: #2d3748;
    --secondary-gray: #4a5568;
    --medium-gray: #718096;
    --light-gray: #f7fafc;
    --white: #ffffff;
    
    /* Background Colors - Cream/Off-white like AL AKARIA */
    --bg-primary: #fefefe;
    --bg-secondary: #fefcf8;
    --bg-cream: #fefcf8;
    
    /* Text Colors */
    --text-primary: #1a365d;
    --text-secondary: #2d3748;
    --text-light: #4a5568;
    --text-dark: #1a202c;
    
    /* Accent Colors - Mixed Beige and Logo Colors */
    --accent-gold: #a89078;
    --accent-beige: #c4a484;
    --accent-blue: #2b6cb0;
    --accent-green: #38a169;
    --accent-red: #e53e3e;
    --accent-mixed: #b39b87;
    
    /* Border Colors */
    --border-light: #e2e8f0;
    --border-medium: #cbd5e0;
    --border-dark: #a0aec0;
    
    /* Legacy support */
    --dark-gray: #2d3748;
    --shadow-light: rgba(0, 0, 0, 0.08);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-strong: rgba(0, 0, 0, 0.25);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1a365d 0%, #2b6cb0 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(26, 54, 93, 0.9) 0%, rgba(43, 108, 176, 0.8) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Background Image Container - Inside Hero Section */
.hero-section .background-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-section .background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Typography - AL AKARIA Style */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    display: none;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--primary-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Navigation */
.navbar {
    background: transparent;
    box-shadow: none;
    transition: all 0.4s ease;
    padding: 1.5rem 0;
    border-bottom: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.navbar .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo - أقصى اليمين */
.navbar-brand {
    flex-shrink: 0;
}

/* Left Section - كل الخانات في اليسار */
.navbar-left-section {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-direction: row-reverse;
}

/* Main Links */
.navbar-nav-main {
    display: flex;
    gap: 12px;
}

/* CTA Buttons */
.navbar-cta-buttons {
    display: flex;
    gap: 10px;
}

/* Hamburger في أقصى اليسار */
.hamburger-menu {
    flex-shrink: 0;
}

/* Navbar CTA Buttons Styles */
.btn-cta {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    border: 1px solid var(--border-light);
}

.btn-cta-primary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-light);
}

.btn-cta-primary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.navbar.scrolled .btn-cta-primary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
}

.navbar.scrolled .btn-cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
}

.navbar.scrolled .btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: fixed;
}


.navbar-brand {
    text-decoration: none;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo {
    height: 170px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(1.3) contrast(1.1) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

.navbar.scrolled .brand-logo {
    height: 120px;
    filter: brightness(1.1) contrast(1.05) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
}

.brand-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.3) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.navbar.scrolled .brand-logo:hover {
    filter: brightness(1.05) drop-shadow(0 3px 8px rgba(0, 0, 0, 0.2));
}

.navbar-nav .nav-link {
    color: var(--white);
    font-weight: 600;
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    background: rgba(52, 73, 94, 0.85);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.navbar-nav .nav-link:hover {
    color: var(--white);
    background: rgba(45, 52, 54, 0.95);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Links color when scrolled */
.navbar.scrolled .navbar-nav .nav-link {
    color: var(--primary-dark);
    background: rgba(99, 110, 114, 0.08);
    border-color: rgba(99, 110, 114, 0.2);
    text-shadow: none;
}

.navbar.scrolled .navbar-nav .nav-link:hover {
    color: var(--dark-gray);
    background: rgba(99, 110, 114, 0.15);
    border-color: rgba(99, 110, 114, 0.3);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar.scrolled .navbar-nav .nav-link::after {
    background: var(--primary-dark);
}

/* Hamburger Menu Button */
.hamburger-menu {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    z-index: 101;
}

.hamburger-menu:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.navbar.scrolled .hamburger-menu {
    background: rgba(26, 54, 93, 0.15);
    border-color: rgba(26, 54, 93, 0.4);
    backdrop-filter: blur(15px);
}

.navbar.scrolled .hamburger-menu:hover {
    background: rgba(26, 54, 93, 0.25);
    border-color: rgba(26, 54, 93, 0.6);
}

.navbar.scrolled .hamburger-line {
    background: var(--primary-dark);
}

/* Main Navigation Links Enhanced */
.navbar-nav-main .nav-item {
    list-style: none;
}

.navbar-nav-main .nav-link {
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: none;
    padding: 12px 24px;
    background: transparent;
    border-radius: 6px;
    border: 1px solid var(--border-light);
    text-shadow: none;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
    font-size: 1.05rem;
}

.navbar-nav-main .nav-link:hover {
    color: var(--white);
    background: var(--text-primary);
    border-color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.navbar.scrolled .navbar-nav-main .nav-link {
    color: var(--text-primary);
    background: transparent;
    border-color: var(--border-light);
    text-shadow: none;
}

.navbar.scrolled .navbar-nav-main .nav-link:hover {
    color: var(--white);
    background: var(--text-primary);
    border-color: var(--text-primary);
}

/* Hamburger Dropdown Menu */
.hamburger-dropdown {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    height: 100vh;
    background: linear-gradient(180deg, rgba(168, 144, 120, 0.98) 0%, rgba(139, 119, 101, 0.98) 30%, rgba(99, 110, 114, 0.98) 70%, rgba(45, 52, 54, 0.98) 100%);
    backdrop-filter: blur(20px);
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.5);
    transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    overflow-y: auto;
}

.hamburger-dropdown.active {
    left: 0;
}

.hamburger-dropdown-content {
    padding: 30px 25px;
    position: relative;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 2rem;
    transition: all 0.3s ease;
    line-height: 1;
}

.close-menu:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: rotate(90deg);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.hamburger-menu-list {
    list-style: none;
    padding: 0;
    margin: 80px 0 0 0;
}

.hamburger-menu-list li {
    margin-bottom: 10px;
}

.hamburger-menu-link {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    text-shadow: none;
}

.hamburger-menu-link:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.hamburger-menu-link span {
    margin-right: 15px;
}

/* Overlay for dropdown */
.hamburger-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .brand-logo {
        height: 140px;
    }
    
    .navbar.scrolled .brand-logo {
        height: 100px;
    }
    
    .navbar-left-section {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .brand-logo {
        height: 120px;
    }
    
    .navbar.scrolled .brand-logo {
        height: 90px;
    }
    
    .navbar-left-section {
        gap: 12px;
    }
    
    .navbar-nav-main {
        gap: 8px;
    }
    
    .navbar-nav-main .nav-link {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .btn-cta {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .hamburger-menu {
        width: 45px;
        height: 45px;
    }
    
    .hamburger-line {
        width: 24px;
    }
}

@media (max-width: 576px) {
    .brand-logo {
        height: 100px;
    }
    
    .navbar.scrolled .brand-logo {
        height: 80px;
    }
    
    .navbar-left-section {
        gap: 8px;
    }
    
    .navbar-nav-main {
        gap: 6px;
    }
    
    .navbar-nav-main .nav-link {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .btn-cta {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .hamburger-menu {
        width: 40px;
        height: 40px;
    }
    
    .hamburger-line {
        width: 22px;
    }
}

.footer {
    background: var(--text-primary);
    color: var(--white);
    font-family: 'Cairo', sans-serif;
    border-top: 1px solid var(--border-light);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.3);
  }
  
  .footer-text {
    margin: 0;
    font-size: 0.95rem;
    color: #cccccc;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
  }
  
  .footer-text:hover {
    color: #ffffff;
  }
  
/* Navbar Toggle Button */
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.15);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}

/* Toggle button when scrolled */
.navbar.scrolled .navbar-toggler {
    border-color: var(--primary-dark);
    background: rgba(99, 110, 114, 0.1);
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2845, 52, 54, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    filter: none;
}

/* Hero Section */
.hero-section {
    background: transparent;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 0;
}

/* Hero Section Short for other pages */
.hero-section-short {
    min-height: 60vh;
}

.hero-section-short .hero-content {
    margin-top: 100px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
    margin-top: 200px;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    letter-spacing: 1px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 3px 5px 15px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
}

.hero-tagline {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4b896;
    margin-bottom: 2rem;
    text-shadow: 2px 3px 10px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.5px;
}

.hero-description {
    font-size: 1.3rem;
    color: #f5f5f5;
    margin-bottom: 3rem;
    line-height: 2;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 3px 10px rgba(0, 0, 0, 0.6);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3rem;
}

/* Hero Buttons Enhanced */
.btn-hero {
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transition: transform 0.6s ease-out;
}

.btn-hero:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.btn-hero-primary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
}

.btn-hero-primary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px) scale(1.02);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px) scale(1.02);
}

/* Scroll Down Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: fadeInUp 1s ease-out 1s backwards;
}

.scroll-down {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    animation: bounce 2s infinite;
}

.scroll-down:hover {
    color: var(--accent-beige);
}

.scroll-down i {
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #a89078 0%, #8b7765 100%);
    color: var(--white);
    border-color: #8b7765;
    box-shadow: 0 5px 18px rgba(168, 144, 120, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(168, 144, 120, 0.45);
    color: var(--white);
    background: linear-gradient(135deg, #8b7765 0%, #a89078 100%);
}

.btn-outline-primary {
    background: transparent;
    color: #a89078;
    border-color: #a89078;
    border-width: 2px;
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, #a89078 0%, #8b7765 100%);
    color: var(--white);
    border-color: #8b7765;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(168, 144, 120, 0.4);
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--dark-gray);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
    border-color: var(--white);
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--bg-cream);
    position: relative;
}

.about-section .container {
    position: relative;
    z-index: 1;
    max-width: 100%;
    padding: 0;
}

/* Container for cards with video background */
.about-cards-container {
    position: relative;
    gap: 0 !important;
    box-shadow: none;
    border-radius: 0;
    overflow: hidden;
    max-width: 100%;
    width: 100%;
    min-height: 500px;
    margin: 0 !important;
}

/* Single Video Background for all cards */
.about-cards-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.about-section .col-lg-4 {
    padding: 0 !important;
    position: relative;
    z-index: 1;
}

.about-card {
    position: relative;
    overflow: visible;
    padding: 0;
    border-radius: 0;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: none;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.about-card:last-child {
    border-right: none;
}

/* Content overlay on video */
.about-card-content {
    position: relative;
    z-index: 1;
    padding: 2.5rem 2rem;
    background: none;
    backdrop-filter: none;
    border-radius: 0;
    margin: 0;
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-card:hover {
    transform: scale(1.05);
    z-index: 3;
}

.about-card:hover .about-card-content {
    transform: translateY(-5px);
}

/* Remove special background for Mission card - now whole section has background */

/* Card icons removed */

.about-card-content h4 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.8);
    text-align: center;
}

.about-card-content p {
    color: var(--white);
    line-height: 1.9;
    font-weight: 600;
    margin: 0;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.7);
    text-align: center;
    font-size: 1.05rem;
}

/* About Section Title & Subtitle */
.about-header-content {
    padding: 0 15px;
}

.about-section .section-title {
    font-weight: 800;
    background: linear-gradient(135deg, #a89078 0%, #8b7765 50%, #636e72 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-section .section-subtitle {
    font-weight: 600;
    color: #636e72;
}

/* About Card Icons */
.about-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-beige) 0%, var(--accent-mixed) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(196, 164, 132, 0.3);
    transition: var(--transition-smooth);
}

.about-card:hover .about-card-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 10px 25px rgba(196, 164, 132, 0.4);
}



/* Features Section */
.features-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.features-section .section-title {
    font-weight: 800;
    background: linear-gradient(135deg, #a89078 0%, #8b7765 50%, #636e72 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(254, 252, 248, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid rgba(196, 164, 132, 0.2);
    box-shadow: 0 8px 25px rgba(168, 144, 120, 0.15);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(168, 144, 120, 0.8) 0%, rgba(139, 119, 101, 0.8) 50%, rgba(99, 110, 114, 0.8) 100%);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(168, 144, 120, 0.25);
    border-color: rgba(168, 144, 120, 0.4);
}

.feature-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #a89078 0%, #8b7765 50%, #636e72 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.feature-item h5 {
    font-size: 1.4rem;
    color: #636e72;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-item p {
    color: #8b7765;
    line-height: 1.7;
    font-weight: 500;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: var(--bg-cream);
    position: relative;
    overflow: hidden;
}


.services-section .container {
    position: relative;
    z-index: 2;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.service-card::before {
    display: none;
}

.service-card.featured {
    transform: scale(1.02);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.service-header {
    margin-bottom: 1.5rem;
}

/* Service icons removed */

.services-section .section-title {
    color: var(--text-primary);
    text-shadow: none;
}

.services-section .section-subtitle {
    color: var(--text-secondary);
    text-shadow: none;
}

.service-header h4 {
    font-size: 1.3rem;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.3;
    text-shadow: none;
}

.service-title-section {
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: none;
}

.service-title-section h5 {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
    margin: 0;
    text-shadow: none;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-item {
    margin-bottom: 1rem;
}

/* Detail numbers removed */

.detail-content {
    flex: 1;
}

.detail-content h6 {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: none;
}

.detail-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
    text-shadow: none;
}

/* Operating Policy Section */
.operating-policy-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

.policy-list {
    display: grid;
    gap: 1.5rem;
}

.policy-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    transition: all 0.3s ease;
    border: 2px solid rgba(99, 110, 114, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.policy-item::before {
    display: none;
}

.policy-item:hover {
    transform: translateX(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.9);
}

/* Policy numbers removed */

.policy-content {
    flex: 1;
}

.policy-content p {
    color: var(--primary-gray);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
    font-weight: 500;
}

/* Units Section */
.units-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.unit-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid rgba(99, 110, 114, 0.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.unit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
}

.unit-image {
    height: 200px;
    background: transparent;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.unit-image::before {
    display: none;
}

.unit-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.unit-badge {
    background: #28a745;
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.unit-content {
    padding: 1.5rem;
}

.unit-content h5 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.unit-content p {
    color: var(--primary-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.unit-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.unit-features span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
    color: var(--primary-gray);
    background: var(--light-gray);
    padding: 5px 10px;
    border-radius: 15px;
}

.unit-features i {
    color: var(--primary-dark);
}

/* Units Tabs Navigation */
.units-tabs-nav {
    margin-bottom: 3rem;
}

.units-tabs-nav .nav-tabs {
    border: none;
    gap: 15px;
    flex-wrap: wrap;
}

.units-tabs-nav .nav-item {
    margin-bottom: 10px;
}

.units-tabs-nav .nav-link {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    padding: 12px 30px;
    color: var(--white);
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.units-tabs-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(196, 164, 132, 0.2), transparent);
    transition: left 0.5s ease;
}

.units-tabs-nav .nav-link:hover::before {
    left: 100%;
}

.units-tabs-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.units-tabs-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Units Tab Content */
.tab-content {
    animation: fadeIn 0.5s ease;
}

.tab-pane {
    animation: fadeInUp 0.5s ease;
}

/* Unit Card Enhanced */
.unit-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.unit-image {
    height: 280px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    position: relative;
}

.unit-card:hover .unit-image {
    transform: scale(1.1);
}

.unit-description {
    font-size: 0.95rem;
    color: var(--secondary-gray);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.unit-feature {
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
    color: var(--primary-dark);
    background: rgba(196, 164, 132, 0.12);
    padding: 8px 16px;
    border-radius: 18px;
    border: 2px solid rgba(196, 164, 132, 0.25);
    transition: var(--transition-smooth);
    font-weight: 600;
}

.unit-feature:hover {
    background: rgba(196, 164, 132, 0.2);
    border-color: var(--accent-beige);
    transform: translateY(-2px);
}

.unit-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(99, 110, 114, 0.1);
}

.btn-unit-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: linear-gradient(135deg, var(--accent-beige) 0%, var(--accent-mixed) 100%);
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 15px rgba(196, 164, 132, 0.3);
}

.btn-unit-contact:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px rgba(196, 164, 132, 0.4);
}

/* Premium Unit Badge */
.premium-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 3;
    background: linear-gradient(135deg, var(--accent-beige) 0%, var(--accent-mixed) 100%);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 5px 15px rgba(196, 164, 132, 0.4);
    animation: pulse 2s infinite;
}

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

.unit-card-premium {
    border-color: var(--accent-beige);
}

.btn-unit-contact-premium {
    background: linear-gradient(135deg, var(--accent-mixed) 0%, var(--accent-beige) 100%);
    box-shadow: 0 5px 15px rgba(196, 164, 132, 0.4);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--medium-gray);
}

.empty-state i {
    color: var(--light-gray);
    margin-bottom: 1rem;
}

.empty-state p {
    font-size: 1.1rem;
    color: var(--secondary-gray);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

.contact-info {
    padding: 2rem 0;
}

.contact-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    transition: all 0.3s ease;
    border: 2px solid rgba(99, 110, 114, 0.1);
}

.contact-item:hover {
    transform: translateX(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(196, 164, 132, 0.3);
}

.contact-details h5 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.contact-details p {
    color: var(--primary-gray);
    margin: 0;
    font-size: 1rem;
}

.contact-details a {
    color: var(--primary-gray);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-details a:hover {
    color: var(--accent-beige);
}

.social-media {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    text-align: center;
    border: 2px solid rgba(99, 110, 114, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.social-media h5 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    font-weight: 600;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border-radius: 15px;
    text-decoration: none;
    color: var(--primary-dark);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--shadow-light);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-medium);
    color: var(--primary-dark);
}

.social-link.whatsapp:hover {
    background: #25d366;
    color: var(--white);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

.social-link.tiktok:hover {
    background: #000000;
    color: var(--white);
}

.social-link.snapchat:hover {
    background: #fffc00;
    color: #000000;
}

.social-link.email:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.social-link i {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.social-link span {
    font-weight: 500;
}

/* Contact Form Styles */
.contact-form-wrapper,
.contact-info-wrapper {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 25px;
    border: 2px solid rgba(196, 164, 132, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-form-wrapper h4,
.contact-info-wrapper h4 {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.contact-form-wrapper h4::after,
.contact-info-wrapper h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-beige) 0%, var(--accent-mixed) 100%);
    border-radius: 3px;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group .form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(99, 110, 114, 0.2);
    border-radius: 15px;
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
    transition: var(--transition-smooth);
    background: rgba(255, 255, 255, 0.9);
}

.form-group .form-control:focus {
    outline: none;
    border-color: var(--accent-beige);
    box-shadow: 0 0 0 3px rgba(196, 164, 132, 0.1);
    background: var(--white);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
    padding: 14px 18px;
}

select.form-control {
    appearance: none;
    background-image: 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='%23636e72' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 15px center;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--accent-beige) 0%, var(--accent-mixed) 100%);
    color: var(--primary-dark);
    border: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 20px rgba(196, 164, 132, 0.35);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(196, 164, 132, 0.45);
}

.btn-submit:active {
    transform: translateY(-1px);
}

/* Contact Info Wrapper Enhanced */
.contact-info-wrapper .contact-info {
    padding: 0;
}

.contact-info-wrapper .contact-item {
    background: rgba(196, 164, 132, 0.08);
    border-color: rgba(196, 164, 132, 0.15);
}

.contact-info-wrapper .social-media {
    background: transparent;
    border: none;
    padding: 0;
    text-align: right;
}

.contact-info-wrapper .social-media h5 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.contact-info-wrapper .social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-info-wrapper .social-link {
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: rgba(196, 164, 132, 0.1);
    border: 2px solid rgba(196, 164, 132, 0.2);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary-dark);
    transition: var(--transition-smooth);
}

.contact-info-wrapper .social-link:hover {
    border-color: var(--accent-beige);
    transform: translateX(-5px);
    background: rgba(196, 164, 132, 0.2);
}

/* Social Link Colors */
.contact-info-wrapper .social-link.whatsapp {
    color: #25d366;
}

.contact-info-wrapper .social-link.whatsapp:hover {
    background: #25d366;
    color: var(--white);
}

.contact-info-wrapper .social-link.instagram {
    color: #e1306c;
}

.contact-info-wrapper .social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

.contact-info-wrapper .social-link.tiktok {
    color: #000000;
}

.contact-info-wrapper .social-link.tiktok:hover {
    background: #000000;
    color: var(--white);
}

.contact-info-wrapper .social-link.snapchat {
    color: #fffc00;
}

.contact-info-wrapper .social-link.snapchat:hover {
    background: #fffc00;
    color: #000000;
}

/* Footer Enhanced */
.footer {
    background: linear-gradient(135deg, rgba(45, 52, 54, 0.98) 0%, rgba(99, 110, 114, 0.95) 30%, rgba(139, 119, 101, 0.95) 70%, rgba(168, 144, 120, 0.98) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-beige) 0%, var(--accent-mixed) 50%, var(--accent-beige) 100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.footer-main {
    padding: 5rem 0 3rem;
}

.footer-section h5.footer-heading {
    color: var(--white);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-section h5.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-beige);
    border-radius: 3px;
}

.footer-brand-logo {
    max-width: 180px;
    height: auto;
    filter: brightness(1.2) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
    transition: var(--transition-smooth);
}

.footer-brand-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.3) drop-shadow(0 6px 15px rgba(0, 0, 0, 0.4));
}

.footer-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.footer-social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social-link {
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.footer-social-link:hover {
    background: var(--accent-beige);
    border-color: var(--accent-beige);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(196, 164, 132, 0.4);
    color: var(--primary-dark);
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    display: inline-block;
    position: relative;
    padding-right: 15px;
}

.footer-links a::before {
    content: '◂';
    position: absolute;
    right: 0;
    opacity: 0;
    transform: translateX(-5px);
    transition: var(--transition-smooth);
}

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

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

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

.footer-contact li {
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    padding-right: 10px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-contact a:hover {
    color: var(--accent-beige);
}

.footer-contact span {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-bottom-links a:hover {
    color: var(--accent-beige);
}

/* Company Info in Footer */
.company-info-section {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.company-info-title {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.company-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.company-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.company-info-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.info-label {
    color: var(--accent-beige);
    font-weight: 600;
    font-size: 0.9rem;
}

.info-value {
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
}

.footer-bottom-links .separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
}

.footer-text {
    margin: 0;
    color: var(--light-gray);
    font-size: 1.05rem;
    font-weight: 500;
}

/* Mobile Menu Style */
.navbar-collapse {
    background: rgba(45, 52, 54, 0.95);
    backdrop-filter: blur(20px);
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

@media (min-width: 992px) {
    .navbar-collapse {
        background: transparent;
        backdrop-filter: none;
        margin-top: 0;
        padding: 0;
        border-radius: 0;
        border: none;
        box-shadow: none;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .brand-logo {
        height: 55px;
    }
    
    .navbar.scrolled .brand-logo {
        height: 45px;
    }
    
    .navbar-nav .nav-link {
        margin: 8px 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-tagline {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        line-height: 1.8;
    }
    
    .hero-badge {
        font-size: 1rem;
        padding: 8px 20px;
    }
    
    .hero-content {
        margin-top: 120px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        flex-direction: column;
    }
    
    /* About Cards on Mobile */
    .about-cards-container {
        flex-direction: column;
        min-height: auto;
    }
    
    .about-section .col-lg-4 {
        padding: 0 !important;
        margin-bottom: 0 !important;
        width: 100%;
    }
    
    .about-card {
        border-radius: 0 !important;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        min-height: 300px;
    }
    
    .about-card:last-child {
        border-bottom: none;
    }
    
    .about-card-content {
        margin: 0;
        padding: 2rem 1.5rem;
    }
    
    .about-card-content h4 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .about-card-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    /* Modal Calendar Mobile */
    .modal-dialog {
        margin: 0.5rem;
        max-width: calc(100% - 1rem);
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .calendar-wrapper {
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 576px) {
    .brand-logo {
        height: 45px;
    }
    
    .navbar.scrolled .brand-logo {
        height: 38px;
    }
    
    .hero-badge {
        font-size: 0.9rem;
        padding: 6px 16px;
    }
    
    .hero-content {
        margin-top: 100px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-tagline {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .about-card,
    .service-card {
        padding: 1.5rem;
    }
    
    .unit-content {
        padding: 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    /* Calendar Grid for Small Phones */
    .calendar-grid {
        min-width: 250px !important;
        gap: 3px !important;
    }
    
    .modal-title {
        font-size: 1.1rem;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Custom AOS Animations */
[data-aos] {
    pointer-events: auto;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Enhanced hover animations */
.feature-item,
.service-card,
.unit-card,
.policy-item {
    will-change: transform;
}

/* Parallax effect for hero */
.hero-section {
    transform-style: preserve-3d;
}

/* Floating animation for scroll indicator */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.scroll-indicator {
    animation: float 3s ease-in-out infinite;
}

/* Pulse animation for CTA buttons */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
    }
}

.btn-hero-primary:hover,
.btn-hero-secondary:hover,
.btn-cta-primary:hover,
.btn-cta-secondary:hover,
.hamburger-menu:hover,
.hamburger-menu-link:hover,
.close-menu:hover {
    animation: pulse-glow 2s infinite;
}



/* Additional styles for dynamic units */
.badge-available {
    background: #28a745 !important;
}

.badge-rented {
    background: #dc3545 !important;
}

.unit-card[data-unit-id]:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(99, 110, 114, 0.35);
}

/* Modal styles */
.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
    background: var(--gradient-primary);
    color: white;
    border-radius: 20px 20px 0 0;
    padding: 1.5rem;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.modal-body {
    padding: 2rem;
}

/* Icons styling - تدرج البيج للجميع */
.fas, .far, .fa {
    color: inherit;
    background: linear-gradient(135deg, #a89078 0%, #8b7765 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 1px 2px rgba(168, 144, 120, 0.3));
}

/* أيقونات في التقويم */
.calendar-icon {
    background: linear-gradient(135deg, #a89078 0%, #8b7765 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 1px 2px rgba(168, 144, 120, 0.3));
}

/* أيقونات في الأزرار */
.btn .fas,
.btn .far,
.btn .fa {
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #a89078 0%, #8b7765 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-primary .fas,
.btn-primary .far,
.btn-primary .fa,
.btn[style*="background"] .fas,
.btn[style*="background"] .far,
.btn[style*="background"] .fa {
    background: transparent;
    -webkit-text-fill-color: white;
    color: white !important;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.btn:hover .fas,
.btn:hover .far,
.btn:hover .fa {
    transform: scale(1.1);
}

.btn-primary:hover .fas,
.btn-primary:hover .far,
.btn-primary:hover .fa {
    transform: scale(1.1);
}

/* أيقونات التصدير */
.export-icon,
.export-btn .fas,
.export-btn .far,
.export-btn .fa {
    background: linear-gradient(135deg, #a89078 0%, #8b7765 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.export-btn .fas,
.export-btn .far,
.export-btn .fa,
.export-btn {
    background: linear-gradient(135deg, #a89078 0%, #8b7765 100%);
    -webkit-text-fill-color: white;
    color: white !important;
}

.export-icon:hover {
    transform: scale(1.15);
}

/* أيقونات في الجداول */
.table-icon {
    background: linear-gradient(135deg, #a89078 0%, #8b7765 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.table-icon:hover {
    transform: scale(1.1);
}

/* أيقونات في الناف بار */
.navbar-nav .nav-link .fas,
.navbar-nav .nav-link .far {
    background: linear-gradient(135deg, #a89078 0%, #8b7765 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover .fas,
.navbar-nav .nav-link:hover .far {
    transform: translateX(-3px) scale(1.1);
}

/* أيقونات في الفوتر */
.footer .fas,
.footer .far {
    background: linear-gradient(135deg, #a89078 0%, #8b7765 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    filter: drop-shadow(0 1px 2px rgba(168, 144, 120, 0.4));
}

.footer .fas:hover,
.footer .far:hover {
    transform: translateY(-3px) scale(1.15);
}

/* أيقونات إيموجي في الأزرار - تدرج البيج */
button[style*="background"] .fas,
button[style*="background"] .far,
a[style*="background"] .fas,
a[style*="background"] .far {
    background: transparent !important;
    -webkit-text-fill-color: white !important;
    color: white !important;
}

