/* CSS Dəyişənləri */
:root {
    --primary-color: #153045;
    --primary-light: #3d6080;
    --primary-dark: #0c1f2e;
    --accent-color: #c4a84d;
    --accent-hover: #d4bc66;
    --accent-glow: rgba(196, 168, 77, 0.25);
    --bg-light: #f7f9fa;
    --bg-white: #ffffff;
    --text-dark: #0a0e12;
    --text-light: #f4f8fa;
    --text-muted: #6b8a9d;
    --border-color: #dde6ec;
    
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-serif: 'Playfair Display', Georgia, Cambria, serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 8px -2px rgba(0, 0, 0, 0.06), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 12px 20px -4px rgba(0, 0, 0, 0.06), 0 4px 8px -2px rgba(0, 0, 0, 0.03);
    --shadow-premium: 0 24px 48px -12px rgba(21, 48, 69, 0.2);
    
    --container-width: 1200px;
}

/* Əsas Sıfırlama (Reset) */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

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

ul {
    list-style: none;
}

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

svg {
    width: 100%;
    height: 100%;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Düymələr (Buttons) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 4px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    box-shadow: 0 0 15px var(--accent-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--text-light);
    transform: translateY(-2px);
}

.btn-block {
    display: width;
    width: 100%;
}

/* Naviqasiya & Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(21, 48, 69, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
}

.main-header.scrolled {
    padding: 0.6rem 0;
    box-shadow: var(--shadow-md);
    background-color: var(--primary-color);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition-normal);
}

.main-header.scrolled .header-container {
    height: 60px;
}

/* Logo */
.logo {
    display: flex;
    flex-direction: column;
}

.logo-accent {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 2px;
    line-height: 1.1;
}

.logo-sub {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-light);
    opacity: 0.8;
}

/* Menu */
.main-nav ul {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 0;
    opacity: 0.8;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
    opacity: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition-normal);
}

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

/* Mobil Menyu Açarı */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 5px;
}

.nav-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition-normal);
}

/* Hero Bölməsi */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-color: #0c1f2e;
    background-image: url('assets/hero_business_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: var(--text-light);
    padding-top: 80px; /* Header üçün yer */
}

/* CSS-dən zəngin həndəsi naxış əlavə etmək */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(rgba(61, 96, 128, 0.1) 1px, transparent 0),
        radial-gradient(rgba(61, 96, 128, 0.05) 2px, transparent 0);
    background-size: 40px 40px, 80px 80px;
    background-position: 0 0, 20px 20px;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 31, 46, 0.88) 0%, rgba(21, 48, 69, 0.7) 100%);
}

.hero-container {
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 750px;
}

.hero-director-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-left: 50px;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 1px;
    background-color: var(--accent-color);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.hero-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 600px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* Statistika Banneri (Stats Section) */
.stats-banner {
    position: relative;
    margin-top: -60px; /* Hero üzərinə sürüşdürülmə */
    z-index: 20;
    padding: 0 1.5rem;
}

.stats-grid {
    background-color: var(--bg-white);
    border-radius: 6px;
    box-shadow: var(--shadow-premium);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.stat-card {
    padding: 2.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-right: 1px solid var(--border-color);
    background-color: var(--bg-white);
    transition: var(--transition-normal);
}

.stat-card:last-child {
    border-right: none;
}

.stat-card:hover {
    background-color: rgba(61, 96, 128, 0.03);
}

.stat-icon-wrapper {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background-color: rgba(21, 48, 69, 0.05);
    color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.stat-svg {
    stroke-width: 1.5px;
}

.stat-info .stat-number {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.stat-info .stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
    font-weight: 500;
}

/* Şrift və Başlıq Üslubları */
.section-header {
    margin-bottom: 3.5rem;
}

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

.section-tagline {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    color: var(--primary-color);
    font-weight: 700;
}

.section-line {
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin-top: 1rem;
}

.section-header.align-center .section-line {
    margin: 1rem auto 0 auto;
}

/* Haqqımızda Bölməsi */
.about-section {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

.about-sub-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.about-sub-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
    margin: 0.8rem auto 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.about-lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-light);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.about-description {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

/* Rəhbərlik Kartı */
.leadership-card {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 4px;
    border-left: 4px solid var(--accent-color);
}

.leadership-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(61, 96, 128, 0.08);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.leadership-photo {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent-color);
    box-shadow: 0 2px 8px rgba(21, 48, 69, 0.15);
}

.leadership-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.leadership-details .leadership-title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.leadership-details .leadership-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0.1rem 0;
}

.leadership-details .leadership-post {
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* Haqqımızda Bölməsi - Sağ tərəf (Badge Card) */
.about-badge-side {
    height: 100%;
    display: flex;
    align-items: stretch;
}

.badge-card {
    position: relative;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 3rem;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.badge-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: rgba(61, 96, 128, 0.05);
}

.badge-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--accent-color);
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 5;
}

.badge-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 5;
    font-weight: 300;
}

.badge-checklist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 5;
}

.badge-checklist li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.check-svg {
    width: 18px;
    height: 18px;
    color: var(--accent-color);
    flex-shrink: 0;
}

/* Xidmətlərimiz Bölməsi */
.services-section {
    padding: 7rem 0;
    background-color: var(--bg-light);
}

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

.service-card {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(61, 96, 128, 0.3);
}

.service-icon-wrapper {
    width: 55px;
    height: 55px;
    border-radius: 4px;
    background-color: rgba(21, 48, 69, 0.05);
    color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    margin-bottom: 2rem;
    transition: var(--transition-normal);
}

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

.service-card-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Sənədlər, İcazələr və Təminatlar Bölməsi */
.credentials-section {
    padding: 7rem 0;
    background-color: var(--bg-white);
}

.credentials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.credential-card {
    background-color: var(--bg-white);
    border-radius: 6px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.cred-icon-header {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 1.8rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cred-icon-header .cred-svg {
    width: 32px;
    height: 32px;
    color: var(--accent-color);
}

.cred-icon-header h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
}

.cred-body {
    padding: 2rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.cred-body .cred-list {
    flex: 1;
    min-width: 0;
}

.cred-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cred-list li {
    display: flex;
    flex-direction: column;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 0.8rem;
}

.cred-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cred-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
}

.cred-value {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-dark);
}

.accent-text {
    color: var(--primary-light);
    font-weight: 700;
}

/* Boş saxlanmış dəyərlər üçün xüsusi dizayn */
.editable-field {
    color: var(--text-muted);
    font-style: italic;
    font-weight: 400;
    position: relative;
    padding-left: 10px;
}

.editable-field::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--accent-color);
}

.credentials-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 2rem;
}

.cred-doc-preview {
    width: 240px;
    min-width: 240px;
    order: 2;
    background-color: var(--bg-light);
    border-radius: 4px;
    border: 1px solid var(--border-color);
    padding: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.cred-doc-img {
    max-width: 100%;
    max-height: 420px;
    object-fit: contain;
    border-radius: 2px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    cursor: pointer;
}

.cred-doc-img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.additional-credentials-block {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 6px;
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    text-align: center;
}

.add-cred-item {
    font-size: 0.95rem;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.add-cred-item strong {
    color: var(--primary-light);
    display: block;
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.add-cred-item span {
    display: block;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .additional-credentials-block {
        flex-direction: column;
        gap: 1.5rem;
        text-align: left;
    }
}

/* Xəbərlər Bölməsi */
.news-section {
    padding: 7rem 0;
    background-color: var(--bg-white);
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.news-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 2.5rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.news-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.news-card-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.news-card-content {
    flex: 1;
}

.news-date {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.news-card-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0.4rem 0 0.6rem;
    line-height: 1.3;
}

.news-card-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.news-card-body p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 1rem;
    text-align: justify;
}

.news-card-body p:last-child {
    margin-bottom: 0;
}

.news-table-wrapper {
    margin-top: 1.5rem;
    overflow-x: auto;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.news-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.news-table thead {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.news-table th {
    padding: 0.9rem 1rem;
    font-weight: 600;
    text-align: left;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
}

.news-table th:first-child {
    width: 60px;
    text-align: center;
}

.news-table td {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--border-color);
    vertical-align: top;
    line-height: 1.5;
}

.news-table td:first-child {
    text-align: center;
    font-weight: 600;
    color: var(--primary-light);
}

.news-table tbody tr:last-child td {
    border-bottom: none;
}

.news-table tbody tr:hover {
    background-color: rgba(21, 48, 69, 0.03);
}

@media (max-width: 768px) {
    .news-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
}

/* Əlaqə Bölməsi */
.contact-section {
    padding: 7rem 0;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info-subtitle {
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
}

.info-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    flex-shrink: 0;
}

.info-icon-whatsapp {
    background-color: #25D366;
    color: #fff;
}

.info-icon-whatsapp:hover {
    background-color: #1da851;
}

.info-text span {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
}

.info-text p, 
.info-text a {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--primary-color);
    display: block;
}

.info-text a:hover {
    color: var(--accent-color);
}

/* Form Bloku */
.contact-form-block {
    background-color: var(--bg-white);
    padding: 3.5rem;
    border-radius: 6px;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border-color);
}

.form-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--bg-light);
    outline: none;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-status {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    min-height: 20px;
}

.form-status.success {
    color: #153045;
    background-color: #e0ecf3;
    border: 1px solid #c5d9e8;
    padding: 0.75rem 1rem;
    border-radius: 4px;
}

.form-status.error {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 0.75rem 1rem;
    border-radius: 4px;
}

/* Footer */
.main-footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 5rem 0 0 0;
    border-top: 3px solid var(--accent-color);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    padding-bottom: 4rem;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    max-width: 450px;
    font-weight: 300;
}

.footer-links h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Modal (Məcburi Audit Məktubu) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 28, 48, 0.0);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: background 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
    background: rgba(6, 28, 48, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    background: var(--bg-white);
    border-radius: 8px;
    max-width: 720px;
    width: 100%;
    max-height: 85vh;
    position: relative;
    box-shadow: 0 30px 80px -20px rgba(11, 46, 74, 0.35);
    transform: scale(0.8) translateY(30px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-muted);
    cursor: pointer;
    z-index: 10;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.modal-letter {
    padding: 0;
}

.modal-letter-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--text-light);
    padding: 2.5rem 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.modal-letter-header::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(196, 168, 77, 0.08);
}

.modal-letter-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(196, 168, 77, 0.05);
}

.modal-seal {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: rgba(196, 168, 77, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    color: var(--accent-color);
    border: 2px solid rgba(196, 168, 77, 0.3);
    position: relative;
    z-index: 2;
    animation: sealPulse 2s ease-in-out infinite;
}

@keyframes sealPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(196, 168, 77, 0.2); }
    50% { box-shadow: 0 0 0 10px rgba(196, 168, 77, 0); }
}

.modal-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.6rem;
    position: relative;
    z-index: 2;
}

.modal-divider {
    width: 60px;
    height: 2px;
    background: var(--accent-color);
    margin: 0 auto 0.6rem;
    position: relative;
    z-index: 2;
}

.modal-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.8;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.modal-letter-body {
    padding: 2rem 2.5rem;
    max-height: 45vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-light) var(--bg-light);
}

.modal-letter-body::-webkit-scrollbar {
    width: 6px;
}

.modal-letter-body::-webkit-scrollbar-track {
    background: var(--bg-light);
}

.modal-letter-body::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 3px;
}

.modal-letter-body p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 1.2rem;
    text-align: justify;
}

.modal-letter-body p:last-child {
    margin-bottom: 0;
}

.modal-letter-footer {
    padding: 1.5rem 2.5rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
    background: var(--bg-light);
}

.modal-letter-footer .btn {
    min-width: 220px;
}

/* Mobil Modal */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 1rem;
    }
    
    .modal-content {
        max-height: 90vh;
    }
    
    .modal-letter-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .modal-title {
        font-size: 1.3rem;
    }
    
    .modal-subtitle {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
    
    .modal-letter-body {
        padding: 1.5rem;
        max-height: 50vh;
    }
    
    .modal-letter-body p {
        font-size: 0.9rem;
    }
    
    .modal-letter-footer {
        padding: 1.2rem 1.5rem;
    }
}

/* Mobil və Planşet Ekranlar Üçün Media Sorğuları */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    
    .stat-card:last-child {
        border-bottom: none;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-badge-side {
        align-items: flex-start;
    }
    
    .badge-card {
        width: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .credentials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    /* Mobil Naviqasiya Menyusu */
    .nav-toggle {
        display: flex;
        z-index: 1100;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--primary-color);
        box-shadow: -10px 0 30px rgba(0,0,0,0.2);
        z-index: 1050;
        transition: var(--transition-normal);
        padding: 6rem 2rem 2rem 2rem;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 1.1rem;
        display: block;
    }
    
    /* Mobil menyu açılarkən hamburger düyməsinin animasiyası */
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-form-block {
        padding: 2rem;
    }
    
    .cred-body {
        flex-direction: column;
    }
    
    .cred-doc-preview {
        width: 100%;
        min-width: unset;
        order: 0;
    }
}
