:root {
    --primary-color: #c9a227;
    --primary-dark: #a88520;
    --secondary-color: #1a1a2e;
    --dark-bg: #0f0f1a;
    --darker-bg: #0a0a12;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --text-dark: #333333;
    --card-bg: #16162a;
    --border-color: #2a2a4a;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

.top-bar {
    background-color: var(--darker-bg);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-contact {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.top-contact a {
    color: var(--text-gray);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

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

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 4px 10px;
}

.lang-btn {
    color: var(--text-gray);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

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

.lang-sep {
    color: var(--border-color);
    font-size: 12px;
}

.btn-book {
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-book:hover {
    background: var(--primary-dark);
}

.navbar {
    background-color: var(--secondary-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-light);
    font-weight: 500;
    padding: 10px 0;
    position: relative;
}

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

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

.nav-menu a.active {
    color: var(--primary-color);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: 0.3s;
}

/* ===== HERO - CİNEMATİK VİDEO AÇILIŞ STİLİ ===== */
@keyframes heroBgZoom {
    from { transform: scale(1.08); }
    to   { transform: scale(1); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes lineExpand {
    from { width: 0; }
    to   { width: 80px; }
}
@keyframes dividerExpand {
    from { width: 0; opacity: 0; }
    to   { width: 200px; opacity: 1; }
}
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 0.7; }
    50%       { transform: translateY(8px); opacity: 1; }
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
    transform: scale(1.05);
    transition: opacity 1.5s ease, transform 6s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: var(--primary-color);
    width: 24px;
    border-radius: 4px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(5, 5, 15, 0.65) 0%,
        rgba(5, 5, 15, 0.75) 50%,
        rgba(5, 5, 15, 0.88) 100%
    );
    z-index: 1;
}

.hero-center {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0 20px;
}

.hero-line {
    height: 1px;
    background: var(--primary-color);
    width: 80px;
    opacity: 0.8;
}
.hero-line-top  { margin-bottom: 28px; }
.hero-line-bottom { margin-top: 36px; }

.hero-logo-wrap {
    margin-bottom: 20px;
}

.hero-logo-wrap img {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 4px 28px rgba(201,162,39,0.5));
}

.hero-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    width: 220px;
    margin-bottom: 24px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-shadow: 0 2px 24px rgba(0,0,0,0.7);
}

.hero-title span {
    color: var(--primary-color);
}

.hero-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 32px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--primary-color);
    font-size: 20px;
    animation: scrollBounce 2s ease-in-out infinite;
}

/* keep btn-primary styles here so other pages still use it */
.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 15px 35px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
/* ===== HERO SONU ===== */

.section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.section-header h2 span {
    color: var(--primary-color);
}

.section-header p {
    color: var(--text-gray);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.welcome-section {
    background: var(--secondary-color);
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.welcome-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.welcome-images img {
    border-radius: 8px;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.welcome-images img:first-child {
    grid-column: span 2;
    height: 250px;
}

.welcome-text h3 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.welcome-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.welcome-text p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.welcome-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.welcome-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.welcome-author h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.welcome-author span {
    color: var(--text-gray);
    font-size: 14px;
}

.stats-row {
    display: flex;
    gap: 20px;
}

.stat-box {
    background: var(--primary-color);
    padding: 20px 30px;
    border-radius: 8px;
    text-align: center;
}

.stat-box h3 {
    font-size: 32px;
    color: var(--dark-bg);
    margin-bottom: 5px;
}

.stat-box p {
    color: var(--dark-bg);
    font-size: 14px;
    font-weight: 500;
}

.services-section {
    background: var(--dark-bg);
}

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

.service-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

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

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 20px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.team-section {
    background: var(--secondary-color);
}

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

.team-card {
    text-align: center;
}

.team-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 4px solid var(--primary-color);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.team-card p {
    color: var(--primary-color);
    font-size: 14px;
}

.team-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
}

.team-image-placeholder i {
    font-size: 64px;
    color: rgba(201,162,39,0.4);
}

.references-section {
    background: var(--dark-bg);
}

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

.reference-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.reference-card:hover {
    border-color: var(--primary-color);
}

.reference-logo {
    width: 120px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.reference-logo img {
    max-width: 80%;
    max-height: 60px;
}

.reference-logo i {
    font-size: 40px;
    color: var(--text-gray);
}

.reference-card h4 {
    font-size: 16px;
    color: var(--text-gray);
}

.contact-section {
    background: var(--secondary-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

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

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

.contact-item i {
    width: 50px;
    height: 50px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

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

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

.contact-form {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 8px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: var(--dark-bg);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--primary-dark);
}

.footer {
    background: var(--darker-bg);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.footer-logo img {
    height: 70px;
    margin-bottom: 20px;
}

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

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--text-light);
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul a {
    color: var(--text-gray);
    font-size: 14px;
}

.footer-col ul a:hover {
    color: var(--primary-color);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-gray);
    font-size: 14px;
}

.contact-info i {
    color: var(--primary-color);
    margin-top: 4px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 14px;
    padding: 24px 0 10px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(201,162,39,0.35);
    color: var(--text-gray);
    font-size: 16px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
}

.social-icon:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

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

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.page-header {
    background: linear-gradient(135deg, rgba(15, 15, 26, 0.95) 0%, rgba(26, 26, 46, 0.9) 100%),
                url('../images/page-header-bg.jpg') center/cover no-repeat;
    padding: 100px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    color: var(--text-gray);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

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

.about-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.mission-box {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.mission-box h4 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 15px;
}

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

@media (max-width: 1024px) {
    .services-grid,
    .team-grid,
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .welcome-content,
    .contact-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        justify-content: center;
    }

    .top-contact {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--secondary-color);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu a {
        display: block;
        padding: 15px 0;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero {
        min-height: 100svh;
    }

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

    .hero-sub {
        font-size: 13px;
        letter-spacing: 1.5px;
    }

    .hero-logo-wrap img {
        height: 80px;
    }

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .welcome-images {
        grid-template-columns: 1fr;
    }

    .welcome-images img:first-child {
        grid-column: span 1;
    }

    .stats-row {
        flex-direction: column;
    }

    .stat-box {
        width: 100%;
    }

    .team-image {
        width: 150px;
        height: 150px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 26px;
    }

    .logo img {
        height: 50px;
    }

    .contact-form {
        padding: 25px;
    }
}

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

    .hero-text h1 {
        font-size: 24px;
    }

    .btn-primary {
        padding: 12px 25px;
        font-size: 14px;
    }

    .service-card,
    .reference-card {
        padding: 20px;
    }

    .top-actions {
        flex-direction: column;
        gap: 10px;
    }

    .btn-book {
        width: 100%;
        text-align: center;
    }
}

/* ===== ABOUT PAGE - NEW ELEMENTS ===== */
.about-tagline {
    font-style: italic;
    color: var(--primary-color);
    font-size: 15px;
    margin-top: 12px;
    border-left: 3px solid var(--primary-color);
    padding-left: 12px;
}

[dir="rtl"] .about-tagline {
    border-left: none;
    border-right: 3px solid var(--primary-color);
    padding-left: 0;
    padding-right: 12px;
}

.about-units {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,162,39,0.2);
    border-radius: 12px;
    padding: 40px;
    margin: 50px 0;
}

.about-units h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 24px;
    text-align: center;
}

.units-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.unit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 14px;
    color: var(--text-light);
    transition: border-color 0.3s, background 0.3s;
}

.unit-item:hover {
    border-color: var(--primary-color);
    background: rgba(201,162,39,0.06);
}

.unit-item i {
    color: var(--primary-color);
    font-size: 16px;
    flex-shrink: 0;
}

/* ===== SERVICES PAGE - DETAILED CARDS ===== */
.services-grid-5 {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card-full {
    text-align: left;
    padding: 40px;
}

[dir="rtl"] .service-card-full {
    text-align: right;
}

.service-detail {
    margin-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 18px;
}

.service-detail p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 10px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 14px;
}

.service-list li i {
    color: var(--primary-color);
    flex-shrink: 0;
}

.service-cta-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 24px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.service-cta-btn:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
}

/* ===== ARTICLES PAGE ===== */
.articles-section {
    padding-top: 20px;
}

.article-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.article-card:hover {
    border-color: rgba(201,162,39,0.35);
}

.article-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 36px;
    cursor: pointer;
    gap: 20px;
}

.article-header-left {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    flex: 1;
}

.article-number {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: rgba(201,162,39,0.35);
    line-height: 1;
    flex-shrink: 0;
    min-width: 52px;
}

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

.article-summary {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

.article-toggle-icon {
    color: var(--primary-color);
    font-size: 16px;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.article-body {
    display: none;
    padding: 0 36px 36px;
    border-top: 1px solid rgba(255,255,255,0.06);
    animation: fadeIn 0.3s ease;
}

.article-body.open {
    display: block;
}

.article-body h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 18px;
    margin: 24px 0 10px;
}

.article-body h3:first-child {
    margin-top: 24px;
}

.article-body p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.article-body ul {
    padding-left: 20px;
    margin: 12px 0;
}

[dir="rtl"] .article-body ul {
    padding-left: 0;
    padding-right: 20px;
}

.article-body ul li {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 6px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== DISCLAIMER PAGE ===== */
.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,162,39,0.2);
    border-radius: 12px;
    padding: 50px 60px;
}

.disclaimer-box h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 24px;
}

.disclaimer-box p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.disclaimer-box ul {
    padding-left: 20px;
    margin: 16px 0;
}

[dir="rtl"] .disclaimer-box ul {
    padding-left: 0;
    padding-right: 20px;
}

.disclaimer-box ul li {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .article-header {
        padding: 22px 20px;
    }

    .article-header-left {
        gap: 14px;
    }

    .article-number {
        font-size: 26px;
        min-width: 36px;
    }

    .article-header h2 {
        font-size: 16px;
    }

    .article-body {
        padding: 0 20px 24px;
    }

    .service-card-full {
        padding: 24px;
    }

    .disclaimer-box {
        padding: 30px 20px;
    }

    .about-units {
        padding: 24px 20px;
    }

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