/* ========================================
   ASRA WEB - Dubai Premium Web Agency
   Custom Styles - Luxury Theme
======================================== */

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

/* CSS Variables */
:root {
    --primary-gold: #D4AF37;
    --primary-gold-light: #F4E4BA;
    --primary-gold-dark: #B8960C;
    --dark-navy: #0A1628;
    --dark-navy-light: #152238;
    --dark-navy-lighter: #1E3050;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --text-gray: #6C757D;
    --text-light: #B0B8C4;
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4E4BA 50%, #D4AF37 100%);
    --gradient-dark: linear-gradient(180deg, #0A1628 0%, #152238 100%);
    --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.3);
    --shadow-dark: 0 10px 40px rgba(10, 22, 40, 0.5);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --font-arabic: 'Tajawal', sans-serif;
}

/* RTL Support */
[dir="rtl"] {
    font-family: var(--font-arabic), sans-serif;
}

[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, 
[dir="rtl"] h4, [dir="rtl"] h5, [dir="rtl"] h6 {
    font-family: var(--font-arabic), sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-navy);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Selection */
::selection {
    background: var(--primary-gold);
    color: var(--dark-navy);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-navy);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 5px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

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

/* Utility Classes */
.text-gold { color: var(--primary-gold) !important; }
.bg-gold { background: var(--gradient-gold) !important; }
.bg-dark-navy { background-color: var(--dark-navy) !important; }
.bg-dark-light { background-color: var(--dark-navy-light) !important; }

/* Section Styles */
.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
}

.section-title p {
    max-width: 600px;
    margin: 20px auto 0;
}

/* Buttons */
.btn-gold {
    background: var(--gradient-gold);
    color: var(--dark-navy);
    padding: 14px 35px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
    color: var(--dark-navy);
}

.btn-outline-gold {
    background: transparent;
    color: var(--primary-gold);
    padding: 14px 35px;
    border: 2px solid var(--primary-gold);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline-gold:hover {
    background: var(--gradient-gold);
    color: var(--dark-navy);
    transform: translateY(-3px);
}

/* ========================================
   PRELOADER
======================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
    animation: pulse 1.5s ease-in-out infinite;
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: var(--dark-navy-lighter);
    border-radius: 3px;
    overflow: hidden;
}

.preloader-bar::after {
    content: '';
    display: block;
    width: 50%;
    height: 100%;
    background: var(--gradient-gold);
    animation: loading 1s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(300%); }
}

/* ========================================
   NAVBAR
======================================== */
.navbar {
    padding: 15px 0;
    transition: var(--transition);
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 9999;
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white) !important;
}

.navbar-brand span {
    color: var(--primary-gold);
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    padding: 10px 20px !important;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: calc(100% - 40px);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-gold) !important;
}

.navbar-toggler {
    border: none;
    padding: 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: none;
    position: relative;
    width: 30px;
    height: 2px;
    background: var(--primary-gold);
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: var(--primary-gold);
    left: 0;
}

.navbar-toggler-icon::before { top: -8px; }
.navbar-toggler-icon::after { top: 8px; }

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: 20px;
}

[dir="rtl"] .lang-switcher {
    margin-left: 0;
    margin-right: 20px;
}

.lang-btn {
    padding: 8px 15px;
    border: 1px solid var(--primary-gold);
    background: transparent;
    color: var(--primary-gold);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 5px;
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--primary-gold);
    color: var(--dark-navy);
}

/* Dropdown Menu */
.navbar-nav .dropdown-menu {
    background: #0A1628 !important;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 10px 0;
    min-width: 260px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 9999 !important;
    position: absolute !important;
}

.navbar-nav .dropdown-menu li {
    display: block !important;
    width: 100%;
}

.navbar-nav .dropdown-item {
    color: #FFFFFF !important;
    padding: 10px 20px;
    font-weight: 500;
    display: block !important;
    width: 100%;
}

.navbar-nav .dropdown-item i {
    color: #D4AF37;
    margin-right: 10px;
    width: 20px;
    display: inline-block;
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus {
    background: rgba(212, 175, 55, 0.15) !important;
    color: #D4AF37 !important;
}

.navbar-nav .dropdown-toggle::after {
    border: none;
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 8px;
    font-size: 0.8rem;
}

[dir="rtl"] .navbar-nav .dropdown-toggle::after {
    margin-left: 0;
    margin-right: 8px;
}

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

/* Desktop hover */
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover > .dropdown-menu {
        display: block;
    }
}

/* Blog Card Styles */
.blog-card {
    background: var(--dark-navy);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-gold);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

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

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

.blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-gold);
    color: var(--dark-navy);
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
}

[dir="rtl"] .blog-date {
    left: auto;
    right: 20px;
}

.blog-content {
    padding: 30px;
}

.blog-category {
    color: var(--primary-gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title a {
    color: var(--white);
    transition: var(--transition);
}

.blog-title a:hover {
    color: var(--primary-gold);
}

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

.blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--text-gray);
    font-size: 0.85rem;
}

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

.blog-meta i {
    color: var(--primary-gold);
}

.blog-read-more {
    color: var(--primary-gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}

.blog-read-more i {
    transition: var(--transition);
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

[dir="rtl"] .blog-read-more:hover i {
    transform: translateX(-5px);
}

/* Blog Detail Page */
.blog-detail-header {
    padding: 80px 0 60px;
    background: var(--gradient-dark);
    position: relative;
    z-index: 1;
}

.blog-detail-content {
    padding: 60px 0;
}

.blog-detail-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 25px;
}

.blog-detail-content h2, 
.blog-detail-content h3 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.blog-detail-content ul, 
.blog-detail-content ol {
    color: var(--text-light);
    margin-bottom: 25px;
    padding-left: 30px;
}

[dir="rtl"] .blog-detail-content ul,
[dir="rtl"] .blog-detail-content ol {
    padding-left: 0;
    padding-right: 30px;
}

.blog-detail-content li {
    margin-bottom: 10px;
}

/* Industries We Serve Section */
.industry-card {
    background: var(--dark-navy);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.industry-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-gold);
}

.industry-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.industry-card:hover .industry-icon {
    background: var(--gradient-gold);
}

.industry-icon i {
    font-size: 2rem;
    color: var(--primary-gold);
    transition: var(--transition);
}

.industry-card:hover .industry-icon i {
    color: var(--dark-navy);
}

.industry-card h4 {
    margin-bottom: 10px;
}

.industry-card p {
    font-size: 0.9rem;
    margin: 0;
}

a.industry-card {
    cursor: pointer;
}

a.industry-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-gold);
}

a.industry-card h4,
a.industry-card p {
    color: var(--white);
    transition: var(--transition);
}

a.industry-card:hover h4 {
    color: var(--primary-gold);
}

/* Emirate Buttons */
.btn-emirate {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #FFFFFF;
    padding: 12px 20px;
    border-radius: 50px;
    margin: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-emirate i {
    color: #D4AF37;
    margin-right: 8px;
}

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

.btn-emirate:hover {
    background: #D4AF37;
    color: #0A1628;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-emirate:hover i {
    color: #0A1628;
}

/* ========================================
   HERO SECTION
======================================== */
.hero-section {
    min-height: auto;
    padding: 80px 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-dark);
    z-index: 1;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(212, 175, 55, 0.05) 0%, transparent 30%);
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { left: 40%; animation-delay: 6s; }
.particle:nth-child(5) { left: 50%; animation-delay: 8s; }
.particle:nth-child(6) { left: 60%; animation-delay: 10s; }
.particle:nth-child(7) { left: 70%; animation-delay: 12s; }
.particle:nth-child(8) { left: 80%; animation-delay: 14s; }
.particle:nth-child(9) { left: 90%; animation-delay: 1s; }
.particle:nth-child(10) { left: 95%; animation-delay: 3s; }

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 10px 25px;
    border-radius: 50px;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease;
}

.hero-badge i {
    color: var(--primary-gold);
}

.hero-badge span {
    color: var(--primary-gold);
    font-weight: 500;
    font-size: 0.95rem;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-title .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 550px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 60px;
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 5px;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease 0.5s backwards;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-float-card {
    position: absolute;
    background: rgba(21, 34, 56, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 20px;
    border-radius: 15px;
    animation: floatCard 3s ease-in-out infinite;
}

.hero-float-card.card-1 {
    top: 20%;
    left: -30px;
}

.hero-float-card.card-2 {
    bottom: 20%;
    right: -30px;
    animation-delay: 1.5s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.float-card-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.float-card-icon i {
    font-size: 1.5rem;
    color: var(--dark-navy);
}

.float-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.float-card-text {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

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

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

/* ========================================
   SERVICES SECTION
======================================== */
.services-section {
    background: var(--dark-navy-light);
    position: relative;
}

.service-card {
    background: var(--dark-navy);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-gold);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient-gold);
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-gold);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: var(--dark-navy);
}

.service-card h4 {
    margin-bottom: 15px;
    transition: var(--transition);
}

.service-card:hover h4 {
    color: var(--primary-gold);
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link i {
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

[dir="rtl"] .service-link:hover i {
    transform: translateX(-5px);
}

/* ========================================
   ABOUT SECTION
======================================== */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-dark);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: var(--gradient-gold);
    padding: 25px 35px;
    border-radius: 15px;
    text-align: center;
}

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

.about-badge-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-navy);
    line-height: 1;
}

.about-badge-text {
    font-size: 0.9rem;
    color: var(--dark-navy);
    font-weight: 600;
}

.about-content {
    padding-left: 50px;
}

[dir="rtl"] .about-content {
    padding-left: 0;
    padding-right: 50px;
}

.about-subtitle {
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-title {
    margin-bottom: 25px;
}

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

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 35px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.about-feature span {
    font-weight: 500;
}

/* ========================================
   PORTFOLIO SECTION
======================================== */
.portfolio-section {
    background: var(--dark-navy-light);
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--white);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-gold);
    color: var(--dark-navy);
    border-color: transparent;
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
}

.portfolio-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 22, 40, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.1);
}

.portfolio-category {
    color: var(--primary-gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.portfolio-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.portfolio-link {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-navy);
    font-size: 1.2rem;
    transition: var(--transition);
}

.portfolio-link:hover {
    transform: scale(1.1);
    color: var(--dark-navy);
}

/* ========================================
   PRICING SECTION
======================================== */
.pricing-section {
    position: relative;
}

.pricing-card {
    background: var(--dark-navy-light);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: var(--primary-gold);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-gold);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-gold);
    color: var(--dark-navy);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

[dir="rtl"] .pricing-badge {
    right: auto;
    left: 20px;
}

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

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

.pricing-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.pricing-icon i {
    font-size: 2rem;
    color: var(--primary-gold);
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.pricing-price {
    margin-bottom: 30px;
}

.pricing-currency {
    font-size: 1.5rem;
    color: var(--primary-gold);
    vertical-align: top;
}

.pricing-amount {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.pricing-period {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--primary-gold);
}

.pricing-features li.disabled {
    color: var(--text-gray);
    text-decoration: line-through;
}

.pricing-features li.disabled i {
    color: var(--text-gray);
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */
.testimonials-section {
    background: var(--dark-navy-light);
    position: relative;
}

.testimonial-card {
    background: var(--dark-navy);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin: 15px;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-gold);
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--primary-gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--text-light);
}

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

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-gold);
}

.testimonial-info h5 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.testimonial-info span {
    color: var(--primary-gold);
    font-size: 0.9rem;
}

.testimonial-rating {
    margin-left: auto;
    color: var(--primary-gold);
}

[dir="rtl"] .testimonial-rating {
    margin-left: 0;
    margin-right: auto;
}

/* ========================================
   CONTACT SECTION
======================================== */
.contact-section {
    position: relative;
}

.contact-info-card {
    background: var(--dark-navy-light);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 1.5rem;
    color: var(--primary-gold);
}

.contact-info-content h5 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-info-content p {
    margin: 0;
    color: var(--text-light);
}

.contact-info-content a {
    color: var(--text-light);
    transition: var(--transition);
}

.contact-info-content a:hover {
    color: var(--primary-gold);
}

.contact-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-social a {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.2rem;
    transition: var(--transition);
}

.contact-social a:hover {
    background: var(--gradient-gold);
    color: var(--dark-navy);
    transform: translateY(-5px);
}

.contact-form-card {
    background: var(--dark-navy-light);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    padding: 40px;
}

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

.form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--white);
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    background: var(--dark-navy);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-control::placeholder {
    color: var(--text-gray);
}

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

/* ========================================
   CTA SECTION
======================================== */
.cta-section {
    background: var(--gradient-gold);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230A1628' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.cta-content {
    position: relative;
    text-align: center;
}

.cta-title {
    color: var(--dark-navy);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-text {
    color: var(--dark-navy);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 30px;
}

.btn-dark {
    background: var(--dark-navy);
    color: var(--white);
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-dark:hover {
    background: var(--dark-navy-light);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-dark);
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: var(--dark-navy);
    padding-top: 80px;
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    display: inline-block;
}

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

.footer-about {
    color: var(--text-light);
    margin-bottom: 25px;
}

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

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gradient-gold);
    color: var(--dark-navy);
    transform: translateY(-5px);
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-gold);
}

[dir="rtl"] .footer-title::after {
    left: auto;
    right: 0;
}

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

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

.footer-links a {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 10px;
}

[dir="rtl"] .footer-links a:hover {
    padding-left: 0;
    padding-right: 10px;
}

.footer-links a i {
    font-size: 0.8rem;
    color: var(--primary-gold);
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-light);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    margin-top: 40px;
}

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

.footer-copyright {
    color: var(--text-light);
}

.footer-copyright a {
    color: var(--primary-gold);
}

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

.footer-bottom-links a {
    color: var(--text-light);
    font-size: 0.9rem;
}

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

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

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

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 5px 40px rgba(37, 211, 102, 0.6); }
}

/* Phone Float Button */
.phone-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-navy);
    font-size: 1.5rem;
    box-shadow: var(--shadow-gold);
    z-index: 1000;
    transition: var(--transition);
}

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

.phone-float:hover {
    transform: scale(1.1);
    color: var(--dark-navy);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--dark-navy-light);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.2rem;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

[dir="rtl"] .back-to-top {
    left: auto;
    right: 30px;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gradient-gold);
    color: var(--dark-navy);
    transform: translateY(-5px);
}

/* ========================================
   PAGE HEADER (Inner Pages)
======================================== */
.page-header {
    background: var(--gradient-dark);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
}

.page-header-content {
    position: relative;
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 15px;
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    color: var(--text-light);
}

.breadcrumb-item a {
    color: var(--primary-gold);
}

.breadcrumb-item.active {
    color: var(--white);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    color: var(--text-gray);
    padding-right: 15px;
}

[dir="rtl"] .breadcrumb-item + .breadcrumb-item::before {
    padding-right: 0;
    padding-left: 15px;
}

/* ========================================
   RESPONSIVE STYLES
======================================== */
@media (max-width: 1199px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    .hero-title { font-size: 3.5rem; }
}

@media (max-width: 991px) {
    .section-padding { padding: 80px 0; }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2.2rem; }
    
    .hero-title { font-size: 3rem; }
    .hero-stats { gap: 30px; }
    .stat-number { font-size: 2.5rem; }
    
    .navbar-collapse {
        background: var(--dark-navy);
        padding: 20px;
        border-radius: 15px;
        margin-top: 15px;
        border: 1px solid rgba(212, 175, 55, 0.1);
    }
    
    .lang-switcher {
        margin: 15px 0 0;
        justify-content: center;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 50px;
    }
    
    [dir="rtl"] .about-content {
        padding-right: 0;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .hero-image {
        margin-top: 50px;
    }
    
    .hero-float-card {
        display: none;
    }
}

@media (max-width: 767px) {
    .section-padding { padding: 60px 0; }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-section { padding-top: 100px; }
    .hero-title { font-size: 2.2rem; }
    .hero-description { font-size: 1rem; }
    .hero-buttons { flex-direction: column; }
    .hero-stats { flex-direction: column; gap: 20px; }
    
    .about-features { grid-template-columns: 1fr; }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .page-title { font-size: 2.5rem; }
    
    .cta-title { font-size: 2rem; }
    
    .pricing-amount { font-size: 3rem; }
}

@media (max-width: 575px) {
    .container { padding: 0 20px; }
    
    .service-card { padding: 30px 20px; }
    .pricing-card { padding: 40px 25px; }
    .contact-info-card, .contact-form-card { padding: 30px 20px; }
    
    .whatsapp-float, .phone-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .phone-float { bottom: 90px; }
}
