:root {
    /* Air-mark tarzı renk paleti */
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #0066cc;
    --text-dark: #000000;
    --text-light: #666666;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Styles - Air-mark tarzı minimal */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-top {
    background: var(--primary-color);
    color: white;
    padding: 8px 0;
    font-size: 13px;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Dil değiştirme butonları - genel stiller */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.lang-btn-flag {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.lang-btn-flag:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.lang-btn-flag.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.lang-btn-flag span {
    font-size: 18px;
    line-height: 1;
    display: block;
}

.contact-info {
    display: flex;
    gap: 25px;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.contact-info-left {
    display: flex;
    align-items: center;
}

.contact-info-right {
    display: flex;
    align-items: center;
}

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

.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Dil açılır menü - Desktop gizle, Mobile göster */
.language-switcher-desktop {
    display: flex !important;
}

.language-switcher-mobile {
    display: none !important;
}

.language-switcher-navbar {
    display: none !important;
}

/* Dil açılır menü stilleri */
.lang-dropdown-toggle {
    background: rgba(255,255,255,0.2) !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
    padding: 6px 10px !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    font-size: 13px !important;
    min-width: 60px !important;
}

.lang-dropdown-toggle:hover {
    background: rgba(255,255,255,0.25) !important;
}

.lang-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 5px;
    border-radius: 6px;
    min-width: 150px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    overflow: hidden;
}

.lang-dropdown-item {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 10px 15px !important;
    text-decoration: none !important;
    transition: all 0.2s !important;
}

.lang-dropdown-item:hover {
    background: rgba(255,255,255,0.15) !important;
}

.lang-dropdown-item.active {
    background: rgba(255,255,255,0.1) !important;
}


.contact-info a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    transition: var(--transition);
}

.contact-info a:hover {
    color: white;
}

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

.social-links a {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    transition: var(--transition);
}

.social-links a:hover {
    color: white;
}

.navbar {
    padding: 20px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.logo img {
    width: auto;
    height: auto;
    object-fit: contain;
}

.logo .site-logo {
    display: block;
}

.logo .logo-fallback {
    display: none;
    align-items: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .logo .site-logo {
        width: 120px !important;
        max-height: 40px !important;
    }
}

.logo i {
    font-size: 28px;
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

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

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
}

.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:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

/* Hero Section - Air-mark tarzı full screen */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--bg-white);
    padding-top: 100px;
}

/* Hero'da background image varsa background-color'u kaldır */
.hero[style*="background-image"] {
    background-color: transparent;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23e0e0e0"/></svg>');
    background-size: 40px 40px;
    opacity: 0.3;
    z-index: 0;
}

/* Hero'da background image varsa overlay ekle */
.hero[style*="background-image"]::before {
    background: rgba(0, 0, 0, 0.4);
    background-image: none !important;
    opacity: 1;
    z-index: 1;
}

/* Hero background image'in görünmesini sağla */
.hero[style*="background-image"] {
    background-color: transparent !important;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-dark);
}

/* Hero'da background image varsa text rengini beyaz yap */
.hero[style*="background-image"] .hero-content {
    color: white;
}

.hero[style*="background-image"] .hero-content h1,
.hero[style*="background-image"] .hero-content .subtitle,
.hero[style*="background-image"] .hero-content p {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero h1 {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.1;
    color: var(--text-dark);
    letter-spacing: -1px;
}

/* Inline style text-align'ları override etmemesi için */
.hero h1[style*="text-align"],
.hero .subtitle[style*="text-align"],
.hero p[style*="text-align"] {
    text-align: inherit !important;
}

.hero .subtitle {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: var(--text-light);
}

/* Inline style text-align'ları override etmemesi için */
.hero h1[style*="text-align"],
.hero .subtitle[style*="text-align"],
.hero p[style*="text-align"] {
    text-align: inherit !important;
}

.hero-arrow {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 10;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.hero-arrow:hover {
    opacity: 0.8;
}

.hero-arrow i {
    font-size: 32px;
    color: var(--text-dark);
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

/* Hero'da background image varsa arrow rengini beyaz yap */
.hero[style*="background-image"] .hero-arrow i {
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 0;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: white;
    color: var(--primary-color);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 16px;
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 80px;
    position: relative;
}

/* Sayfa başlık bar'ı - boydan boya */
.page-header-bar {
    display: block;
    border-radius: 0;
    z-index: 1;
}

/* Subheader (Büyük başlık bölümü) - Fotoğraftaki gibi */
.page-subheader {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 100px 20px 80px 20px; /* padding-top inline style ile override edilebilir */
    margin: 0;
    margin-top: 100px; /* Header yüksekliği için (fixed header) */
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-subheader h1 {
    font-size: 64px;
    font-weight: 900;
    margin: 0 auto 15px auto;
    color: white !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    letter-spacing: -1px;
    line-height: 1.1;
    text-align: center !important;
    width: 100%;
    display: block !important;
    max-width: 100%;
    visibility: visible !important;
    opacity: 1 !important;
}

.page-subheader .container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.page-subheader .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    font-size: 16px;
    color: rgba(255,255,255,0.95);
    margin: 0;
    padding: 0;
    list-style: none;
    font-weight: 400;
}

.page-subheader .breadcrumb a {
    color: rgba(255,255,255,0.95);
    text-decoration: underline;
    transition: all 0.3s ease;
    font-weight: 400;
}

.page-subheader .breadcrumb a:hover {
    color: white;
    text-decoration: underline;
    opacity: 0.9;
}

.page-subheader .breadcrumb-separator {
    color: rgba(255,255,255,0.95);
    margin: 0 8px;
    font-weight: 400;
}

.page-subheader .breadcrumb-item {
    color: rgba(255,255,255,0.95);
    font-weight: 400;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

/* Inline style text-align varsa margin'i ayarla */
.section-header h2[style*="text-align: center"] {
    margin-left: auto;
    margin-right: auto;
}

.section-header h2[style*="text-align: left"] {
    margin-left: 0;
    margin-right: 0;
}

.section-header h2[style*="text-align: right"] {
    margin-left: auto;
    margin-right: 0;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

/* Inline style text-align varsa max-width'i override et */
.section-header p[style*="text-align: center"] {
    max-width: 700px;
    margin: 0 auto;
}

.section-header p[style*="text-align: left"],
.section-header p[style*="text-align: right"],
.section-header p[style*="text-align: justify"] {
    max-width: 100%;
    margin: 0;
}

/* Inline style text-align'ları override etmemesi için */
.section-header h2[style*="text-align: left"] { 
    text-align: left !important; 
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.section-header h2[style*="text-align: center"] { 
    text-align: center !important; 
    max-width: 700px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.section-header h2[style*="text-align: right"] { 
    text-align: right !important; 
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: 0 !important;
}

.section-header h2[style*="text-align: justify"] { 
    text-align: justify !important; 
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.section-header p[style*="text-align: left"] { 
    text-align: left !important; 
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.section-header p[style*="text-align: center"] { 
    text-align: center !important; 
    max-width: 700px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.section-header p[style*="text-align: right"] { 
    text-align: right !important; 
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: 0 !important;
}

.section-header p[style*="text-align: justify"] { 
    text-align: justify !important; 
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

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

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    width: 100%;
    box-sizing: border-box;
}

.service-card {
    background: white;
    padding: 50px 40px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition);
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-card .btn {
    margin-top: 20px;
}

/* Stats Section - Air-mark tarzı */
.stats-section {
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 100px 0;
}

.stats-section[style*="background-image"] {
    border-top: none;
    border-bottom: none;
}

.stats-section[style*="background-image"] .stat-item h3 {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stats-section[style*="background-image"] .stat-item p {
    color: #ffffff;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.stat-item h3 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary-color);
    line-height: 1;
}

.stat-item p {
    font-size: 14px;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.about-text h3 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
    letter-spacing: -1px;
}

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

.about-image {
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(20%);
    transition: var(--transition);
}

.about-image:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.content-text {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-light);
}

.content-text p {
    margin-bottom: 20px;
}

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

.content-text p {
    margin-bottom: 20px;
}

/* Inline style text-align'ları override etmemesi için */
.content-text[style*="text-align: left"],
.content-text p[style*="text-align: left"] { text-align: left !important; }

.content-text[style*="text-align: center"],
.content-text p[style*="text-align: center"] { text-align: center !important; }

.content-text[style*="text-align: right"],
.content-text p[style*="text-align: right"] { text-align: right !important; }

.content-text[style*="text-align: justify"],
.content-text p[style*="text-align: justify"] { text-align: justify !important; }

/* Partner Havayolları Section */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.partner-logo {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: var(--transition);
    filter: grayscale(100%);
}

.partner-logo:hover {
    filter: grayscale(0%);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.partner-logo img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.partner-logo > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 60px;
    font-size: 14px;
    font-weight: 500;
}

/* Partner Logo Error Handling */
.partner-logo img[onerror] + div {
    display: flex !important;
}

.partners-placeholder {
    grid-column: 1 / -1;
    padding: 40px;
    text-align: center;
    color: var(--text-light);
    font-style: italic;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-muted {
    color: var(--text-light);
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* Service Card Button Spacing */
.service-card .btn {
    margin-top: 20px;
}

/* Content Text Paragraph Spacing */
.content-text p {
    margin-bottom: 20px;
}

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

/* Offices Grid */
.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.office-card {
    background: white;
    border: 1px solid var(--border-color);
    padding: 40px;
    transition: var(--transition);
}

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

.office-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.office-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-color);
    color: white;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.office-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.office-info-item {
    display: flex;
    align-items: start;
    gap: 12px;
    color: var(--text-light);
    font-size: 14px;
}

.office-info-item i {
    color: var(--primary-color);
    margin-top: 3px;
    font-size: 16px;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-form {
    background: white;
    padding: 50px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.form-control:invalid {
    border-color: #DC2626;
}

.form-control:valid {
    border-color: #10B981;
}

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

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

.contact-info-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-color);
}

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

.contact-info-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-card p,
.contact-info-card a {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}

.contact-info-card a {
    text-decoration: none;
    transition: var(--transition);
}

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

/* Footer - Minimal */
.footer {
    background: var(--primary-color);
    color: white;
}

.footer-main {
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer-col h3, .footer-col h4 {
    margin-bottom: 25px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 14px;
}

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-col .contact-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-col .contact-list i {
    color: white;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 30px 0;
}

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

.footer-bottom-content p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--footer-link-color, rgba(255,255,255,0.6));
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--footer-link-color, white);
    opacity: 0.8;
}

.footer-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.footer-links a {
    color: var(--footer-link-color, rgba(255,255,255,0.6));
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--footer-link-color, white);
    opacity: 0.8;
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
    z-index: 999;
}

.scroll-to-top:hover {
    background: var(--text-dark);
}

.scroll-to-top.show {
    display: flex;
}

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

.fade-in-up {
    opacity: 0;
}

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

/* Counter Animation */
@keyframes countUp {
    from { opacity: 0; }
    to { opacity: 1; }
}
