/* Global Styles */
:root {
    /* Primary Colors */
    --primary-beige: #f5f0e6;     /* Soft beige background */
    --primary-gold: #c0a080;      /* Elegant gold accent */
    --dark-gray: #333333;         /* Dark gray for text */
    --light-beige: #f9f6f0;       /* Lighter beige for backgrounds */
    --off-white: #faf9f7;         /* Off-white for contrast */
    
    /* Secondary Colors */
    --soft-gold: #d4b78f;         /* Soft gold for highlights */
    --warm-gray: #8c8c8c;         /* Warm gray for secondary text */
    --light-gray: #e0d9cc;        /* Light gray for borders */
    
    /* Utility Colors */
    --white: #ffffff;
    --black: #000000;
    --success-color: #5cb85c;     /* Success messages */
    --error-color: #d9534f;       /* Error messages */
    
    /* Theme Application */
    --primary-color: var(--primary-gold);
    --secondary-color: var(--dark-gray);
    --dark-color: var(--dark-gray);
    --light-color: var(--light-beige);
    --gray: var(--warm-gray);
    
    /* Typography */
    --font-arabic: 'Tajawal', sans-serif;
    --font-english: 'Poppins', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 15px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;
}
:root {
    /* Primary Colors */
    --primary-beige: #f5f0e6;     /* Soft beige background */
    --primary-gold: #c0a080;      /* Elegant gold accent */
    --dark-gray: #333333;         /* Dark gray for text */
    --light-beige: #f9f6f0;       /* Lighter beige for backgrounds */
    --off-white: #faf9f7;         /* Off-white for contrast */
    
    /* Secondary Colors */
    --soft-gold: #d4b78f;         /* Soft gold for highlights */
    --warm-gray: #8c8c8c;         /* Warm gray for secondary text */
    --light-gray: #e0d9cc;        /* Light gray for borders */
    
    /* Utility Colors */
    --white: #ffffff;
    --black: #000000;
    --success-color: #5cb85c;     /* Success messages */
    --error-color: #d9534f;       /* Error messages */
    
    /* Theme Application */
    --primary-color: var(--primary-gold);
    --secondary-color: var(--dark-gray);
    --dark-color: var(--dark-gray);
    --light-color: var(--light-beige);
    --gray: var(--warm-gray);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-arabic);
    color: var(--dark-gray);
    line-height: 1.6;
    background-color: var(--light-beige);
    background-image: linear-gradient(135deg, var(--primary-beige) 0%, var(--light-beige) 100%);
    overflow-x: hidden;
}

/* Gold accents for headings */
h1, h2, h3, h4, h5, h6 {
    color: var(--dark-gray);
    position: relative;
    padding-bottom: 10px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 2px;
}

/* Gold links */
a {
    color: var(--primary-gold);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--warm-gold);
    text-decoration: none;
}

/* Gold buttons */
.btn-primary {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--warm-gold);
    border-color: var(--warm-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(192, 160, 128, 0.3);
}

/* Gold borders and dividers */
hr {
    border-top: 1px solid var(--border-gold);
    opacity: 0.5;
}

/* Form elements */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    border: 1px solid var(--border-gold);
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 0.2rem rgba(192, 160, 128, 0.25);
}

/* Navigation */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
    right: auto;
    left: 0;
}

/* Cards and containers */
.card, .service-card, .testimonial-card {
    border: 1px solid var(--border-gold);
    transition: all 0.3s ease;
}

.card:hover, .service-card:hover, .testimonial-card:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 5px 25px rgba(192, 160, 128, 0.1);
}

/* Icons */
.fas, .far, .fab {
    color: var(--primary-gold);
}

/* Footer */
footer {
    background-color: var(--primary-beige);
    border-top: 1px solid var(--border-gold);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h2::after {
        width: 40px;
    }
}

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

[dir="ltr"] {
    font-family: var(--font-english);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.2rem;
    color: var(--dark-gray);
    letter-spacing: -0.5px;
    font-family: 'Tajawal', sans-serif;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1.5rem;
    color: var(--warm-gray);
    line-height: 1.8;
}

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

a:hover {
    color: var(--soft-gold);
}

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

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-gray);
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--primary-gold);
    bottom: -15px;
    right: 50%;
    transform: translateX(50%);
}

.section-header p {
    color: var(--warm-gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

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

a:hover {
    color: var(--secondary-color);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: var(--transition);
}

.btn:hover::before {
    opacity: 1;
}

.btn:active {
    transform: translateY(2px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: var(--primary-gold);
    color: var(--dark-gray);
    border: 2px solid var(--primary-gold);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-gold);
    box-shadow: 0 5px 20px rgba(192, 160, 128, 0.3);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

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

.btn-outline:hover {
    background: var(--primary-gold);
    color: var(--dark-gray);
}

/* Primary Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #d4b78f 0%, #c0a080 50%, #a08060 100%);
    color: white;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.95rem;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(192, 160, 128, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-primary:hover,
.btn-primary:focus {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(192, 160, 128, 0.6);
    color: white;
    text-decoration: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #a08060 0%, #c0a080 50%, #d4b78f 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
    border-radius: 50px;
}

.btn-primary:hover::before,
.btn-primary:focus::before {
    opacity: 1;
}

/* Pulse animation on hover */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(192, 160, 128, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(192, 160, 128, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(192, 160, 128, 0);
    }
}

.btn-primary:hover {
    animation: pulse 1.5s infinite;
}

/* Header specific button styles */
.nav-links .btn-primary {
    margin-right: 15px;
    margin-left: 5px;
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
}

/* Ensure button is visible on all backgrounds */
.header .btn-primary {
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

/* Header Styles */
.header {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 10px 0;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-gray);
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

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

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 40px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    transition: all 0.3s ease;
}

.mobile-menu-btn .menu-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .menu-line:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

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

.mobile-menu-btn.active .menu-line:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 100px 30px 40px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
        margin: 5px 0;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
        transition-delay: 0.1s;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-links li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links li:nth-child(5) { transition-delay: 0.3s; }
    
    .nav-links li a {
        padding: 15px 0;
        display: block;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        font-size: 1.1rem;
        transition: all 0.3s ease;
    }
    
    .nav-links li a:hover {
        color: var(--primary-gold);
        padding-right: 10px;
    }
    
        .nav-links .btn-primary {
        margin: 20px 0 0;
        padding: 14px 24px;
        font-size: 1rem;
        width: 100%;
        display: block;
        text-align: center;
        border: 2px solid rgba(255, 255, 255, 0.2);
    }
    
    .language-switcher {
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .btn-primary {
        margin-right: 0;
        width: 100%;
        text-align: center;
    }
    
    .language-switcher {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        width: 100%;
    }
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1001;
    position: relative;
    padding: 5px 0;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-text {
    font-family: 'Tajawal', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-gold);
    line-height: 1;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    letter-spacing: -1px;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
    transition: all 0.3s ease;
}

.logo:hover .logo-text::after {
    width: 100%;
}

.logo-tagline {
    font-family: 'Tajawal', sans-serif;
    font-size: 0.9rem;
    color: var(--warm-gray);
    margin-top: 3px;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0.9;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.logo:hover .logo-tagline {
    color: var(--primary-gold);
    transform: translateX(3px);
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
}

.nav-links li {
    margin: 0 0.5rem;
}

.nav-links li:last-child {
    margin-right: 0;
}

.nav-links a {
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
    right: auto;
    left: 0;
}

.language-switcher {
    margin-right: 1.5rem;
    margin-left: 0.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.language-switcher a {
    color: var(--warm-gray);
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
}

.language-switcher a:hover,
.language-switcher a.active {
    color: var(--primary-gold);
    background-color: rgba(192, 160, 128, 0.1);
}

.language-switcher a.active {
    font-weight: 700;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--dark-gray);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.language-switcher a.active {
    background-color: var(--white);
    color: var(--primary-gold);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.language-switcher span {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0.25rem;
}

/* Hero Section */
.hero {
    padding: 200px 0 180px;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.75)), 
                url('../images/photo_5940287714714830816_y.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
    animation: fadeIn 1.5s ease-out;
    transition: all 0.5s ease;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(192, 160, 128, 0.15) 0%, 
        rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 4.2rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    color: #fff;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    font-family: 'Tajawal', sans-serif;
}

.hero-content p {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
    max-width: 700px;
    margin-right: auto;
    margin-left: auto;
    animation: fadeInUp 1s ease-out 0.2s both;
    font-weight: 300;
    line-height: 1.6;
    font-family: 'Tajawal', sans-serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-content .btn {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    color: #fff;
    animation: fadeInUp 1s ease-out 0.4s both;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-content .btn:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* ===========================================
   About Section - Enhanced Styling
   =========================================== */
.about {
    padding: 100px 0;
    position: relative;
    background-color: var(--white);
    overflow: hidden;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 50px;
    position: relative;
}

.about-text {
    flex: 1;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
}

.about-icon {
    background: linear-gradient(135deg, rgba(192, 160, 128, 0.1) 0%, rgba(212, 183, 143, 0.2) 100%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.about-icon i {
    font-size: 30px;
    color: var(--primary-gold);
}

.about-text h3 {
    color: var(--primary-gold);
    margin: 25px 0 15px;
    font-size: 1.5rem;
    position: relative;
    padding-right: 25px;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text h3::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--primary-gold);
    border-radius: 50%;
}

.about-text p {
    color: var(--warm-gray);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.image-overlay i {
    color: var(--primary-gold);
    font-size: 1.5rem;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(192, 160, 128, 0.2);
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(248, 244, 239, 0.6);
    border-radius: var(--radius-md);
    flex: 1;
    min-width: 150px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-item h3 {
    font-size: 2.2rem;
    color: var(--primary-gold);
    margin-bottom: 5px;
    font-weight: 700;
}

.stat-item p {
    color: var(--warm-gray);
    font-size: 1rem;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-text {
        padding: 25px;
    }
    
    .about-image {
        margin-top: 30px;
        width: 100%;
    }
    
    .stat-item {
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 576px) {
    .stat-item {
        min-width: 100%;
    }
}

/* ===========================================
   Services Section - Modern Design
   =========================================== */
.services {
    padding: 100px 0;
    background-color: var(--light-beige);
    position: relative;
    overflow: hidden;
}

.services .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.services .section-header h2 {
    font-size: 2.8rem;
    color: var(--dark-gray);
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-subtitle {
    color: var(--warm-gray);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    position: relative;
    padding: 0 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-img-container {
    position: relative;
    overflow: hidden;
    height: 220px;
    width: 100%;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.overlay-icon {
    color: white;
    font-size: 2.5rem;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.service-card:hover .overlay-icon {
    transform: scale(1);
}

.service-content {
    padding: 25px;
    text-align: right;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    font-size: 1.6rem;
    color: var(--dark-gray);
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    line-height: 1.3;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-gold);
    transition: all 0.4s ease;
}

.service-card:hover h3::after {
    width: 100px;
}

.service-card p {
    color: var(--warm-gray);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 15px 0 20px;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-gold);
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
    width: fit-content;
}

.service-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--dark-gray);
}

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

/* Featured Service */
.service-card.featured-service {
    border: 2px solid var(--primary-gold);
    position: relative;
    overflow: visible;
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--primary-gold);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(192, 160, 128, 0.3);
    z-index: 3;
}

.service-card.featured-service .service-content {
    background: linear-gradient(135deg, var(--primary-gold), #d4b78f);
}

.service-card.featured-service h3,
.service-card.featured-service p {
    color: white;
}

.service-card.featured-service h3::after {
    background: white;
}

.service-card.featured-service .service-link {
    color: white;
    border: 1px solid white;
    padding: 8px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.service-card.featured-service .service-link:hover {
    background: white;
    color: var(--primary-gold);
}

/* Decorative Elements */
.services::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(192, 160, 128, 0.08);
    border-radius: 50%;
    z-index: 1;
}

.services::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(192, 160, 128, 0.05);
    border-radius: 50%;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .services {
        padding: 80px 0;
    }
    
    .services .section-header h2 {
        font-size: 2.4rem;
    }
    
    .services-grid {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }
    
    .services .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .service-img-container {
        height: 250px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-card h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .services .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .service-img-container {
        height: 200px;
    }
}

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

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(192, 160, 128, 0.15);
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(142, 68, 173, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Features Section */
.features-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.features-text {
    flex: 1;
}

.features-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    margin-bottom: 15px;
    padding-right: 30px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.features-list i {
    color: var(--success-color);
    margin-left: 10px;
    font-size: 1.2rem;
}

.features-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

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

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    font-family: 'Tajawal', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    direction: rtl;
}

.testimonials .section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.testimonials .section-header h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.testimonials .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: 50%;
    transform: translateX(50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f1c40f);
    border-radius: 2px;
}

.testimonials .section-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 1rem auto 0;
    line-height: 1.7;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.8rem;
    margin-top: 2.5rem;
    padding: 0 1rem;
}

.testimonial-card {
    background: linear-gradient(145deg, #ffffff, #fafafa);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    border: none;
    height: 100%;
    position: relative;
    padding: 3.5rem 3rem;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-top: 3px solid #d4af37;
    transform: translateY(0);
    z-index: 1;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(250,250,250,0.9) 100%);
    z-index: -1;
    border-radius: 16px;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
    border-top-color: #c19b2e;
}

.testimonial-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.testimonial-text {
    color: #1a1a1a;
    font-size: 1.35rem;
    line-height: 2.2;
    margin: 0 0 2.5rem;
    font-weight: 500;
    position: relative;
    padding: 0 0 2.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    text-align: right;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Tajawal', sans-serif;
    position: relative;
    z-index: 2;
}

.testimonial-text::before {
    content: '❝';
    font-family: Arial, sans-serif;
    font-size: 6rem;
    color: #f9f9f9;
    position: absolute;
    top: -1.5rem;
    right: -0.5rem;
    line-height: 1;
    z-index: -1;
    opacity: 0.9;
    text-shadow: 3px 3px 0 #fff;
}

.testimonial-author {
    margin-top: auto;
    text-align: right;
}

.testimonial-author h4 {
    color: #000;
    font-size: 1.45rem;
    font-weight: 700;
    margin: 0 0 0.3rem;
    letter-spacing: -0.02em;
    font-family: 'Tajawal', sans-serif;
    position: relative;
    display: inline-block;
}

.testimonial-author h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, transparent);
    border-radius: 2px;
}

.testimonial-author span {
    color: #666;
    font-size: 1.15rem;
    font-weight: 500;
    display: block;
    margin-top: 0.5rem;
    font-family: 'Tajawal', sans-serif;
    opacity: 0.9;
    letter-spacing: -0.01em;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .testimonials {
        padding: 4rem 0;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials .section-header h2 {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 1.8rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
    }
    
    .testimonials .section-header h2 {
        font-size: 1.8rem;
    }
    
    .testimonial-card {
        padding: 1.8rem 1.5rem;
    }
}

/* Portfolio Section */
.portfolio-section {
    padding: 6rem 0;
    background-color: var(--light-beige);
}

.portfolio-filters {
    text-align: center;
    margin-bottom: 3rem;
}

.filter-btn {
    background: none;
    border: 1px solid var(--primary-gold);
    color: var(--dark-gray);
    padding: 0.5rem 1.5rem;
    margin: 0 0.5rem 1rem;
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--font-arabic);
    font-size: 1rem;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-gold);
    color: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.portfolio-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.portfolio-info {
    text-align: center;
    color: var(--white);
    padding: 1.5rem;
    transform: translateY(20px);
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-info {
    transform: translateY(0);
}

.portfolio-info h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.portfolio-info p {
    color: var(--light-gray);
    margin-bottom: 1rem;
}

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

.portfolio-link:hover {
    background: var(--white);
    color: var(--primary-gold);
    transform: scale(1.1);
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/testimonial-bg.jpg') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(192, 160, 128, 0.7) 0%, rgba(245, 240, 230, 0.5) 100%);
    z-index: 1;
}

.testimonials .section-header h2,
.testimonials .section-header p {
    color: var(--white);
}

.testimonials .section-header h2::after {
    background: var(--secondary-color);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 10px;
    margin: 0 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--gray);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background-color: var(--white);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--light-beige);
    transition: var(--transition);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--dark-gray);
    font-weight: 600;
}

.faq-question:hover {
    background-color: var(--light-gold);
}

.faq-toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
    margin-right: 1rem;
}

.faq-toggle i {
    color: var(--primary-gold);
    transition: var(--transition);
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
    background-color: var(--white);
}

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

.faq-answer p {
    margin: 0;
    color: var(--dark-gray);
    line-height: 1.7;
}

.faq-contact {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: var(--light-beige);
    border-radius: var(--radius-md);
}

.faq-contact a {
    color: var(--primary-gold);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.faq-contact a:hover {
    text-decoration: underline;
    color: var(--dark-gold);
}

/* Contact Section */
.contact-content {
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info-item {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(142, 68, 173, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.contact-text p,
.contact-text a {
    color: var(--gray);
    transition: var(--transition);
}

.contact-text a:hover {
    color: var(--primary-color);
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--light-color);
    color: var(--dark-color);
    border-radius: 50%;
    font-size: 18px;
    transition: var(--transition);
}

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

.contact-form {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Tajawal', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background-color: #f9f9f9;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white);
}

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

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--off-white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--soft-gold));
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-logo h2 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-logo p {
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-links {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
}

.footer-links h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
    bottom: 0;
    right: 0;
}

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

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

.footer-links a {
    color: #bbb;
    transition: var(--transition);
    display: block;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bbb;
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero {
        background-attachment: scroll;
    }
    .about-content,
    .features-content,
    .contact-content {
        flex-direction: column;
    }
    
    .about-image,
    .features-image {
        margin-top: 40px;
    }
    
    .stats {
        justify-content: center;
    }
    
    .stat-item {
        margin: 10px;
    }
}

@media (max-width: 768px) {
    /* Base mobile adjustments */
    html {
        font-size: 14px;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Feature items */
    .feature-item {
        padding: 20px 15px !important;
        margin: 8px 0 !important;
    }
    
    .feature-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
        margin-bottom: 15px !important;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 25px 20px !important;
        margin: 10px 0 !important;
    }
    
    .testimonial-content p {
        font-size: 0.95rem !important;
        line-height: 1.7 !important;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: calc(100vh - 70px);
        background-color: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 15px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        border-top: 1px solid rgba(0,0,0,0.05);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .language-switcher {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .contact-form {
        margin-top: 40px;
    }
}

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

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

/* Subtle hover effects */
a, button, .btn {
    transition: all 0.3s ease-in-out;
}

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

.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animate__fadeInUp {
    animation-name: fadeInUp;
}

.animate__delay-1s {
    animation-delay: 0.5s;
}

.animate__delay-2s {
    animation-delay: 1s;
}
