/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors - Koyu Gri-Lacivert Karışımı */
    --primary-color: #1a2942;
    --primary-dark: #0d1821;
    --primary-light: #2c4366;
    --secondary-color: #3d5a80;

    /* Gradient Colors */
    --gradient-primary: linear-gradient(135deg, #1a2942 0%, #0d1821 100%);
    --gradient-accent: linear-gradient(135deg, #2c4366 0%, #3d5a80 100%);
    --gradient-gold: linear-gradient(135deg, #d4a574 0%, #b8860b 100%);

    /* Neutral Colors */
    --text-dark: #1a1a2e;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e9ecef;

    /* Accent Colors */
    --accent-color: #28a745;
    --warning-color: #ffc107;
    --gold-color: #d4a574;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 0;

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   TOP BAR - Exchange Rates & Contact
   ======================================== */
.top-bar {
    background: var(--gradient-primary);
    color: var(--bg-white);
    padding: 10px 0;
    font-size: 13px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
}

.exchange-rates {
    display: flex;
    gap: 25px;
}

.rate-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: var(--transition-fast);
}

.rate-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.rate-item i {
    color: var(--gold-color);
    font-size: 12px;
}

.rate-label {
    font-weight: 500;
    opacity: 0.9;
}

.rate-value {
    font-weight: 600;
    color: #ffd700;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-contact-info {
    display: flex;
    gap: 20px;
}

.top-contact-info a {
    color: var(--bg-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.9;
    transition: var(--transition-fast);
}

.top-contact-info a:hover {
    opacity: 1;
}

.top-contact-info i {
    font-size: 12px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--bg-white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition-base);
}

.social-links a:hover {
    background: var(--bg-white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* ========================================
   HEADER STYLES
   ======================================== */
.main-header {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-base);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 70px;
    width: auto;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.logo-icon i {
    font-size: 24px;
    color: var(--bg-white);
}

.logo-text h1 {
    font-size: 22px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.2;
}

.logo-text p {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 400;
    margin: 0;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu>li {
    position: relative;
}

.nav-menu>li>a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
    padding: 10px 0;
    display: inline-block;
    transition: var(--transition-base);
    letter-spacing: 0.5px;
}

.nav-menu>li>a:hover {
    color: var(--primary-light);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    min-width: 250px;
    list-style: none;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
    border-radius: 8px;
    margin-top: 10px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-fast);
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-light);
    padding-left: 25px;
}

.header-contact .phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition-base);
}

.header-contact .phone-link:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.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: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition-base);
}

/* Hero Section - Extreme Lower-Left with Foreground Slides */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 650px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0 0 50px 0;
}

.hero-section .container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    width: 100%;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide:nth-child(1) {
    background-image: url('/images/hero-slide-4.jpg');
}

.hero-slide:nth-child(2) {
    background-image: url('/images/hero-slide-5.jpg');
}

.hero-slide:nth-child(3) {
    background-image: url('/images/hero-slide-6.jpg');
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    bottom: 0;
    background: linear-gradient(to right, rgba(160, 20, 20, 0.5) 0%, rgba(160, 20, 20, 0.3) 60%, transparent 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 420px;
    color: var(--bg-white);
    padding-left: 0;
    margin-left: -10px;
}

.hero-content h1 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 10px 20px;
    font-size: 13px;
}

.btn {
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all var(--transition-base);
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--bg-white);
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
}

.btn-secondary:hover {
    background: var(--bg-white);
    color: var(--primary-color);
}

/* Services Section */
.services-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    color: var(--bg-white);
}

.service-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card a {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition-fast);
}

.service-card a:hover {
    gap: 10px;
}

/* About Section */
.about-section {
    padding: var(--section-padding);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    list-style: none;
    margin-top: 30px;
}

.about-features li {
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    color: var(--text-dark);
    font-weight: 500;
}

.about-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 20px;
}

/* Content Page Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

.content-section {
    padding: 60px 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin: 40px 0 20px;
    font-weight: 600;
}

.content-wrapper h3 {
    font-size: 24px;
    color: var(--primary-dark);
    margin: 30px 0 15px;
    font-weight: 600;
}

.content-wrapper p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-wrapper ul {
    list-style: none;
    margin: 20px 0;
}

.content-wrapper ul li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: var(--text-light);
}

.content-wrapper ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-light);
    font-weight: bold;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
}

.contact-info h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-item svg {
    flex-shrink: 0;
    color: var(--primary-light);
    margin-top: 5px;
}

.contact-item-content h4 {
    font-size: 16px;
    color: var(--primary-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-item-content p,
.contact-item-content a {
    color: var(--text-light);
    text-decoration: none;
}

.contact-item-content a:hover {
    color: var(--primary-light);
}

.contact-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 15px;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    cursor: pointer;
}

.contact-form .btn:hover {
    background: var(--primary-dark);
}

.map-container {
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Footer */
.main-footer {
    background: var(--primary-dark);
    color: var(--bg-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-subtitle {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 15px;
}

.footer-description {
    opacity: 0.7;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--bg-white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    opacity: 0.8;
    align-items: flex-start;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact a {
    color: var(--bg-white);
    text-decoration: none;
}

.footer-contact a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 14px;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.footer-logo i {
    font-size: 28px;
    color: var(--gold-color);
}

.footer-logo h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

/* Footer Social Links */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--bg-white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: var(--gold-color);
    transform: translateY(-3px);
}

/* WhatsApp Float with Font Awesome */
.whatsapp-float i {
    font-size: 32px;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    box-shadow: var(--shadow-xl);
    z-index: 999;
    transition: all var(--transition-base);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 25px 35px -5px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
    background: var(--bg-white);
    padding: 60px 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(45, 125, 210, 0.3);
}

.stat-icon i {
    font-size: 28px;
    color: var(--bg-white);
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 500;
}

/* ========================================
   SECTION SUBTITLE
   ======================================== */
.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-light);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-subtitle i {
    font-size: 12px;
}

/* ========================================
   ENHANCED BUTTONS
   ======================================== */
.btn i {
    margin-right: 8px;
}

.btn-accent {
    background: var(--gradient-accent);
    color: var(--bg-white);
    border: none;
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(45, 125, 210, 0.4);
}

.btn-white {
    background: var(--bg-white);
    color: var(--primary-color);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-outline-white {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-outline-white:hover {
    background: var(--bg-white);
    color: var(--primary-color);
}

/* ========================================
   ENHANCED SERVICE CARDS
   ======================================== */
.service-card .service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition-base);
}

.service-card .service-icon i {
    font-size: 28px;
    color: var(--bg-white);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-link {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.service-link i {
    font-size: 12px;
    transition: var(--transition-fast);
}

.service-link:hover {
    color: var(--primary-color);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ========================================
   WHY US SECTION
   ======================================== */
.why-us-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.why-us-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-text h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.why-us-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.features-list {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
}

.feature-icon {
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 20px;
    color: var(--accent-color);
}

.feature-item span {
    font-weight: 500;
    color: var(--text-dark);
}

.why-us-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.card-header i {
    font-size: 32px;
    color: var(--gold-color);
}

.card-header h3 {
    font-size: 22px;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

.why-us-card>p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.card-features {
    list-style: none;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
    font-weight: 500;
}

.card-features li:last-child {
    border-bottom: none;
}

.card-features li i {
    color: var(--primary-light);
    font-size: 16px;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: var(--gradient-primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><circle cx="30" cy="30" r="2"/></g></svg>');
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    color: var(--bg-white);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 18px;
    color: var(--bg-white);
    opacity: 0.9;
    margin-bottom: 35px;
}

.cta-section .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   ENHANCED FOOTER
   ======================================== */
.main-footer .footer-section h4 i {
    margin-right: 8px;
    color: var(--gold-color);
}

.footer-links li a i {
    margin-right: 8px;
    font-size: 12px;
    opacity: 0.7;
}

/* Responsive adjustments for new sections */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    }

    .exchange-rates {
        gap: 10px;
    }

    .rate-item {
        padding: 3px 8px;
        font-size: 11px;
    }

    .top-bar-right {
        flex-direction: column;
        gap: 10px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        padding: 20px;
    }

    .stat-number {
        font-size: 32px;
    }

    .cta-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   HERO SECTION WITH BACKGROUND IMAGE
   ======================================== */
.hero-section {
    background: linear-gradient(135deg, rgba(26, 41, 66, 0.92) 0%, rgba(13, 24, 33, 0.95) 100%),
        url('/images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* ========================================
   PARTNERS SECTION - Çözüm Ortaklarımız
   ======================================== */
.partners-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.partners-section .section-header {
    margin-bottom: 40px;
}

.partners-section .section-header h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.partners-section .section-header p {
    color: var(--text-light);
    font-size: 16px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    align-items: center;
}

.partner-item {
    background: var(--bg-white);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--border-color);
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.partner-item img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all var(--transition-base);
}

.partner-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Partner Icon (Font Awesome) */
.partner-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all var(--transition-base);
}

.partner-icon i {
    font-size: 24px;
    color: var(--bg-white);
}

.partner-item:hover .partner-icon {
    background: var(--gradient-accent);
    transform: scale(1.1);
}

.partner-item span {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
}

/* ========================================
   ENHANCED SERVICE PAGES
   ======================================== */
.service-page-hero {
    background: var(--gradient-primary);
    padding: 80px 0 60px;
    text-align: center;
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.service-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    transform: skewX(-15deg);
}

.service-page-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.service-page-hero p {
    font-size: 18px;
    opacity: 0.9;
    position: relative;
}

.service-page-hero .hero-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
}

.service-detail-section {
    padding: 60px 0;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.service-feature-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
    transition: all var(--transition-base);
}

.service-feature-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.service-feature-card .feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--bg-white);
    font-size: 24px;
}

.service-feature-card h3 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.service-feature-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.service-image-container {
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Enhanced content styling for service pages */
.enhanced-content {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    margin: 30px 0;
}

.enhanced-content h2 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-light);
}

.enhanced-content ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.enhanced-content ul li {
    background: var(--bg-white);
    padding: 15px 20px 15px 45px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.enhanced-content ul li::before {
    content: '✓';
    position: absolute;
    left: 15px;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 16px;
}

/* Logo Image Style */
.logo-image {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: contain;
}

/* Service icon colors for cards */
.service-icon i {
    font-size: 28px;
    color: var(--bg-white);
}

/* Call to action button enhancements */
.btn-accent {
    background: var(--gradient-gold);
    color: var(--text-dark);
    border: none;
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* About Image Section */
.about-image-section {
    margin: 40px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image-section img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .partner-item {
        padding: 20px 15px;
    }

    .partner-item img {
        max-width: 80px;
    }

    .service-features-grid {
        grid-template-columns: 1fr;
    }

    .about-image-section {
        grid-template-columns: 1fr;
    }

    .service-intro-grid {
        grid-template-columns: 1fr;
    }

    .hero-section {
        padding: 80px 0;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 28px;
    }
}

/* ========================================
   SERVICE INTRO GRID (Text Left, Image Right)
   ======================================== */
.service-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.service-intro-text h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-intro-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-intro-text .btn {
    margin-top: 20px;
}

.service-intro-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

@media (max-width: 992px) {
    .service-intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-intro-image {
        order: -1;
    }
}

/* ========================================
   PARTNERS MARQUEE AUTO-SCROLL
   ======================================== */
.partners-section {
    padding: 50px 0;
    background: var(--bg-light);
    overflow: hidden;
}

.partners-section .section-header {
    margin-bottom: 30px;
}

.partners-section .section-header h2 {
    font-size: 28px;
    margin-bottom: 0;
}

.partners-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.partners-marquee::before,
.partners-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.partners-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-light) 0%, transparent 100%);
}

.partners-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-light) 0%, transparent 100%);
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: marquee 25s linear infinite;
    width: max-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 80px;
    padding: 15px 20px;
    background: var(--bg-white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.partner-logo:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.partner-logo img {
    max-width: 120px;
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(50%);
    opacity: 0.8;
    transition: all var(--transition-base);
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.partner-fallback i {
    font-size: 28px;
    color: var(--primary-color);
}

.partner-fallback span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .partners-track {
        gap: 40px;
        animation-duration: 20s;
    }

    .partner-logo {
        min-width: 120px;
        height: 60px;
        padding: 10px 15px;
    }

    .partner-logo img {
        max-width: 80px;
        max-height: 35px;
    }

    .hero-section {
        padding: 100px 0;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }
}

/* Service Intro Image Spacing */
.service-intro-image img {
    margin-top: 50px;
}

/* Footer Logo Size */
.footer-logo img {
    height: 70px;
    width: auto;
    margin-bottom: 10px;
}

/* Service Features Grid - 4 Cards in Row */
.service-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.service-feature-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--border-light);
}

.service-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-feature-card .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-feature-card .feature-icon i {
    font-size: 28px;
    color: white;
}

.service-feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .service-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .service-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Service CTA Section */
.service-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin-top: 60px;
    color: white;
}

.service-cta h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
}

.service-cta p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
    color: white;
}

.service-cta .btn {
    background: white;
    color: var(--primary-color);
    padding: 12px 28px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-cta .btn:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

/* Full-width Service CTA Section - Tam Genişlik */
.service-cta-fullwidth {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin: 60px 0 0 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
}

.service-cta-fullwidth h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.service-cta-fullwidth p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 25px;
    color: white;
}

.service-cta-fullwidth .btn {
    background: white;
    color: #1a365d;
    padding: 14px 30px;
    font-weight: 600;
}

.service-cta-fullwidth .btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Service Feature Card Lists */
.service-feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-feature-card ul li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
    position: relative;
    padding-left: 20px;
}

.service-feature-card ul li:last-child {
    border-bottom: none;
}

.service-feature-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Footer Credit Styling */
.footer-credit {
    margin-top: 8px;
    font-size: 13px;
    opacity: 0.8;
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-credit a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* ========================================
   PAYMENT PAGE STYLES
   ======================================== */
.payment-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.payment-header {
    text-align: center;
    margin-bottom: 40px;
}

.payment-header h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.payment-header h2 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.payment-header p {
    font-size: 16px;
    color: var(--text-secondary);
}

.section-subtitle {
    font-size: 22px;
    color: var(--text-dark);
    margin: 40px 0 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.section-subtitle i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* Bank Cards Grid */
.bank-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.bank-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.bank-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.bank-header {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.bank-header .bank-logo {
    max-height: 50px;
    max-width: 150px;
    object-fit: contain;
}

.bank-body {
    padding: 20px;
}

.bank-body h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.bank-detail {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
}

.bank-detail .label {
    color: var(--text-secondary);
    font-size: 14px;
}

.bank-detail .value {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
}

.bank-detail.iban .value {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.copy-iban-btn {
    width: 100%;
    margin-top: 15px;
    padding: 10px 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.copy-iban-btn:hover {
    background: var(--primary-dark);
}

.copy-iban-btn.copied {
    background: #28a745;
}

/* Payment Steps */
.payment-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.step-card {
    background: white;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 15px;
}

.step-icon i {
    font-size: 24px;
    color: white;
}

.step-card h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.step-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.info-card {
    background: white;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.info-icon i {
    font-size: 20px;
    color: var(--primary-color);
}

.info-card h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.info-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
    .bank-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .payment-steps,
    .info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {

    .bank-cards-grid,
    .payment-steps,
    .info-cards {
        grid-template-columns: 1fr;
    }
}