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

        :root {
    --gold: #C9A961;
    --gold-light: #E8D5B7;
    --gold-dark: #A68B4F;
    --black: #0A0A0A;
    --dark: #121212;
    --gray-dark: #1E1E1E;
    --gray: #2C2C2C;
    --gray-light: #3A3A3A;
    --white: #FFFFFF;
    --text: #D4D4D4;
    --text-light: #E8E8E8;
    --text-muted: #9A9A9A;
}

html { 
    scroll-behavior: smooth; 
    overflow-x: hidden; 
}

body { 
    font-family: 'Inter', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--black); 
    color: var(--text); 
    line-height: 1.7; 
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
        
        /* Navigation */
.main-nav { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    padding: 20px 40px; 
    z-index: 1000; 
    transition: all 0.3s ease; 
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

.main-nav.scrolled { 
    background: rgba(10, 10, 10, 0.95); 
    padding: 15px 40px; 
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

.nav-container { 
    max-width: 1400px; 
    margin: 0 auto; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.nav-logo img { 
    height: 50px; 
    transition: all 0.3s; 
    filter: brightness(1.1);
}

.main-nav.scrolled .nav-logo img { 
    height: 45px; 
}

.nav-menu { 
    display: flex; 
    list-style: none; 
    gap: 35px; 
    align-items: center; 
}

.nav-menu a { 
    color: var(--text-light); 
    text-decoration: none; 
    font-size: 13px; 
    font-weight: 400; 
    letter-spacing: 0.5px; 
    text-transform: none;
    position: relative; 
    transition: color 0.3s;
    padding: 5px 0;
}

.nav-menu a::after { 
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 0; 
    height: 1px; 
    background: var(--gold); 
    transition: width 0.3s ease;
}

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

.nav-menu a:hover::after,
.nav-menu a.active::after { 
    width: 100%; 
}

.lang-selector { 
    display: flex; 
    gap: 8px; 
    background: rgba(30, 30, 30, 0.6); 
    padding: 6px 12px; 
    border-radius: 6px; 
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.lang-btn { 
    padding: 6px 12px; 
    background: transparent; 
    border: none; 
    color: var(--text); 
    cursor: pointer; 
    border-radius: 4px; 
    font-size: 11px; 
    font-weight: 400; 
    transition: all 0.2s; 
    text-decoration: none; 
    display: inline-block;
}

.lang-btn:hover { 
    background: rgba(201, 169, 97, 0.1); 
    color: var(--gold); 
}

.lang-btn.active { 
    background: #000000; 
    color: var(--gold); 
    font-weight: 600;
}
        
        /* Hero */
/* Hero Slider - Premium Design */
.hero-slider {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding-top: 80px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    min-height: 650px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.35;
    transition: transform 12s cubic-bezier(0.25, 0.1, 0.25, 1);
    filter: saturate(0.8);
}

.slide.active .slide-bg {
    transform: scale(1.15);
}

/* Premium Overlay - Multi-layer gradient */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(201, 169, 97, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(201, 169, 97, 0.05) 0%, transparent 40%),
        linear-gradient(180deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.85) 50%, rgba(10, 10, 10, 0.95) 100%);
    z-index: 1;
}

/* Decorative Elements */
.slide::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.03) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
}

.slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--black) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.slide-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px 30px;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Animated entrance for content elements */
.slide-content > * {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide.active .slide-content > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.slide.active .slide-content > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.slide.active .slide-content > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.6s; }
.slide.active .slide-content > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.8s; }
.slide.active .slide-content > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 1s; }

/* Subtitle with decorative lines */
.slide-subtitle {
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 30px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 20px;
}

.slide-subtitle::before,
.slide-subtitle::after {
    content: '';
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Title with elegant styling */
.slide-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 9vw, 85px);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--white);
    letter-spacing: -2px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Gold accent for first word */
.slide-title .accent {
    color: var(--gold);
    font-style: normal;
}

.slide-tagline {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 400;
    color: var(--gold-light);
    margin-bottom: 30px;
    letter-spacing: 1px;
    font-style: normal;
}

.slide-description {
    max-width: 700px;
    margin: 0 auto 45px;
    font-size: clamp(15px, 1.6vw, 17px);
    line-height: 1.9;
    color: var(--text);
    font-weight: 300;
    padding: 0 20px;
}

.slide-description p {
    margin: 0;
}

/* Premium CTA Buttons */
.slide-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.slide-cta .cta-btn {
    position: relative;
    padding: 16px 40px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-cta .cta-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border: none;
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.3);
}

.slide-cta .cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 169, 97, 0.4);
}

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

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

.slide-cta .cta-secondary {
    background: transparent;
    border: 1px solid rgba(201, 169, 97, 0.5);
    color: var(--gold-light);
    backdrop-filter: blur(10px);
}

.slide-cta .cta-secondary:hover {
    background: rgba(201, 169, 97, 0.1);
    border-color: var(--gold);
    transform: translateY(-3px);
}

/* Slide Number Indicator */
.slide-number {
    position: absolute;
    bottom: 100px;
    left: 60px;
    font-family: 'Playfair Display', serif;
    font-size: 120px;
    font-weight: 400;
    color: rgba(201, 169, 97, 0.06);
    line-height: 1;
    z-index: 3;
    pointer-events: none;
}

/* Floating decorative badge */
.slide-badge {
    position: absolute;
    top: 30%;
    right: 10%;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    z-index: 5;
    animation: float 6s ease-in-out infinite;
}

.slide-badge .number {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--gold);
    line-height: 1;
}

.slide-badge .text {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 5px;
}

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

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 20px;
}

.slider-prev,
.slider-next {
    background: rgba(201, 169, 97, 0.2);
    border: 1px solid rgba(201, 169, 97, 0.3);
    color: var(--gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 18px;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 12px;
    align-items: center;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(201, 169, 97, 0.3);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.slider-dot.active {
    background: var(--gold);
    width: 14px;
    height: 14px;
}

.slider-dot:hover {
    background: rgba(201, 169, 97, 0.6);
}

/* Enhanced Slider Dot with Inner Element */
.slider-dot .dot-inner {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
}

/* Slider Progress Bar */
.slider-progress {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.progress-bar {
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(201, 169, 97, 0.2);
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--gold);
    animation: progressFill 5s linear infinite;
}

@keyframes progressFill {
    0% { width: 0; }
    100% { width: 100%; }
}

/* Slider Prev/Next Button Background */
.slider-prev .btn-bg,
.slider-next .btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: -1;
}

.slider-prev:hover .btn-bg,
.slider-next:hover .btn-bg {
    transform: scale(1);
}

/* Particles Animation */
.slider-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(201, 169, 97, 0.3);
    border-radius: 50%;
    animation: particleFloat 15s infinite;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.particle:nth-child(2) {
    left: 50%;
    animation-delay: 5s;
    animation-duration: 25s;
}

.particle:nth-child(3) {
    left: 80%;
    animation-delay: 10s;
    animation-duration: 18s;
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

/* Decorative Lines */
.slide-decor {
    position: absolute;
    width: 1px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, rgba(201, 169, 97, 0.2), transparent);
    z-index: 3;
    pointer-events: none;
}

.slide-decor-left {
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
}

.slide-decor-right {
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.scroll-text {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.5; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* Enhanced CTA Buttons with Icons */
.slide-cta .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.slide-cta .cta-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.slide-cta .cta-btn:hover i {
    transform: translateX(5px);
}

.hero-content { 
    position: relative; 
    z-index: 10; 
    text-align: center; 
    padding: 60px 30px; 
    max-width: 1200px; 
    margin: 0 auto; 
}

.hero-subtitle { 
    font-size: 11px; 
    letter-spacing: 3px; 
    text-transform: uppercase; 
    color: var(--gold); 
    margin-bottom: 25px; 
    opacity: 0; 
    animation: fadeInUp 0.8s ease 0.2s forwards; 
    font-weight: 400;
}

.hero-title { 
    font-family: 'Playfair Display', serif; 
    font-size: clamp(42px, 8vw, 72px); 
    font-weight: 400; 
    line-height: 1.2; 
    margin-bottom: 30px; 
    opacity: 0; 
    animation: fadeInUp 0.8s ease 0.4s forwards; 
    color: var(--text-light);
    letter-spacing: -1px;
}

.hero-title .word { 
    display: inline-block;
    color: var(--gold);
}

.hero-tagline { 
    font-size: clamp(16px, 2.5vw, 20px); 
    font-weight: 300; 
    color: var(--text); 
    margin-bottom: 35px; 
    opacity: 0; 
    animation: fadeInUp 0.8s ease 0.6s forwards; 
    letter-spacing: 0.3px;
}

.hero-description { 
    max-width: 800px; 
    margin: 0 auto 50px; 
    font-size: clamp(15px, 1.8vw, 17px); 
    line-height: 1.8; 
    opacity: 0; 
    animation: fadeInUp 0.8s ease 0.8s forwards;
    color: var(--text-muted);
    font-weight: 300;
}

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

.hero-cta { 
    display: flex; 
    gap: 20px; 
    justify-content: center; 
    flex-wrap: wrap; 
    opacity: 0; 
    animation: fadeInUp 0.8s ease 1s forwards; 
}

.cta-btn { 
    padding: 14px 32px; 
    font-size: 13px; 
    font-weight: 400; 
    letter-spacing: 1px; 
    text-transform: none;
    text-decoration: none; 
    border-radius: 4px; 
    transition: all 0.3s; 
    position: relative; 
    overflow: hidden;
    border: 1px solid transparent;
}

.cta-primary { 
    background: var(--gold); 
    color: var(--black); 
    border-color: var(--gold);
}

.cta-primary:hover { 
    background: var(--gold-dark); 
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

.cta-secondary { 
    background: transparent; 
    color: var(--gold); 
    border-color: var(--gold);
}

.cta-secondary:hover { 
    background: rgba(201, 169, 97, 0.1); 
    transform: translateY(-2px);
}
        
        /* Services */
.services { 
    padding: 100px 40px; 
    background: var(--black); 
}

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

.section-subtitle { 
    font-size: 11px; 
    letter-spacing: 2px; 
    text-transform: uppercase; 
    color: var(--gold); 
    margin-bottom: 12px; 
    font-weight: 400;
}

.section-title { 
    font-family: 'Playfair Display', serif; 
    font-size: clamp(28px, 4vw, 36px); 
    font-weight: 400; 
    color: var(--text-light); 
    margin-bottom: 20px; 
    letter-spacing: -0.5px;
}

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

/* Services Grid - Premium Layout */
.services-grid { 
    max-width: 1400px; 
    margin: 0 auto; 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); 
    gap: 35px;
    padding: 60px 40px;
}

/* Premium Service Cards */
.service-card { 
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.9), rgba(18, 18, 18, 0.95));
    padding: 0;
    border-radius: 20px; 
    border: 1px solid rgba(201, 169, 97, 0.1); 
    cursor: pointer; 
    position: relative; 
    overflow: hidden; 
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); 
    opacity: 0; 
    transform: translateY(30px);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card.visible { 
    opacity: 1; 
    transform: translateY(0); 
}

/* Animated top bar */
.service-card::before { 
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 3px; 
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: 10;
}

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

/* Glow effect */
.service-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 50%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease;
    pointer-events: none;
    z-index: 0;
}

.service-card:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.service-card:hover { 
    transform: translateY(-10px) scale(1.02); 
    border-color: rgba(201, 169, 97, 0.3); 
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(201, 169, 97, 0.1);
}

/* Service Icon - Premium Badge */
.service-icon { 
    position: absolute;
    top: 200px;
    left: 24px;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px; 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    color: var(--black);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.3);
    z-index: 5;
}

.service-card:hover .service-icon { 
    transform: translateY(-50%) scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 30px rgba(201, 169, 97, 0.4);
}

/* Service Number - Large watermark */
.service-number { 
    position: absolute; 
    bottom: 20px; 
    right: 20px; 
    font-family: 'Playfair Display', serif; 
    font-size: 80px; 
    font-weight: 400; 
    color: rgba(201, 169, 97, 0.06); 
    line-height: 1; 
    z-index: 1;
    transition: all 0.4s;
}

.service-card:hover .service-number {
    color: rgba(201, 169, 97, 0.1);
    transform: scale(1.1);
}

/* Service Image - Premium */
.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(18, 18, 18, 1), transparent);
    pointer-events: none;
    z-index: 2;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s;
    filter: saturate(0.9);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
    filter: saturate(1.1);
}

/* Service Content */
.service-card-content {
    padding: 35px 28px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.service-title { 
    font-family: 'Playfair Display', serif; 
    font-size: 22px; 
    color: var(--white); 
    margin-bottom: 14px; 
    margin-top: 15px;
    font-weight: 400; 
    line-height: 1.3;
    transition: color 0.3s;
}

.service-card:hover .service-title {
    color: var(--gold-light);
}

.service-description { 
    line-height: 1.8; 
    font-size: 15px; 
    margin-bottom: 20px; 
    color: var(--text-muted);
    font-weight: 300;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-link { 
    display: inline-flex; 
    align-items: center; 
    gap: 10px; 
    color: var(--gold); 
    font-weight: 600; 
    font-size: 13px; 
    letter-spacing: 1px; 
    text-transform: uppercase;
    transition: all 0.3s; 
    cursor: pointer;
    text-decoration: none;
    padding-top: 18px;
    border-top: 1px solid rgba(201, 169, 97, 0.1);
    margin-top: auto;
}

.service-link i {
    font-size: 11px;
    transition: transform 0.3s;
}

.service-link:hover { 
    gap: 15px;
    color: var(--gold-light);
}

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

.service-link-wrapper,
.service-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

.service-card-link:focus {
    outline: none;
}

.service-card-link:focus .service-card {
    border-color: var(--gold);
}
        
/* Multilingual Service Section - Premium */
.multilingual-section {
    padding: 120px 40px;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark) 50%, var(--black) 100%);
    position: relative;
    overflow: hidden;
}

.multilingual-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.3), transparent);
}

.multilingual-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.3), transparent);
}

.multilingual-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.multilingual-content {
    padding: 0 20px;
    text-align: center;
}

.multilingual-content .section-label {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.multilingual-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 48px);
    color: var(--white);
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.2;
}

.multilingual-desc {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 30px;
    font-weight: 300;
}

.multilingual-desc strong {
    color: var(--gold);
    font-weight: 500;
}

.langs-title {
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 0;
}

/* Language Grid */
.multilingual-languages {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 900px;
    margin: 30px auto 0;
}

.language-item {
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.9), rgba(18, 18, 18, 0.95));
    border: 1px solid rgba(201, 169, 97, 0.1);
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.language-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.language-item:hover::before {
    transform: scaleX(1);
}

.language-item:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 169, 97, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(201, 169, 97, 0.1);
}

.lang-flag {
    display: block;
    font-size: 40px;
    margin-bottom: 12px;
    transition: transform 0.3s;
}

.language-item:hover .lang-flag {
    transform: scale(1.2);
}

.lang-name {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

/* Decorative Globe - Hidden */
.multilingual-globe {
    display: none !important;
}
        
        /* Certificates */
.certificates { 
    padding: 100px 40px; 
    background: var(--dark); 
}

.certificates .section-header { 
    margin-bottom: 50px; 
}

.certificates-grid { 
    max-width: 1000px; 
    margin: 0 auto; 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 24px; 
}

.certificate-card { 
    background: rgba(30, 30, 30, 0.4); 
    padding: 20px; 
    border-radius: 8px; 
    border: 1px solid rgba(201, 169, 97, 0.1); 
    transition: all 0.3s; 
    cursor: pointer; 
    opacity: 0; 
    transform: translateY(20px);
}

.certificate-card.visible { 
    opacity: 1; 
    transform: translateY(0); 
}

.certificate-card:hover { 
    transform: translateY(-4px); 
    border-color: var(--gold); 
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.certificate-image { 
    width: 100%; 
    height: auto; 
    border-radius: 6px; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); 
    transition: transform 0.3s; 
}

.certificate-card:hover .certificate-image { 
    transform: scale(1.02); 
}
        
        /* Languages */
.languages { 
    padding: 100px 40px; 
    background: var(--black); 
}

.languages-grid { 
    max-width: 700px; 
    margin: 0 auto; 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px; 
}

.language-card { 
    background: rgba(30, 30, 30, 0.4); 
    padding: 32px 20px; 
    border-radius: 8px; 
    text-align: center; 
    border: 1px solid rgba(201, 169, 97, 0.1); 
    transition: all 0.3s; 
    opacity: 0; 
    transform: translateY(20px);
}

.language-card.visible { 
    opacity: 1; 
    transform: translateY(0); 
}

.language-card:hover { 
    transform: translateY(-4px); 
    border-color: var(--gold); 
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.language-flag { 
    font-size: 32px; 
    margin-bottom: 12px; 
    display: block; 
    transition: transform 0.3s; 
}

.language-card:hover .language-flag { 
    transform: scale(1.1); 
}

.language-name { 
    font-size: 14px; 
    font-weight: 400; 
    letter-spacing: 0.3px;
    color: var(--text);
}

/* CTA Section */
.cta-section { 
    padding: 100px 40px; 
    background: linear-gradient(135deg, var(--dark) 0%, var(--black) 100%); 
    text-align: center; 
}

.cta-section h2 { 
    font-family: 'Playfair Display', serif; 
    font-size: clamp(32px, 5vw, 42px); 
    color: var(--text-light); 
    margin-bottom: 20px; 
    font-weight: 400;
}

.cta-section p { 
    font-size: 16px; 
    margin-bottom: 35px; 
    color: var(--text-muted);
    max-width: 700px; 
    margin-left: auto; 
    margin-right: auto; 
    font-weight: 300;
}
        
        /* About */
/* About Page - Premium Design */

/* About Hero */
.about-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.15;
    filter: saturate(0.5);
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(201, 169, 97, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0.95) 100%);
}

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

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201, 169, 97, 0.1);
    border: 1px solid rgba(201, 169, 97, 0.3);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 30px;
}

.about-hero-badge i {
    font-size: 14px;
}

.about-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 8vw, 72px);
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.1;
}

.about-hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text);
    font-weight: 300;
    letter-spacing: 1px;
}

.about-hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 5;
}

.about-hero-scroll span {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.about-hero-scroll .scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* About Experience Section */
.about-experience {
    padding: 120px 40px;
    background: var(--black);
}

.about-experience-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-experience-image {
    position: relative;
}

.about-experience-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.about-experience-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-left: 3px solid var(--gold);
    border-top: 3px solid var(--gold);
    z-index: -1;
}

.about-experience-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-right: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
    z-index: -1;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    padding: 30px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(201, 169, 97, 0.3);
}

.experience-badge .number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--black);
    font-weight: 500;
    line-height: 1;
}

.experience-badge .text {
    display: block;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--black);
    margin-top: 5px;
    text-transform: uppercase;
}

.about-experience-content {
    padding-left: 20px;
}

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

.about-experience-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 48px);
    color: var(--white);
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.2;
}

.about-experience-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--gold-light);
    margin-bottom: 20px;
    font-weight: 400;
}

.about-experience-content p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text);
    font-weight: 300;
    margin-bottom: 24px;
}

.experience-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 40px 0;
}

/* About Stats Section */
.about-stats {
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--dark) 0%, rgba(201, 169, 97, 0.05) 50%, var(--dark) 100%);
    border-top: 1px solid rgba(201, 169, 97, 0.1);
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

.about-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

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

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(201, 169, 97, 0.3), transparent);
}

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

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 6vw, 72px);
    color: var(--gold);
    font-weight: 400;
    line-height: 1;
}

.stat-plus {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 48px);
    color: var(--gold);
}

.stat-label {
    display: block;
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-top: 15px;
    text-transform: uppercase;
}

/* About Values Section */
.about-values {
    padding: 120px 40px;
    background: var(--black);
}

.about-values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-values .section-header {
    text-align: center;
    margin-bottom: 70px;
}

.about-values .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 48px);
    color: var(--white);
    font-weight: 400;
}

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

.value-card {
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.9), rgba(18, 18, 18, 0.95));
    padding: 45px 30px;
    border-radius: 20px;
    border: 1px solid rgba(201, 169, 97, 0.1);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

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

.value-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 169, 97, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 40px rgba(201, 169, 97, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.15), rgba(201, 169, 97, 0.05));
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s;
}

.value-icon i {
    font-size: 32px;
    color: var(--gold);
    transition: all 0.4s;
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.value-card:hover .value-icon i {
    color: var(--black);
}

.value-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 400;
    transition: color 0.3s;
}

.value-card:hover h3 {
    color: var(--gold-light);
}

.value-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
    font-weight: 300;
}

/* About Intro Section */
.about-intro {
    padding: 100px 40px;
    background: var(--black);
    position: relative;
}

.about-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

.about-intro-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.intro-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.3);
}

.intro-icon i {
    font-size: 32px;
    color: var(--black);
}

.intro-content {
    flex: 1;
}

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

.intro-content p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text);
    font-weight: 300;
}

.intro-content strong {
    color: var(--gold);
    font-weight: 500;
}

/* Belt & Road Section */
.about-belt-road {
    padding: 120px 40px;
    background: linear-gradient(135deg, var(--dark) 0%, rgba(201, 169, 97, 0.03) 50%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
}

.belt-road-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.belt-road-content .section-label {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.belt-road-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 42px);
    color: var(--white);
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.3;
}

.belt-road-content p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 20px;
    font-weight: 300;
}

.belt-road-content strong {
    color: var(--gold-light);
    font-weight: 500;
}

.belt-road-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.belt-road-icon {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(201, 169, 97, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(201, 169, 97, 0.2);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.2); }
    50% { transform: scale(1.05); box-shadow: 0 0 30px rgba(201, 169, 97, 0.3); }
}

.belt-road-icon i {
    font-size: 80px;
    color: var(--gold);
}

.belt-road-badges {
    display: flex;
    gap: 20px;
}

.br-badge {
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.9), rgba(18, 18, 18, 0.95));
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 12px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.br-badge i {
    font-size: 20px;
    color: var(--gold);
}

.br-badge span {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

/* Arbitration Section */
.about-arbitration {
    padding: 120px 40px;
    background: var(--black);
}

.arbitration-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.arbitration-header {
    margin-bottom: 60px;
}

.arbitration-header .section-label {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.arbitration-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 42px);
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 400;
}

.arb-intro {
    font-size: 17px;
    color: var(--text);
    font-weight: 300;
}

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

.arb-item {
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.9), rgba(18, 18, 18, 0.95));
    border: 1px solid rgba(201, 169, 97, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s ease;
}

.arb-item:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 169, 97, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.arb-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.15), rgba(201, 169, 97, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.arb-icon i {
    font-size: 28px;
    color: var(--gold);
}

.arb-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    font-weight: 300;
}

.arb-item strong {
    color: var(--gold-light);
    font-weight: 500;
}

.arb-conclusion {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text);
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(201, 169, 97, 0.05);
    border-radius: 16px;
    border-left: 3px solid var(--gold);
}

.arb-conclusion strong {
    color: var(--gold-light);
    font-weight: 500;
}

/* New Values Section */
.about-values-new {
    padding: 120px 40px;
    background: linear-gradient(180deg, var(--dark) 0%, var(--black) 100%);
}

.values-new-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.values-new-header .section-label {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.values-new-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 42px);
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 400;
}

.values-intro {
    font-size: 17px;
    color: var(--text);
    font-weight: 300;
}

.values-new-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.value-new-item {
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.9), rgba(18, 18, 18, 0.95));
    border: 1px solid rgba(201, 169, 97, 0.1);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-new-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-new-item:hover::before {
    transform: scaleX(1);
}

.value-new-item:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 169, 97, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.value-new-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.15), rgba(201, 169, 97, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s;
}

.value-new-icon i {
    font-size: 24px;
    color: var(--gold);
    transition: all 0.4s;
}

.value-new-item:hover .value-new-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.value-new-item:hover .value-new-icon i {
    color: var(--black);
}

.value-new-item h3 {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.5;
}

.values-conclusion {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    font-weight: 300;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Vision Section */
.about-vision {
    padding: 120px 40px;
    background: radial-gradient(ellipse at center, rgba(201, 169, 97, 0.08) 0%, transparent 60%),
                var(--black);
    text-align: center;
}

.vision-container {
    max-width: 900px;
    margin: 0 auto;
}

.vision-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    box-shadow: 0 20px 50px rgba(201, 169, 97, 0.3);
}

.vision-icon i {
    font-size: 42px;
    color: var(--black);
}

.about-vision h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 42px);
    color: var(--white);
    margin-bottom: 30px;
    font-weight: 400;
}

.about-vision p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text);
    font-weight: 300;
}

.about-vision strong {
    color: var(--gold-light);
    font-weight: 500;
}

/* Legacy About Styles */
.about { 
    padding: 100px 40px; 
    background: var(--dark); 
}

.about-container { 
    max-width: 1200px; 
    margin: 0 auto; 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 60px; 
    align-items: center; 
}

.about-image { 
    position: relative; 
    height: 500px; 
    border-radius: 8px; 
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(166, 139, 79, 0.1)); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.about-content h3 { 
    font-family: 'Playfair Display', serif; 
    font-size: clamp(24px, 3vw, 32px); 
    color: var(--text-light); 
    margin-bottom: 20px; 
    font-weight: 400;
}

.about-content p { 
    font-size: 15px; 
    line-height: 1.8; 
    margin-bottom: 24px; 
    color: var(--text-muted);
    font-weight: 300;
}

.values-list { 
    list-style: none; 
    margin-top: 40px; 
}

.values-list li { 
    padding: 20px 24px; 
    margin-bottom: 12px; 
    background: rgba(30, 30, 30, 0.4); 
    border-left: 2px solid var(--gold); 
    border-radius: 6px; 
    font-size: 14px; 
    transition: all 0.3s; 
    font-weight: 300;
    color: var(--text);
}

.values-list li:hover { 
    transform: translateX(8px); 
    background: rgba(30, 30, 30, 0.6); 
    border-left-color: var(--gold-dark);
}
        
        /* Articles */
.articles { 
    padding: 100px 40px; 
    background: var(--black); 
}

/* Articles Grid - Premium Layout */
.articles-grid { 
    max-width: 1400px; 
    margin: 0 auto; 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); 
    gap: 40px;
    padding: 60px 40px;
}

/* Premium Article Cards */
.article-card { 
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.9), rgba(18, 18, 18, 0.95));
    border-radius: 20px; 
    overflow: hidden; 
    border: 1px solid rgba(201, 169, 97, 0.1); 
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); 
    opacity: 0; 
    transform: translateY(30px);
    position: relative;
    backdrop-filter: blur(10px);
}

.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

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

.article-card.visible { 
    opacity: 1; 
    transform: translateY(0); 
}

.article-card:hover { 
    transform: translateY(-10px) scale(1.02); 
    border-color: rgba(201, 169, 97, 0.3); 
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(201, 169, 97, 0.1);
}

.article-image { 
    height: 260px; 
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(166, 139, 79, 0.1)); 
    position: relative; 
    overflow: hidden;
}

.article-date { 
    position: absolute; 
    top: 20px; 
    left: 20px; 
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.95), rgba(166, 139, 79, 0.95));
    padding: 10px 18px; 
    border-radius: 30px; 
    font-size: 12px; 
    color: var(--black);
    letter-spacing: 0.5px; 
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
    z-index: 5;
}

.article-content { 
    padding: 28px; 
}

.article-title { 
    font-family: 'Playfair Display', serif; 
    font-size: 20px; 
    color: var(--text-light); 
    margin-bottom: 16px; 
    font-weight: 400; 
    line-height: 1.4;
}

.article-excerpt { 
    line-height: 1.7; 
    margin-bottom: 20px; 
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 300;
}

.article-link { 
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
    color: var(--gold); 
    text-decoration: none; 
    font-weight: 400; 
    font-size: 13px; 
    letter-spacing: 0.5px; 
    text-transform: none;
    transition: gap 0.3s; 
}

.article-link:hover { 
    gap: 12px; 
}
        
        /* Contact */
.contact { 
    padding: 100px 40px; 
    background: var(--dark); 
}

.contact-container { 
    max-width: 1200px; 
    margin: 0 auto; 
    display: grid; 
    grid-template-columns: 1.4fr 1fr; 
    gap: 60px; 
}

.contact-form { 
    background: rgba(30, 30, 30, 0.4); 
    padding: 40px; 
    border-radius: 8px; 
    border: 1px solid rgba(201, 169, 97, 0.1); 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.contact-form h3 { 
    font-family: 'Playfair Display', serif; 
    font-size: clamp(28px, 4vw, 36px); 
    color: var(--text-light); 
    margin-bottom: 32px; 
    font-weight: 400;
}

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

.form-group label { 
    display: block; 
    margin-bottom: 8px; 
    font-size: 12px; 
    letter-spacing: 0.5px; 
    text-transform: none;
    color: var(--gold); 
    font-weight: 400;
}

.form-group input, 
.form-group textarea { 
    width: 100%; 
    padding: 12px 16px; 
    background: rgba(44, 44, 44, 0.6); 
    border: 1px solid rgba(201, 169, 97, 0.2); 
    border-radius: 6px; 
    color: var(--text-light); 
    font-family: inherit;
    font-size: 14px; 
    transition: all 0.3s;
    font-weight: 300;
}

.form-group input:focus, 
.form-group textarea:focus { 
    outline: none; 
    border-color: var(--gold); 
    background: rgba(44, 44, 44, 0.8); 
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

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

.submit-btn { 
    width: 100%; 
    padding: 14px; 
    background: var(--gold); 
    border: none; 
    border-radius: 6px; 
    color: var(--black); 
    font-size: 13px; 
    font-weight: 400; 
    letter-spacing: 0.5px; 
    text-transform: none;
    cursor: pointer; 
    transition: all 0.3s;
}

.submit-btn:hover { 
    background: var(--gold-dark); 
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

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

.contact-item { 
    display: flex; 
    gap: 20px; 
    align-items: flex-start; 
    padding: 24px; 
    background: rgba(30, 30, 30, 0.4); 
    border-radius: 8px; 
    border: 1px solid rgba(201, 169, 97, 0.1); 
    transition: all 0.3s;
}

.contact-item:hover { 
    transform: translateX(4px); 
    border-color: var(--gold); 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.contact-icon { 
    width: 48px; 
    height: 48px; 
    background: rgba(201, 169, 97, 0.1); 
    border-radius: 6px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 20px; 
    flex-shrink: 0;
    color: var(--gold);
}

.contact-details h4 { 
    font-family: 'Playfair Display', serif; 
    font-size: 18px; 
    color: var(--text-light); 
    margin-bottom: 8px; 
    font-weight: 400;
}

.contact-details p, 
.contact-details a { 
    color: var(--text-muted); 
    text-decoration: none; 
    font-size: 14px; 
    line-height: 1.6; 
    transition: color 0.3s;
    font-weight: 300;
}

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

.whatsapp-btn { 
    display: inline-block; 
    padding: 12px 24px; 
    background: #25D366; 
    color: white; 
    text-decoration: none; 
    border-radius: 6px; 
    font-weight: 400; 
    font-size: 13px; 
    letter-spacing: 0.5px; 
    text-transform: none;
    transition: all 0.3s; 
    margin-top: 12px;
}

.whatsapp-btn:hover { 
    background: #128C7E; 
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}
        
        /* Footer */
footer { 
    background: var(--black); 
    padding: 80px 40px 30px; 
    border-top: 1px solid rgba(201, 169, 97, 0.1);
}

.footer-content { 
    max-width: 1200px; 
    margin: 0 auto; 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 50px; 
    margin-bottom: 50px; 
}

.footer-section h4 { 
    font-family: 'Playfair Display', serif; 
    font-size: 20px; 
    color: var(--text-light); 
    margin-bottom: 20px; 
    font-weight: 400;
}

.footer-section p { 
    line-height: 1.7; 
    opacity: 0.8; 
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 300;
}

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

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

.footer-links a { 
    color: var(--text-muted); 
    text-decoration: none; 
    transition: all 0.3s; 
    display: inline-block; 
    font-size: 14px;
    font-weight: 300;
}

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

.social-links { 
    display: flex; 
    gap: 12px; 
    margin-top: 20px; 
}

.social-link { 
    width: 40px; 
    height: 40px; 
    background: rgba(30, 30, 30, 0.6); 
    border: 1px solid rgba(201, 169, 97, 0.2); 
    border-radius: 6px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 16px; 
    transition: all 0.3s;
    color: var(--text);
    text-decoration: none;
}

.social-link:hover { 
    background: var(--gold); 
    border-color: var(--gold); 
    transform: translateY(-2px); 
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
    color: var(--black);
}

.footer-bottom { 
    text-align: center; 
    padding-top: 30px; 
    border-top: 1px solid rgba(201, 169, 97, 0.1); 
    opacity: 0.6; 
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 300;
}
        
        /* Modal */
.modal { 
    display: none; 
    position: fixed; 
    z-index: 5000; 
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0, 0, 0, 0.95); 
    backdrop-filter: blur(10px);
}

.modal-content { 
    background: rgba(18, 18, 18, 0.98); 
    margin: 5% auto; 
    padding: 50px; 
    border: 1px solid rgba(201, 169, 97, 0.2); 
    border-radius: 8px; 
    width: 90%; 
    max-width: 900px; 
    max-height: 85vh; 
    overflow-y: auto; 
    position: relative; 
    animation: slideUp 0.4s;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

.modal-close { 
    position: absolute; 
    right: 20px; 
    top: 20px; 
    font-size: 28px; 
    color: var(--text-muted); 
    cursor: pointer; 
    width: 36px; 
    height: 36px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 6px; 
    background: rgba(30, 30, 30, 0.6); 
    transition: all 0.3s;
    border: 1px solid rgba(201, 169, 97, 0.1);
}

.modal-close:hover { 
    background: var(--gold); 
    color: var(--black);
    border-color: var(--gold);
}

.modal-title { 
    font-family: 'Playfair Display', serif; 
    font-size: clamp(24px, 4vw, 32px); 
    color: var(--text-light); 
    margin-bottom: 24px; 
    font-weight: 400;
}

.modal-body { 
    font-size: 15px; 
    line-height: 1.8;
    color: var(--text-muted);
    font-weight: 300;
}

.modal-body img { 
    max-width: 100%; 
    height: auto; 
    border-radius: 6px; 
    margin-top: 20px;
}
        
        /* Page Hero */
.page-hero {
    padding: 120px 40px 80px;
    background: var(--dark);
    text-align: center;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 42px);
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 400;
}

.page-hero-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 300;
}

.service-card-link,
/* Article Card Link */
.article-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

.article-card-link:focus {
    outline: none;
}

.article-card-link:focus .article-card {
    border-color: var(--gold);
}

/* Breadcrumb */
.breadcrumb-nav {
    background: var(--dark);
    padding: 100px 40px 20px;
    position: relative;
    z-index: 1;
}

.breadcrumb-nav ol {
    list-style: none;
    display: flex;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb-nav a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

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

.breadcrumb-nav li:last-child {
    color: var(--gold);
}

/* Service Detail Hero - Premium Design */
.service-hero {
    position: relative;
    padding: 0;
    background: var(--dark);
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background overlay */
.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(201, 169, 97, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(201, 169, 97, 0.05) 0%, transparent 40%),
        linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(18, 18, 18, 0.9) 100%);
    z-index: 1;
}

/* Floating decorative element */
.service-hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.03) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.service-hero-container {
    position: relative;
    z-index: 5;
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 60px 80px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

/* Service Hero Image - Left Side */
.service-hero-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(201, 169, 97, 0.1);
}

.service-hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 24px;
    z-index: 2;
    pointer-events: none;
}

/* Decorative corner accent */
.service-hero-image::after {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 60px;
    height: 60px;
    border-left: 2px solid var(--gold);
    border-top: 2px solid var(--gold);
    z-index: 3;
}

.service-hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, filter 0.4s;
    filter: saturate(0.9);
}

.service-hero-image:hover img {
    transform: scale(1.05);
    filter: saturate(1.1);
}

/* Service Hero Content - Right Side */
.service-hero-content {
    text-align: left;
}

.service-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 24px;
    margin-bottom: 30px;
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.3);
    animation: float 6s ease-in-out infinite;
}

.service-icon-wrapper i {
    font-size: 38px;
    color: var(--black);
}

.service-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 400;
    line-height: 1.2;
}

.service-hero h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin-top: 24px;
}

.service-hero-description {
    font-size: 18px;
    color: var(--text);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 300;
}

.service-hero .cta-btn {
    padding: 18px 40px;
    font-size: 14px;
    letter-spacing: 1.5px;
}

/* Service Content - Premium */
.service-content {
    padding: 100px 40px;
    background: var(--black);
    position: relative;
}

.service-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

.service-content-container {
    max-width: 1000px;
    margin: 0 auto;
}

.service-description-box {
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.9), rgba(18, 18, 18, 0.95));
    padding: 50px;
    border-radius: 24px;
    border: 1px solid rgba(201, 169, 97, 0.1);
    margin-bottom: 80px;
    position: relative;
    backdrop-filter: blur(10px);
}

.service-description-box::before {
    content: '"';
    position: absolute;
    top: 30px;
    left: 40px;
    font-family: 'Playfair Display', serif;
    font-size: 100px;
    color: rgba(201, 169, 97, 0.1);
    line-height: 1;
}

.service-description-box p {
    font-size: 17px;
    line-height: 2;
    color: var(--text);
    font-weight: 300;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.service-description-box p:first-child {
    font-size: 19px;
    color: var(--text-light);
}

.service-description-box p:last-child {
    margin-bottom: 0;
}

/* Why Choose Section - Premium */
.why-choose {
    margin-bottom: 80px;
    position: relative;
}

.why-choose h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 40px);
    color: var(--white);
    margin-bottom: 50px;
    font-weight: 400;
    text-align: center;
    position: relative;
}

.why-choose h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

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

/* Feature Card - Premium */
.feature-card {
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.9), rgba(18, 18, 18, 0.95));
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(201, 169, 97, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 169, 97, 0.3);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(201, 169, 97, 0.1);
}

.feature-card i {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.15), rgba(201, 169, 97, 0.05));
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 24px;
    transition: all 0.4s;
}

.feature-card:hover i {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 400;
    transition: color 0.3s;
}

.feature-card:hover h3 {
    color: var(--gold-light);
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.6;
}

/* Related Services/Articles */
/* Related Services Section - Premium */
.related-section {
    padding: 100px 40px;
    background: linear-gradient(180deg, var(--black) 0%, var(--dark) 100%);
    position: relative;
}

.related-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--gold));
}

.related-section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.related-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 40px);
    color: var(--white);
    margin-bottom: 50px;
    font-weight: 400;
    text-align: center;
    position: relative;
}

.related-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* Article Detail Styles */
.article-header {
    padding: 60px 40px 40px;
    background: var(--dark);
}

.article-header-container {
    max-width: 900px;
    margin: 0 auto;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--text-muted);
}

.article-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 5vw, 42px);
    color: var(--text-light);
    margin-bottom: 24px;
    font-weight: 400;
    line-height: 1.3;
}

.article-excerpt-large {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
}

.article-image-section {
    padding: 0 40px 40px;
    background: var(--dark);
}

.article-image-section img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.article-content-section {
    padding: 60px 40px 80px;
    background: var(--black);
}

.article-content-section article {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text);
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
}

.article-content-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: var(--text-light);
    margin: 40px 0 20px;
    font-weight: 400;
}

.article-content-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--gold);
    margin: 32px 0 16px;
    font-weight: 400;
}

.article-content-section p {
    margin-bottom: 24px;
}

.article-content-section li {
    margin-left: 24px;
    margin-bottom: 8px;
}

/* CTA Section */
/* CTA Section - Premium Design */
.cta-section {
    padding: 120px 40px;
    background: 
        radial-gradient(ellipse at center, rgba(201, 169, 97, 0.08) 0%, transparent 60%),
        linear-gradient(135deg, var(--dark) 0%, var(--black) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.3), transparent);
}

.cta-section-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 48px);
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 400;
}

.cta-section p {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 45px;
    font-weight: 300;
    line-height: 1.7;
}

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

.cta-buttons .cta-btn {
    padding: 18px 45px;
    font-size: 14px;
    letter-spacing: 1.5px;
}

.cta-buttons a {
    text-decoration: none;
}

/* Articles Page - Enhanced Design */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

/* Article Card - Enhanced Styles */
.article-card {
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.9), rgba(18, 18, 18, 0.95));
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(201, 169, 97, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    backdrop-filter: blur(10px);
}

.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: 10;
}

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

.article-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(201, 169, 97, 0.1);
    border-color: rgba(201, 169, 97, 0.3);
}

.article-card .article-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

/* Image overlay gradient */
.article-card .article-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(18, 18, 18, 1), transparent);
    pointer-events: none;
    z-index: 2;
}

.article-card .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s;
    filter: saturate(0.9);
}

.article-card:hover .article-image img {
    transform: scale(1.1);
    filter: saturate(1.1);
}

.article-card .article-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Decorative corner */
.article-card .article-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 30px;
    width: 40px;
    height: 40px;
    border-right: 1px solid rgba(201, 169, 97, 0.2);
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    opacity: 0;
    transition: opacity 0.4s;
}

.article-card:hover .article-content::before {
    opacity: 1;
}

.article-card .article-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 400;
    line-height: 1.4;
    transition: color 0.3s;
}

.article-card:hover .article-title {
    color: var(--gold-light);
}

.article-card .article-excerpt {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 25px;
    flex: 1;
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card .article-link {
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    margin-top: auto;
    padding: 12px 0;
    border-top: 1px solid rgba(201, 169, 97, 0.1);
}

.article-card .article-link i {
    font-size: 11px;
    transition: transform 0.3s;
}

.article-card:hover .article-link {
    gap: 15px;
    color: var(--gold-light);
}

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

/* Service Link Wrapper */
.service-link-wrapper {
    text-decoration: none;
    display: block;
}

/* Article Date */
/* Article Date Badge - Premium */
.article-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.95), rgba(166, 139, 79, 0.95));
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 12px;
    color: var(--black);
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
    z-index: 5;
    transition: all 0.3s;
}

.article-card:hover .article-date {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.4);
}

/* Responsive - Tablet & Desktop */
@media (max-width: 1200px) { 
    .about-experience-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-experience-image {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .about-experience-content {
        padding-left: 0;
        text-align: center;
    }
    
    .experience-divider {
        margin: 40px auto;
    }
    
    .about-stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-item:nth-child(2)::after {
        display: none;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-container, 
    .contact-container { 
        grid-template-columns: 1fr; 
    } 
    
    .certificates-grid { 
        grid-template-columns: 1fr; 
    } 
    
    .services-grid { 
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); 
    } 
    
    /* Multilingual Section Tablet */
    .multilingual-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .multilingual-content {
        padding: 0 20px;
        text-align: center;
    }
    
    .multilingual-languages {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
    } 
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-light);
    transition: all 0.3s ease;
    display: block;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    display: block;
    max-height: 500px;
}

.mobile-menu-list {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-menu-list li {
    margin-bottom: 15px;
}

.mobile-menu-list a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
    transition: color 0.3s;
}

.mobile-menu-list a:hover,
.mobile-menu-list a.active {
    color: var(--gold);
}

.mobile-lang-selector {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
}

.mobile-lang-selector .lang-selector {
    justify-content: center;
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
}

@media (max-width: 768px) { 
    /* Navigation - Ana navigasyon için */
    .main-nav { 
        padding: 15px 20px !important; 
    } 
    
    .nav-container {
        position: relative;
    } 
    
    .nav-logo img { 
        height: 40px; 
    } 
    
    /* Desktop menüyü gizle */
    .nav-menu {
        display: none !important;
    }
    
    /* Mobil menü toggle'ı göster */
    .mobile-menu-toggle {
        display: flex !important;
        position: relative;
        z-index: 1001;
    }
    
    /* Mobil menü varsayılan */
    .mobile-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(201, 169, 97, 0.2);
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    /* Mobil menü aktif */
    .mobile-menu.active {
        display: block !important;
    } 
    
    /* Grid düzenlemeleri */
    .services-grid, 
    .languages-grid, 
    .articles-grid { 
        grid-template-columns: 1fr; 
        padding: 40px 20px;
    }
    
    .articles-grid {
        gap: 24px;
    } 
    
    .hero-title,
    .slide-title { 
        font-size: 32px; 
    } 
    
    .hero-slider {
        min-height: 70vh;
        padding-top: 70px;
    }
    
    .slider-container {
        height: calc(70vh - 70px);
        min-height: 450px;
    }
    
    .slider-controls {
        bottom: 20px;
        gap: 15px;
    }
    
    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .slide-content {
        padding: 30px 15px;
    }
    
    .slide-description {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    /* Hide decorative elements on mobile */
    .slide-badge,
    .slide-number,
    .slide-decor,
    .slider-particles,
    .scroll-indicator {
        display: none !important;
    }
    
    .progress-bar {
        display: none;
    }
    
    .slide-subtitle {
        font-size: 10px;
        letter-spacing: 2px;
        gap: 10px;
    }
    
    .slide-subtitle::before,
    .slide-subtitle::after {
        width: 30px;
    }
    
    .slide-tagline {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .slide-cta {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        width: 100%;
    }
    
    .slide-cta .cta-btn {
        padding: 14px 30px;
        font-size: 12px;
        width: auto;
        min-width: 220px;
        max-width: 280px;
        justify-content: center;
        text-align: center;
    }
    
    .slide::before,
    .slide::after {
        display: none;
    }
    
    section { 
        padding: 50px 15px; 
    } 
    
    .contact-form, 
    .modal-content { 
        padding: 25px 15px; 
    } 
    
    .about-image { 
        height: 250px; 
    }
    
    /* About Page Mobile */
    .about-hero {
        min-height: 60vh;
        padding-top: 70px;
    }
    
    .about-hero h1 {
        font-size: 36px;
    }
    
    .about-hero-subtitle {
        font-size: 15px;
    }
    
    .about-hero-badge {
        padding: 10px 20px;
        font-size: 10px;
    }
    
    .about-hero-scroll {
        display: none;
    }
    
    .about-experience {
        padding: 60px 20px;
    }
    
    .about-experience-container {
        gap: 50px;
    }
    
    .about-experience-image img {
        height: 350px;
    }
    
    .about-experience-image::before,
    .about-experience-image::after {
        width: 50px;
        height: 50px;
        top: -10px;
        left: -10px;
    }
    
    .about-experience-image::after {
        bottom: -10px;
        right: -10px;
    }
    
    .experience-badge {
        padding: 20px 30px;
        right: 20px;
        bottom: -20px;
    }
    
    .experience-badge .number {
        font-size: 36px;
    }
    
    .experience-badge .text {
        font-size: 10px;
    }
    
    .about-experience-content h2 {
        font-size: 28px;
    }
    
    .about-experience-content h3 {
        font-size: 20px;
    }
    
    .about-experience-content p {
        font-size: 15px;
    }
    
    .about-stats {
        padding: 60px 20px;
    }
    
    .about-stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-item::after {
        display: none;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .stat-plus {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .about-values {
        padding: 60px 20px;
    }
    
    .about-values .section-header h2 {
        font-size: 28px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-card {
        padding: 35px 25px;
    }
    
    .value-icon {
        width: 70px;
        height: 70px;
    }
    
    .value-icon i {
        font-size: 28px;
    }
    
    .value-card h3 {
        font-size: 20px;
    }
    
    /* About Page New Sections Mobile */
    .about-intro {
        padding: 60px 20px;
    }
    
    .about-intro-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .intro-icon {
        margin: 0 auto;
    }
    
    .intro-lead {
        font-size: 17px;
    }
    
    .belt-road-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .belt-road-content {
        text-align: center;
    }
    
    .belt-road-content h2 {
        font-size: 26px;
    }
    
    .belt-road-icon {
        width: 140px;
        height: 140px;
    }
    
    .belt-road-icon i {
        font-size: 60px;
    }
    
    .belt-road-badges {
        flex-direction: column;
        width: 100%;
    }
    
    .br-badge {
        justify-content: center;
    }
    
    .about-arbitration {
        padding: 60px 20px;
    }
    
    .arbitration-items {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .arb-item {
        padding: 30px 20px;
    }
    
    .arb-conclusion {
        padding: 20px;
        font-size: 15px;
    }
    
    .about-values-new {
        padding: 60px 20px;
    }
    
    .values-new-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .values-new-grid .value-new-item:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
    
    .value-new-item {
        padding: 25px 15px;
    }
    
    .value-new-icon {
        width: 50px;
        height: 50px;
    }
    
    .value-new-icon i {
        font-size: 20px;
    }
    
    .value-new-item h3 {
        font-size: 13px;
    }
    
    .about-vision {
        padding: 60px 20px;
    }
    
    .vision-icon {
        width: 80px;
        height: 80px;
    }
    
    .vision-icon i {
        font-size: 32px;
    }
    
    .about-vision h2 {
        font-size: 26px;
    }
    
    .about-vision p {
        font-size: 16px;
    }
    
    /* Multilingual Section Mobile */
    .multilingual-section {
        padding: 60px 20px;
    }
    
    .multilingual-content h2 {
        font-size: 28px;
    }
    
    .multilingual-desc {
        font-size: 15px;
    }
    
    .multilingual-languages {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .language-item {
        padding: 20px 15px;
    }
    
    .lang-flag {
        font-size: 32px;
    }
    
    .lang-name {
        font-size: 13px;
    }
    
    .service-image {
        height: 180px;
        margin-bottom: 15px;
    }
    
    .service-card {
        padding: 0;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
        top: 165px;
        left: 20px;
        border-radius: 12px;
    }
    
    .service-card-content {
        padding: 30px 20px 20px;
    }
    
    .service-title {
        font-size: 18px;
        margin-top: 10px;
    }
    
    .service-description {
        font-size: 14px;
        -webkit-line-clamp: 2;
    }
    
    .service-number {
        font-size: 60px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 40px 20px;
    }
    
    /* Page Hero Mobile */
    .page-hero {
        padding: 100px 20px 60px;
    }
    
    .page-hero h1 {
        font-size: 28px;
    }
    
    /* Breadcrumb Mobile */
    .breadcrumb-nav {
        padding: 80px 20px 15px;
    }
    
    .breadcrumb-nav ol {
        font-size: 12px;
    }
    
    /* Service Detail Mobile */
    .service-hero {
        min-height: auto;
        padding: 0;
    }
    
    .service-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 100px 20px 60px;
    }
    
    .service-hero-image {
        border-radius: 16px;
    }
    
    .service-hero-image::after {
        display: none;
    }
    
    .service-hero-image img {
        height: 300px;
    }
    
    .service-hero-content {
        text-align: center;
    }
    
    .service-icon-wrapper {
        width: 70px;
        height: 70px;
        border-radius: 18px;
        margin-bottom: 24px;
    }
    
    .service-icon-wrapper i {
        font-size: 28px;
    }
    
    .service-hero h1 {
        font-size: 28px;
    }
    
    .service-hero h1::after {
        margin: 20px auto 0;
    }
    
    .service-hero-description {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .service-content {
        padding: 60px 20px;
    }
    
    .service-content::before {
        height: 50px;
    }
    
    .service-description-box {
        padding: 30px 20px;
        border-radius: 16px;
        margin-bottom: 50px;
    }
    
    .service-description-box::before {
        font-size: 60px;
        top: 15px;
        left: 20px;
    }
    
    .service-description-box p {
        font-size: 15px;
    }
    
    .service-description-box p:first-child {
        font-size: 16px;
    }
    
    .why-choose h2 {
        font-size: 24px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-card i {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .feature-card h3 {
        font-size: 18px;
    }
    
    /* Related Section Mobile */
    .related-section {
        padding: 60px 20px;
    }
    
    .related-section::before {
        height: 40px;
    }
    
    .related-section h2 {
        font-size: 24px;
        margin-bottom: 35px;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Article Detail Mobile */
    .article-header {
        padding: 40px 20px 30px;
    }
    
    .article-header h1 {
        font-size: 26px;
    }
    
    .article-excerpt-large {
        font-size: 16px;
    }
    
    .article-image-section {
        padding: 0 20px 30px;
    }
    
    .article-content-section {
        padding: 40px 20px 60px;
    }
    
    .article-content-section article {
        font-size: 15px;
    }
    
    /* CTA Section Mobile */
    .cta-section {
        padding: 60px 20px;
    }
    
    .cta-section h2 {
        font-size: 26px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .cta-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    /* Contact Mobile */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Footer Mobile */
    footer {
        padding: 50px 20px 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Languages Grid Mobile */
    .languages-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .language-card {
        padding: 20px 10px;
    }
    
    .language-flag {
        font-size: 28px;
    }
    
    .language-name {
        font-size: 12px;
    }
}

/* Very Small Screens */
@media (max-width: 480px) {
    .nav-logo img {
        height: 35px;
    }
    
    .hero-title,
    .slide-title {
        font-size: 26px;
    }
    
    .slide-subtitle {
        font-size: 10px;
        letter-spacing: 2px;
    }
    
    .slide-tagline {
        font-size: 14px;
    }
    
    .slide-description {
        font-size: 13px;
    }
    
    .cta-btn {
        padding: 12px 24px;
        font-size: 12px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 10px;
    }
    
    .page-hero h1 {
        font-size: 24px;
    }
    
    .service-hero h1 {
        font-size: 24px;
    }
    
    .article-header h1 {
        font-size: 22px;
    }
    
    .service-description-box {
        padding: 20px;
    }
    
    .service-description-box p {
        font-size: 14px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-card i {
        font-size: 28px;
    }
    
    .feature-card h3 {
        font-size: 15px;
    }
    
    .feature-card p {
        font-size: 13px;
    }
    
    .article-card .article-image {
        height: 220px;
    }
    
    .article-card .article-content {
        padding: 24px;
    }
    
    .article-card .article-title {
        font-size: 18px;
    }
    
    .article-card .article-excerpt {
        font-size: 14px;
        -webkit-line-clamp: 2;
    }
    
    .article-date {
        padding: 8px 14px;
        font-size: 11px;
    }
    
    .articles-grid {
        gap: 30px;
        padding: 40px 20px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .mobile-menu-list a {
        font-size: 15px;
        padding: 10px 0;
    }
    
    .lang-selector {
        gap: 4px;
        padding: 4px 8px;
    }
    
    .lang-btn {
        padding: 5px 8px;
        font-size: 10px;
    }
}

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

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

::-webkit-scrollbar-thumb { 
    background: rgba(201, 169, 97, 0.3); 
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover { 
    background: rgba(201, 169, 97, 0.5);
}

/* iOS Safari Fix */
@supports (-webkit-touch-callout: none) {
    .mobile-menu {
        -webkit-overflow-scrolling: touch;
    }
    
    body.menu-open {
        position: fixed;
        width: 100%;
    }
}
