/* =============================================
   SHLOMO MOTORS - Luxury Car Dealership
   Premium CSS Stylesheet
   ============================================= */

/* CSS Custom Properties */
:root {
    /* Gold Palette */
    --gold-light: #F5E6A3;
    --gold: #D4AF37;
    --gold-dark: #AA8C2C;
    --gold-darker: #856D1C;

    /* Dark Palette */
    --black: #0A0A0A;
    --black-light: #141414;
    --black-lighter: #1E1E1E;
    --gray-dark: #2A2A2A;
    --gray: #4A4A4A;
    --gray-light: #8A8A8A;

    /* Light Palette */
    --white: #FFFFFF;
    --off-white: #F8F8F8;
    --cream: #FAF7F0;

    /* Typography - Luxury Style */
    --font-display: 'Cormorant Garamond', 'Heebo', Georgia, serif;
    --font-body: 'Heebo', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-english: 'Poppins', 'Heebo', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-width: 1400px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Border Radius */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-xl: 40px;
    --radius-full: 9999px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* Typography - Mercedes Style */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

h1 {
    font-weight: 200;
}

h2 {
    font-weight: 300;
}

h3, h4 {
    font-weight: 400;
}

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

/* =============================================
   Language Selector
   ============================================= */
.lang-selector-fixed {
    position: fixed;
    top: 3px;
    right: 50px;
    left: auto;
    transform: none;
    z-index: 1003;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

[dir="rtl"] .lang-selector-fixed {
    right: auto;
    left: 50px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--gray-light);
    font-size: 8px;
    padding: 3px 5px;
    cursor: pointer;
    border-radius: var(--radius-full);
    transition: all var(--transition-medium);
    font-family: inherit;
    font-weight: 500;
    white-space: nowrap;
}

.lang-btn:hover {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.lang-btn.active {
    background: var(--gold);
    color: var(--black);
    font-weight: 600;
}

/* =============================================
   Navigation
   ============================================= */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-medium);
}

.main-nav.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo-link {
    display: block;
}

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

.logo-icon {
    width: 50px;
    height: 50px;
}

.logo-img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-dot {
    margin: 0 6px;
    color: var(--gold);
}

.logo-tagline {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--gray-light);
    text-transform: uppercase;
}

/* Nav Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width var(--transition-medium);
}

[dir="ltr"] .nav-links a::after {
    right: auto;
    left: 0;
}

.nav-links a:hover::after {
    width: 100%;
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: all var(--transition-fast);
}

/* =============================================
   Hero Section
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 50%, var(--black) 100%);
    overflow: hidden;
    padding-top: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(212,175,55,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
    padding: 0 40px;
}

.hero-badge {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.5);
    padding: 14px 35px;
    margin-bottom: 40px;
    position: relative;
    border-radius: var(--radius-full);
    background: rgba(212, 175, 55, 0.08);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
}

.hero-badge::before,
.hero-badge::after {
    content: '✦';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 8px;
}

.hero-badge::before {
    right: 10px;
}

.hero-badge::after {
    left: 10px;
}

[dir="ltr"] .hero-badge::before {
    right: auto;
    left: 10px;
}

[dir="ltr"] .hero-badge::after {
    left: auto;
    right: 10px;
}

.hero-title {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 200;
    line-height: 1.15;
    margin-bottom: 30px;
    color: var(--white);
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--gray-light);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 100px;
}

.hero-cta .btn {
    min-width: 200px;
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 45px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-medium);
    border: none;
    font-family: inherit;
    border-radius: var(--radius-full);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    color: var(--black);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left var(--transition-slow);
}

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

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-scroll span {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray-light);
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--gold);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollDown 1.5s infinite;
}

@keyframes scrollDown {
    0%, 100% { opacity: 1; top: 8px; }
    50% { opacity: 0.5; top: 20px; }
}

/* =============================================
   Section Styling
   ============================================= */
.section-header {
    margin-bottom: 60px;
}

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

.section-label {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    position: relative;
    padding-right: 50px;
}

[dir="ltr"] .section-label {
    padding-right: 0;
    padding-left: 50px;
}

.section-label::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 35px;
    height: 1px;
    background: var(--gold);
}

[dir="ltr"] .section-label::before {
    right: auto;
    left: 0;
}

.section-header.centered .section-label {
    padding: 0;
}

.section-header.centered .section-label::before {
    display: none;
}

.section-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* =============================================
   Why Us Section
   ============================================= */
.why-us {
    padding: var(--section-padding) 0;
    background: var(--black-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: linear-gradient(180deg, rgba(30, 30, 30, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
    padding: 45px 35px;
    border: 1px solid rgba(212, 175, 55, 0.12);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-medium);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

[dir="ltr"] .feature-card::before {
    transform-origin: left;
}

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

.feature-card:hover {
    border-color: rgba(212, 175, 55, 0.35);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 30px rgba(212, 175, 55, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--gold);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.feature-card p {
    color: var(--gray-light);
    font-size: 15px;
    line-height: 1.7;
}

/* =============================================
   About Section
   ============================================= */
.about {
    padding: var(--section-padding) 0;
    background: var(--black);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text p {
    color: var(--gray-light);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 25px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-stats {
    display: flex;
    gap: 50px;
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 500;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--gray-light);
    margin-top: 8px;
    letter-spacing: 1px;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    padding: 15px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.02));
    border-radius: var(--radius-xl);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

[dir="ltr"] .image-frame::before {
    right: auto;
    left: -10px;
}

.image-frame::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: -10px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

[dir="ltr"] .image-frame::after {
    left: auto;
    right: -10px;
}

.placeholder-image {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9), rgba(42, 42, 42, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 14px;
    border: 2px dashed rgba(74, 74, 74, 0.5);
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.placeholder-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23D4AF37" stroke-width="1"><rect x="3" y="3" width="18" height="18" rx="4"/><circle cx="8.5" cy="8.5" r="1.5"/><path d="m21 15-5-5L5 21"/></svg>') no-repeat center;
    background-size: contain;
    opacity: 0.4;
}

.about-placeholder {
    aspect-ratio: 3/4;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    object-fit: cover;
}

/* =============================================
   Brands Marquee
   ============================================= */
.brands-section {
    padding: 60px 0;
    background: var(--black-light);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    overflow: hidden;
}

.brands-marquee {
    display: flex;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

[dir="rtl"] .marquee-content {
    animation: marquee-rtl 30s linear infinite;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes marquee-rtl {
    from { transform: translateX(0); }
    to { transform: translateX(50%); }
}

.brand-name {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 8px;
    color: var(--gray);
    padding: 0 40px;
    transition: color var(--transition-fast);
}

.brand-name:hover {
    color: var(--gold);
}

.brand-separator {
    color: var(--gold);
    font-size: 12px;
    padding: 0 20px;
}

/* =============================================
   Services Section
   ============================================= */
.services {
    padding: var(--section-padding) 0;
    background: var(--black);
}

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

.service-card {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 45px;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8), rgba(20, 20, 20, 0.9));
    border: 1px solid rgba(212, 175, 55, 0.12);
    transition: all var(--transition-medium);
    position: relative;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.08), transparent 50%);
    pointer-events: none;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: transform var(--transition-medium);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

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

.service-card:hover {
    border-color: rgba(212, 175, 55, 0.35);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 30px rgba(212, 175, 55, 0.1);
}

.service-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 500;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.service-content p {
    color: var(--gray-light);
    line-height: 1.7;
}

.service-icon {
    width: 40px;
    height: 40px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--gold);
}

/* =============================================
   Gallery Section
   ============================================= */
.gallery {
    padding: var(--section-padding) 0;
    background: var(--black-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all var(--transition-medium);
}

.gallery-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-slow);
}

.gallery-item .placeholder-image {
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
    border-radius: var(--radius-lg);
    border: none;
}

.gallery-item:hover img,
.gallery-item:hover .placeholder-image {
    transform: scale(1.08);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.8) 100%);
    opacity: 0;
    transition: opacity var(--transition-medium);
    border-radius: var(--radius-lg);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-note {
    text-align: center;
    margin-top: 30px;
    color: var(--gray);
    font-size: 14px;
}

/* =============================================
   Contact Section
   ============================================= */
.contact {
    padding: var(--section-padding) 0;
    background: var(--black);
}

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

.contact-details {
    margin-top: 40px;
}

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

.contact-item-link {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-medium);
    padding: 10px;
    margin: -10px;
    border-radius: var(--radius-md);
}

.contact-item-link:hover {
    background: rgba(212, 175, 55, 0.1);
}

.contact-item-link:hover .contact-icon {
    transform: scale(1.1);
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--black);
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-text strong {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 5px;
}

.contact-text span,
.contact-text a {
    font-size: 18px;
    color: var(--white);
}

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

.contact-tagline {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-tagline p {
    font-family: var(--font-display);
    font-size: 20px;
    font-style: italic;
    color: var(--gray-light);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.social-link {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9), rgba(42, 42, 42, 0.8));
    border: 1px solid rgba(212, 175, 55, 0.25);
    transition: all var(--transition-medium);
    border-radius: var(--radius-md);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.social-link svg {
    width: 24px;
    height: 24px;
    fill: var(--gold);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    border-color: var(--gold);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.social-link:hover svg {
    fill: var(--black);
}

.social-link.whatsapp-link:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    border-color: #25D366;
}

.footer-social-link.whatsapp-link:hover {
    background: #25D366;
    border-color: #25D366;
}

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

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

/* Contact Form */
.contact-form-wrapper {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9), rgba(20, 20, 20, 0.95));
    padding: 50px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 20px;
    font-size: 16px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    outline: none;
    font-family: inherit;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

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

.form-group label {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 14px;
    color: var(--gray-light);
    pointer-events: none;
    transition: all var(--transition-fast);
    background: transparent;
    padding: 0 5px;
}

[dir="ltr"] .form-group label {
    right: auto;
    left: 20px;
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
    top: -12px;
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(180deg, transparent 45%, rgba(20, 20, 20, 1) 45%);
}

/* =============================================
   Footer
   ============================================= */
.footer {
    padding: 60px 0;
    background: var(--black);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

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

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 16px;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-dot {
    margin: 0 8px;
    color: var(--gold);
}

.footer-text p {
    color: var(--gray-light);
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin: 10px 0;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    transition: all var(--transition-medium);
}

.footer-social-link svg {
    width: 18px;
    height: 18px;
    fill: var(--gold);
    transition: all var(--transition-fast);
}

.footer-social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-social-link:hover svg {
    fill: var(--black);
}

.footer-copyright p {
    color: var(--gray);
    font-size: 12px;
}

/* =============================================
   Floating WhatsApp Button
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #128C7E, #25D366);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-medium);
}

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

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 80px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

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

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* =============================================
   Lightbox
   ============================================= */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    padding: 15px 20px;
    transition: all var(--transition-fast);
    border-radius: var(--radius-sm);
    backdrop-filter: blur(10px);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
}

.lightbox-close {
    top: 30px;
    right: 30px;
}

.lightbox-prev {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

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

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 80px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: 999;
        display: flex;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        font-size: 22px;
        padding: 10px 20px;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .logo-text {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image {
        order: -1;
    }

    .about-stats {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .lang-selector-fixed {
        top: 5px;
        right: 10px;
        left: auto;
        padding: 3px 6px;
        gap: 2px;
    }

    [dir="rtl"] .lang-selector-fixed {
        right: auto;
        left: 10px;
    }

    .lang-selector-fixed .lang-btn {
        font-size: 8px;
        padding: 3px 5px;
    }

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

    .feature-card {
        padding: 35px 25px;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 30px;
    }

    .service-card {
        flex-direction: column;
        padding: 35px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .gallery-item.large,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }

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

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 80px;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .logo-text {
        display: none;
    }

    .stat-number {
        font-size: 36px;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Staggered animations for cards */
.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
