/* Reset ve Temel Stiller */
:root {
    --primary-color: #1a252f;
    --secondary-color: #e67e22;
}

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

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
    /* Horizontal scroll'u önle */
    max-width: 100vw;
    /* Viewport genişliğini aşmasın */
    width: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    position: relative;
}

/* Tüm linklerin altındaki çizgileri kaldır */
a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

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

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
    color: white;
    padding: 12px 0;
    font-size: 13px;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 126, 34, 0.3), transparent);
}

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

.top-bar-left {
    display: flex;
    gap: 12px;
    align-items: center;
}

.top-bar-right {
    display: flex;
    gap: 24px;
    align-items: center;
}

.top-bar-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.top-bar-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.top-bar-link:hover {
    color: white;
    background: rgba(230, 126, 34, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
    border-radius: 50% !important;
}

.top-bar-link:hover::before {
    width: 100px;
    height: 100px;
}

.top-bar-link i,
.top-bar-link svg {
    position: relative;
    z-index: 1;
    font-size: 14px;
}

.top-bar-link svg {
    width: 14px;
    height: 14px;
}

.top-bar-contact {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-size: 13px;
    position: relative;
    overflow: hidden;
}

.top-bar-contact::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, rgba(230, 126, 34, 0.2), rgba(230, 126, 34, 0.1));
    transition: width 0.3s ease;
    z-index: 0;
}

.top-bar-contact:hover {
    color: white;
    background: rgba(230, 126, 34, 0.15);
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(230, 126, 34, 0.2);
}

.top-bar-contact:hover::before {
    width: 100%;
}

.top-bar-contact i {
    font-size: 13px;
    position: relative;
    z-index: 1;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.top-bar-contact:hover i {
    color: white;
    transform: scale(1.1);
}

.top-bar-btn {
    background-color: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.top-bar-btn:hover {
    background-color: #d35400;
}

/* Navigation */
.main-nav {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
    margin: 0;
    padding: 0;
}

/* Mobilde navbar z-index artır (mobile.css'te override edilecek) */
@media (max-width: 992px) {
    .main-nav {
        z-index: 10000 !important;
    }
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

/* Mobile Call Button - Hidden on Desktop */
.mobile-call-btn {
    display: none;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-box {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 15px;
    font-weight: 700;
    font-size: 16px;
    border-radius: 3px;
}

.logo-text {
    color: #666;
    font-size: 12px;
}

.logo-image,
.logo-img {
    max-height: 50px;
    max-width: 180px;
    height: auto;
    width: auto;
    object-fit: contain;
}

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

/* Desktop'ta mobil menü kapatma butonunu gizle */
.mobile-menu-close {
    display: none !important;
}

.nav-menu a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    padding: 12px 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    position: relative;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    overflow: hidden;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d35400 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 8px;
}

.nav-menu a:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.25);
}

.nav-menu a:hover::before {
    opacity: 1;
}

.nav-menu a.active {
    color: white;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d35400 100%);
    box-shadow: 0 4px 16px rgba(230, 126, 34, 0.35);
    transform: translateY(-1px);
}

.nav-menu a.active::before {
    opacity: 1;
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .dropdown-toggle {
    cursor: pointer;
    position: relative;
    padding-right: 30px !important;
}

.nav-dropdown .dropdown-toggle::after {
    content: '▾';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle::after {
    transform: translateY(-50%) rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    list-style: none;
    padding: 8px 0;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    border-radius: 0;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d35400 100%);
    color: white;
    transform: translateX(5px);
    box-shadow: none;
}

.dropdown-menu a::before {
    display: none;
}

/* Dropdown scrollbar styling */
.dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 10px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #d35400;
}

/* Hero Slider - Modern Design */
.hero-slider {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c3e50 100%);
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 37, 47, 0.9) 0%, rgba(44, 62, 80, 0.8) 100%);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230, 126, 34, 0.2);
    border: 1px solid rgba(230, 126, 34, 0.3);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-badge svg {
    color: var(--secondary-color);
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.4;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
}

.hero-feature svg {
    color: var(--secondary-color);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 200px;
    justify-content: center;
}

.btn-hero.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d35400 100%);
    color: white;
    box-shadow: 0 8px 32px rgba(230, 126, 34, 0.3);
}

.btn-hero.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(230, 126, 34, 0.4);
}

.btn-hero.btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

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

.btn-hero {
    background-color: var(--secondary-color);
    color: white;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

/* Main Content */
.main-content {
    padding: 0;
    background-color: #f5f5f5;
}

.main-content:empty {
    display: none;
}

.section-title {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
}

/* Services Section */
.services-intro {
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.8;
}

/* Contact CTA Section */
.contact-cta-section {
    padding: 80px 0;
}

.contact-cta-box {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 60px 40px;
    border-radius: 8px;
    text-align: center;
    color: white;
}

.contact-cta-box h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.contact-cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ecf0f1;
}

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d35400 100%);
    color: white;
    padding: 22px 48px;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(230, 126, 34, 0.35),
        0 4px 16px rgba(230, 126, 34, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    border: none;
    cursor: pointer;
}

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

.btn-cta-large:hover::before {
    left: 100%;
}

.btn-cta-large:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 48px rgba(230, 126, 34, 0.45),
        0 6px 24px rgba(230, 126, 34, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #e67e22 0%, #c0392b 100%);
}

.btn-cta-large:active {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 6px 24px rgba(230, 126, 34, 0.35),
        0 3px 12px rgba(230, 126, 34, 0.25);
}

.btn-cta-large i {
    font-size: 22px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.btn-cta-large:hover i {
    transform: scale(1.15) rotate(5deg);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.btn-primary:hover {
    background-color: #d35400;
}

.btn-secondary {
    background-color: #95a5a6;
    color: white;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
}

.btn-danger {
    background-color: #e74c3c;
    color: white;
}

.btn-danger:hover {
    background-color: #c0392b;
}

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

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

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-icon {
    margin-right: 8px;
}

/* Detail Page */
.page-detail {
    background: white;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    margin: 40px 0;
    border: 1px solid #f0f0f0;
}

.page-title {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d35400 100%);
    border-radius: 2px;
}

.page-content {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
}

.page-content h1 {
    color: var(--primary-color);
    font-size: 36px;
    margin: 30px 0 20px 0;
    font-weight: 700;
}

.page-content h2 {
    color: var(--primary-color);
    font-size: 28px;
    margin: 25px 0 15px 0;
    font-weight: 600;
    position: relative;
    padding-left: 20px;
}

.page-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.page-content h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin: 20px 0 10px 0;
    font-weight: 600;
}

.page-content ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.page-content ul li {
    margin: 12px 0;
    padding: 12px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.page-content ul li:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.page-content p {
    margin: 16px 0;
    text-align: justify;
}

.cta-section {
    text-align: center;
    padding: 50px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    margin: 40px 0;
    border: 1px solid #dee2e6;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cta-section .btn-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d35400 100%);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
    border: none;
    min-width: 280px;
}

.cta-section .btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(230, 126, 34, 0.4);
    background: linear-gradient(135deg, #d35400 0%, var(--secondary-color) 100%);
}

.cta-section .btn-large svg {
    transition: transform 0.3s ease;
}

.cta-section .btn-large:hover svg {
    transform: scale(1.1) rotate(5deg);
}

/* Footer */
.site-footer {
    background-color: #f8f9fa;
    margin-top: 80px;
}

.footer-cta {
    background-color: var(--primary-color);
    color: white;
    padding: 20px 0;
}

.footer-cta .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 18px;
}

.footer-cta i {
    font-size: 24px;
}

.footer-cta-phone {
    color: white;
    font-weight: 700;
    font-size: 24px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-cta-phone:hover {
    opacity: 0.8;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
}

/* Footer About */
.footer-about .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-about .logo-box {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 15px;
    font-weight: 700;
    font-size: 16px;
    border-radius: 3px;
}

.footer-about .logo-text {
    color: #666;
    font-size: 12px;
}

.footer-desc {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    transition: color 0.3s;
}

.footer-more:hover {
    color: var(--secondary-color);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e0e0e0;
    color: #666;
    border-radius: 3px;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.footer-contact-item i {
    color: var(--secondary-color);
    font-size: 18px;
    margin-top: 3px;
    min-width: 20px;
}

.footer-contact-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.footer-contact-item p {
    color: #666;
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
}

.footer-contact-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

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

/* Footer Links */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    display: inline-block;
}

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

/* Footer Bottom */
.footer-bottom {
    background-color: #e0e0e0;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: #666;
    margin: 0;
    font-size: 14px;
}

/* Blog Styles */
.blog-section {
    margin-bottom: 60px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.blog-card.clickable {
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.blog-card a {
    text-decoration: none;
    color: inherit;
}

.blog-card.clickable:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.blog-card.clickable:active {
    transform: translateY(-3px);
}

.blog-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 25px;
}

.blog-card-title {
    font-size: 20px;
    margin-bottom: 12px;
}

.blog-card-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card-title a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

.blog-card-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.blog-card-date {
    color: #95a5a6;
    font-size: 14px;
}

.blog-card-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.blog-card-link:hover {
    color: #d35400;
}

.blog-view-all {
    text-align: center;
    margin-top: 40px;
}

/* Blog Detail Page */
.blog-detail {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.blog-detail-image {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 30px;
}

.blog-detail-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.blog-detail-title {
    font-size: 42px;
    color: var(--primary-color);
    margin: 40px 60px 20px;
    font-weight: 700;
    line-height: 1.3;
}

.blog-meta {
    margin: 0 60px 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--secondary-color);
}

.blog-date {
    color: #95a5a6;
    font-size: 16px;
}

.blog-detail-content {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin: 40px 60px;
}

.blog-cta {
    text-align: center;
    padding: 40px 60px;
    background-color: #f8f9fa;
}

.blog-back {
    padding: 30px 60px;
}

.blog-list-section {
    padding: 20px 0;
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 4px;
}

.empty-state p {
    font-size: 18px;
    color: #7f8c8d;
}

/* Responsive */
@media (max-width: 1024px) {
    .top-bar-right {
        gap: 16px;
        font-size: 12px;
    }

    .top-bar-contact {
        padding: 6px 12px;
        font-size: 12px;
    }

    .top-bar-link {
        width: 32px;
        height: 32px;
    }

    .top-bar-contact:first-child,
    .top-bar-btn {
        display: flex;
    }

    .nav-menu {
        gap: 6px;
    }

    .nav-menu a {
        padding: 10px 16px;
        font-size: 13px;
    }

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

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

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

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-slider {
        height: 350px;
    }

    .main-nav .container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .page-detail {
        padding: 30px 20px;
    }

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

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

    .footer-cta .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-cta-phone {
        font-size: 20px;
    }

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

    .blog-detail-title {
        font-size: 28px;
        margin: 30px 20px 15px;
    }

    .blog-meta,
    .blog-detail-content,
    .blog-cta,
    .blog-back {
        margin-left: 20px;
        margin-right: 20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .blog-detail-image {
        height: 250px;
    }
}


/* ========================================
   ONE-PAGE MODERN DESIGN
   ======================================== */

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Navigation Smooth Scroll */
.nav-link {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-link.active {
    color: white !important;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d35400 100%) !important;
    box-shadow: 0 4px 16px rgba(230, 126, 34, 0.35) !important;
    transform: translateY(-1px) !important;
}

/* Section Styling */
section {
    padding: 80px 0;
    position: relative;
}

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

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: #7f8c8d;
    margin-top: 20px;
}

/* About Section */
.about-section {
    background: #f8f9fa;
}

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

.about-text h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.about-features {
    list-style: none;
    padding: 0;
}

.about-features li {
    padding: 12px 0;
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-features li i {
    color: var(--secondary-color);
    font-size: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.stat-box {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

/* Services Section */
.services-section {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d35400 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
}

.service-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c3e50 100%);
    color: white;
}

.contact-section .section-title,
.contact-section .section-subtitle {
    color: white;
}

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

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

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

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

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-details a,
.contact-details p {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

.contact-cta {
    background: rgba(255, 255, 255, 0.1);
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.contact-cta h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-cta p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {

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

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

    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .about-text h3 {
        font-size: 26px;
    }

    .stat-number {
        font-size: 36px;
    }
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--secondary-color) 50%, transparent 100%);
}

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

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d35400 100%);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d35400 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

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

.stat-label {
    font-size: 18px;
    color: #666;
    font-weight: 500;
}

/* Modern Services Section */
.services-section {
    padding: 120px 0;
    background: white;
    position: relative;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230, 126, 34, 0.1);
    border: 1px solid rgba(230, 126, 34, 0.2);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.section-badge svg {
    color: var(--secondary-color);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
}

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

.service-card {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    border-color: rgba(230, 126, 34, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d35400 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    border-color: rgba(230, 126, 34, 0.2);
}

.service-card.featured {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid var(--secondary-color);
    transform: scale(1.05);
}

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

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d35400 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-decoration: none;
}

.service-card h3 a {
    text-decoration: none;
    color: var(--primary-color);
}

.service-card h3 a:hover {
    text-decoration: none;
    color: var(--secondary-color);
}

.service-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
}

.service-features li {
    padding: 8px 0;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d35400 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
}

.service-btn svg {
    transition: transform 0.3s ease;
}

.service-btn:hover svg {
    transform: translateX(3px);
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-features {
        gap: 20px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero {
        min-width: 250px;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-card.featured {
        transform: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

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

/* ========================================
   INTERACTIVE HERO SECTION
   ======================================== */

.hero-interactive {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c3e50 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

/* Animated Background Elements */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.12)"/><circle cx="90" cy="90" r="0.8" fill="rgba(255,255,255,0.06)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(230, 126, 34, 0.1);
    animation: float 15s infinite ease-in-out;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 5s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 30%;
    animation-delay: 10s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-20px) rotate(120deg);
    }

    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

/* Hero Split Layout */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left {
    color: white;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(230, 126, 34, 0.2);
    border: 1px solid rgba(230, 126, 34, 0.3);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.tag-icon {
    font-size: 16px;
}

.hero-main-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.title-line {
    display: block;
    color: white;
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #f39c12 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-description strong {
    color: var(--secondary-color);
    font-weight: 700;
}

/* Hero Metrics */
.hero-metrics {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.metric {
    text-align: center;
}

.metric-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 14px;
    opacity: 0.8;
    font-weight: 500;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    gap: 20px;
    align-items: center;
}

.cta-primary {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d35400 100%);
    color: white;
    padding: 20px 32px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(230, 126, 34, 0.3);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(230, 126, 34, 0.4);
}

.cta-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta-main {
    font-size: 16px;
    font-weight: 700;
}

.cta-sub {
    font-size: 14px;
    opacity: 0.9;
}

.cta-secondary {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 20px 32px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 60px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Hero Visual Section */
.hero-right {
    position: relative;
}

.hero-visual {
    position: relative;
    height: 500px;
    overflow: visible;
}

.visual-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: cardFloat 6s infinite ease-in-out;
}

.visual-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.card-1 {
    top: 0;
    left: 0;
    width: 280px;
    animation-delay: 0s;
}

.card-2 {
    top: 120px;
    right: 0;
    width: 260px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 0;
    left: 40px;
    width: 270px;
    animation-delay: 4s;
}

.card-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.card-progress {
    width: 100%;
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d35400 100%);
    border-radius: 4px;
    animation: progressFill 3s ease-out infinite;
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

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

    100% {
        width: var(--progress-width, 90%);
    }
}

.floating-badge {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d35400 100%);
    color: white;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(230, 126, 34, 0.3);
    animation: badgePulse 3s infinite ease-in-out;
    padding: 20px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}


.badge-content {
    text-align: center;
}

.badge-number {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 12px;
    font-weight: 600;
    opacity: 0.9;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: translateY(-50%) scale(1);
    }

    50% {
        transform: translateY(-50%) scale(1.1);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    animation: scrollBounce 2s infinite ease-in-out;
}

.scroll-text {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

.scroll-arrow {
    opacity: 0.6;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0px);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ========================================
   PROBLEM-SOLUTION SECTION
   ======================================== */

.problem-solution {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.problem-solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--secondary-color) 50%, transparent 100%);
}

.section-intro {
    text-align: center;
    margin-bottom: 80px;
}

.section-intro .section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 0;
}

.title-problem {
    display: block;
    color: #e74c3c;
    margin-bottom: 10px;
}

.title-solution {
    display: block;
    color: var(--primary-color);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-item {
    background: white;
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.problem-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.problem-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
}

.problem-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.problem-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.solution-arrow {
    font-size: 24px;
    color: var(--secondary-color);
    margin: 20px 0;
    font-weight: bold;
}

.solution-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    background: rgba(230, 126, 34, 0.1);
    padding: 12px 20px;
    border-radius: 25px;
    display: inline-block;
}

/* ========================================
   RESPONSIVE DESIGN FOR NEW SECTIONS
   ======================================== */

@media (max-width: 1024px) {
    .hero-split {
        gap: 60px;
    }

    .hero-main-title {
        font-size: 48px;
    }

    .hero-metrics {
        gap: 30px;
    }

    .visual-card {
        padding: 20px;
    }

    .card-1,
    .card-2,
    .card-3 {
        width: 240px;
    }
}

@media (max-width: 768px) {
    .hero-interactive {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-split {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-main-title {
        font-size: 42px;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-metrics {
        justify-content: center;
        gap: 40px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-visual {
        height: 400px;
        margin-top: 40px;
    }

    .visual-card {
        position: relative !important;
        margin-bottom: 20px;
        width: 100% !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
    }

    .floating-badge {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        margin: 20px auto 0;
        width: 110px;
        height: 110px;
        display: inline-block;
    }

    .problems-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .problem-solution {
        padding: 80px 0;
    }

    .section-intro .section-title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-metrics {
        flex-direction: column;
        gap: 20px;
    }

    .metric-number {
        font-size: 28px;
    }

    .cta-primary,
    .cta-secondary {
        padding: 16px 24px;
        font-size: 14px;
    }

    .section-intro .section-title {
        font-size: 28px;
    }

    .problem-item {
        padding: 30px 20px;
    }
}

/* ========================================
   RIPPLE EFFECT FOR BUTTONS
   ======================================== */

.cta-primary,
.cta-secondary {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: rippleEffect 0.6s linear;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ========================================
   ADDITIONAL ANIMATIONS
   ======================================== */

/* Fade in animation for sections */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Pulse animation for important elements */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Glow effect for CTA buttons */
.cta-primary:hover {
    box-shadow: 0 12px 40px rgba(230, 126, 34, 0.4), 0 0 20px rgba(230, 126, 34, 0.3);
}

/* Loading animation for progress bars */
.progress-bar {
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* ========================================
   MODERN FOOTER STYLES
   ======================================== */

.modern-footer {
    margin-top: 0;
}

/* Footer CTA Section */
.footer-cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c3e50 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.footer-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.03)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.07)"/></svg>') repeat;
    animation: float 30s infinite linear;
}

.footer-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.cta-left h3 {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.cta-left p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d35400 100%);
    color: white;
    padding: 20px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(230, 126, 34, 0.3);
    white-space: nowrap;
    flex-wrap: nowrap;
}

.footer-cta-btn svg {
    flex-shrink: 0;
}

.footer-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(230, 126, 34, 0.4);
    color: white;
}

/* Footer Main */
.footer-main {
    background: #f8f9fa;
    padding: 80px 0 60px;
}

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

.footer-col h5 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.logo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d35400 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo-text h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 4px 0;
}

.logo-text span {
    font-size: 14px;
    color: #666;
}

.footer-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 32px;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-link.facebook {
    background: #1877f2;
    color: white;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-link.twitter {
    background: #1da1f2;
    color: white;
}

.social-link.youtube {
    background: #ff0000;
    color: white;
}

.social-link.linkedin {
    background: #0077b5;
    color: white;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 10;
}

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

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    cursor: pointer;
    pointer-events: auto;
}

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

.footer-links a::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
    pointer-events: none;
}

.footer-links a:hover::before {
    width: 4px;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(230, 126, 34, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 16px;
    flex-shrink: 0;
}

.contact-text span {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 4px;
}

.contact-text a,
.contact-text p {
    color: #666;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--secondary-color);
}

/* Footer Bottom */
.footer-bottom {
    background: var(--primary-color);
    padding: 24px 0;
}

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

.copyright p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 14px;
}

.footer-badges {
    display: flex;
    gap: 32px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.badge-item i {
    color: var(--secondary-color);
    font-size: 16px;
}

/* ========================================
   FOOTER RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .cta-left h3 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 60px 0 40px;
    }

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

    .footer-cta-section {
        padding: 40px 0;
    }

    .cta-left h3 {
        font-size: 24px;
    }

    .cta-left p {
        font-size: 16px;
    }

    .footer-cta-btn {
        padding: 14px 20px;
        font-size: 15px;
        white-space: nowrap;
        flex-wrap: nowrap;
        gap: 10px;
    }

    .footer-cta-btn svg {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-badges {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .footer-badges {
        flex-direction: column;
        gap: 12px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-logo {
        justify-content: center;
        text-align: center;
    }
}

/* Footer Logo Image */
.footer-logo-img {
    max-height: 60px;
    max-width: 200px;
    height: auto;
    width: auto;
    object-fit: contain;
    margin-right: 15px;
}

/* X (Twitter) Siyah Arka Plan */
.social-link.twitter {
    background: #000000 !important;
    background-color: #000000 !important;
}

.social-link.twitter:hover {
    background: #333333 !important;
}

/* ========================================
   PORTFOLIO / HİZMETLERİMİZ SECTION
   ======================================== */

.portfolio-section {
    padding: 50px 0 30px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

/* Portfolio Gallery - Resim Galerisi Stili */
.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
    text-decoration: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 100%;
    line-height: 0;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.05);
}

/* Sadece başlık için overlay */
.gallery-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 15px;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.gallery-title-overlay span {
    display: block;
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.gallery-item:hover .gallery-title-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 100%);
}

/* Eski Portfolio Stilleri - Geriye Uyumluluk */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.portfolio-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: rgba(255, 255, 255, 0.5);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-badge {
    background: var(--secondary-color);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.portfolio-content {
    padding: 25px;
}

.portfolio-content h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

.portfolio-content h3 a {
    text-decoration: none;
    color: var(--primary-color);
}

.portfolio-content h3 a:hover {
    text-decoration: none;
    color: var(--secondary-color);
}

.portfolio-content p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.section-badge {
    display: inline-block;
    background: rgba(231, 76, 60, 0.1);
    color: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
}

/* Portfolio View Button */
.portfolio-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.portfolio-card:hover .portfolio-view-btn {
    gap: 12px;
}

/* ========================================
   PORTFOLIO MODAL
   ======================================== */

.portfolio-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.portfolio-modal.active {
    opacity: 1;
    visibility: visible;
}

.portfolio-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.portfolio-modal.active .portfolio-modal-content {
    transform: scale(1);
}

.portfolio-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.portfolio-modal-close:hover {
    background: var(--secondary-color);
}

.portfolio-modal-image {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
}

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

.portfolio-modal-body {
    padding: 30px;
}

.portfolio-modal-body h2 {
    margin: 0 0 15px;
    font-size: 28px;
    color: var(--primary-color);
}

.portfolio-modal-body p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    white-space: pre-wrap;
}

/* Mobile Modal */
@media (max-width: 768px) {
    .portfolio-modal-content {
        max-height: 85vh;
        border-radius: 15px;
    }

    .portfolio-modal-image {
        max-height: 300px;
    }

    .portfolio-modal-body {
        padding: 20px;
    }

    .portfolio-modal-body h2 {
        font-size: 22px;
    }

    .portfolio-modal-body p {
        font-size: 14px;
    }
}

/* Mobile styles are now in mobile.css */

/* =================================================================
   PORTFOLIO SECTION STYLES
   Yaptığımız İşler bölümü tasarımı
   ================================================================= */

.portfolio-section {
    padding: 50px 0 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.portfolio-section .section-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.portfolio-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d35400 100%);
    border-radius: 2px;
}

.portfolio-section .section-subtitle {
    font-size: 18px;
    color: #666;
    margin-top: 20px;
}

.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.portfolio-gallery .gallery-item {
    position: relative;
    display: block;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/3;
    text-decoration: none;
}

.portfolio-gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.portfolio-gallery .gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    color: white;
}

.gallery-title-overlay span {
    font-size: 16px;
    font-weight: 600;
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    color: #ccc;
    font-size: 48px;
}

/* 4 sütunlu özel grid - Ana sayfa için */
.portfolio-gallery-3 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
    .portfolio-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .portfolio-gallery-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .portfolio-section .section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .portfolio-gallery-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-gallery .gallery-item,
    .gallery-item {
        display: block;
        aspect-ratio: 4/3;
    }

    .portfolio-gallery .gallery-item img,
    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
}

@media (max-width: 576px) {
    .portfolio-section {
        padding: 50px 0;
    }

    .portfolio-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .portfolio-gallery-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-section .section-title {
        font-size: 26px;
    }

    .portfolio-section .section-subtitle {
        font-size: 14px;
    }
}

/* =================================================================
   GALLERY MODAL & LIGHTBOX STYLES
   Premium galeri ve lightbox tasarımı
   ================================================================= */

/* View More Button */
.portfolio-view-more {
    text-align: center;
    margin-top: 40px;
}

.btn-view-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d35400 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(230, 126, 34, 0.25);
    text-decoration: none;
}

.btn-view-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(230, 126, 34, 0.35);
}

.btn-view-more i {
    font-size: 18px;
}

.btn-view-more span {
    text-decoration: none;
}

/* Gallery Modal Base */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    padding: 20px;
}

.gallery-modal.active {
    opacity: 1;
    visibility: visible;
}

.gallery-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 1200px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    transform: scale(0.9) translateY(30px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

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

.gallery-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c3e50 100%);
    color: white;
}

.gallery-modal-header h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.gallery-modal-header h2 i {
    font-size: 22px;
    color: var(--secondary-color);
}

.gallery-modal-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.gallery-modal-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.gallery-grid-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.gallery-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-grid-item:hover img {
    transform: scale(1.1);
}

.gallery-grid-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-grid-item:hover .gallery-grid-overlay {
    transform: translateY(0);
}

.gallery-grid-overlay span {
    font-size: 14px;
    font-weight: 600;
    display: block;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    color: #aaa;
    font-size: 48px;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    padding: 0 20px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: fixed;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 32px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--secondary-color);
}

/* Gallery Item Click Effects */
.gallery-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Responsive Gallery */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 15px;
    }

    .gallery-modal-header {
        padding: 20px 24px;
    }

    .gallery-modal-header h2 {
        font-size: 20px;
    }

    .gallery-modal-body {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .gallery-modal {
        padding: 10px;
    }

    .gallery-modal-content {
        max-height: 95vh;
        border-radius: 15px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .gallery-modal-header {
        padding: 16px 20px;
    }

    .gallery-modal-header h2 {
        font-size: 18px;
    }

    .gallery-modal-body {
        padding: 15px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .btn-view-more {
        padding: 14px 28px;
        font-size: 14px;
    }

    .portfolio-view-more {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-grid-item {
        aspect-ratio: 1/1;
    }

    .lightbox-caption {
        font-size: 14px;
    }
}


/* ========================================
   PAGE CTA BANNER - DETAY SAYFALARI İÇİN TEKLİF AL BUTONU
   ======================================== */

.page-cta-banner {
    text-align: center;
    padding: 25px 0;
    margin-bottom: 30px;
}

.page-cta-banner .banner-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d35400 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(230, 126, 34, 0.3);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

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

.page-cta-banner .banner-cta-btn:hover::before {
    left: 100%;
}

.page-cta-banner .banner-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(230, 126, 34, 0.4);
}

.page-cta-banner .banner-cta-btn:active {
    transform: translateY(0);
}

.page-cta-banner .banner-cta-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.page-cta-banner .banner-cta-btn:hover svg {
    transform: scale(1.1);
}

.page-cta-banner .banner-cta-btn span {
    font-size: 16px;
    font-weight: 600;
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .page-cta-banner {
        padding: 20px 0;
        margin-bottom: 20px;
    }

    .page-cta-banner .banner-cta-btn {
        padding: 12px 24px;
        font-size: 14px;
        gap: 8px;
    }

    .page-cta-banner .banner-cta-btn svg {
        width: 18px;
        height: 18px;
    }

    .page-cta-banner .banner-cta-btn span {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .page-cta-banner {
        padding: 15px 0;
        margin-bottom: 15px;
    }

    .page-cta-banner .banner-cta-btn {
        padding: 10px 20px;
        font-size: 13px;
        gap: 6px;
    }

    .page-cta-banner .banner-cta-btn svg {
        width: 16px;
        height: 16px;
    }

    .page-cta-banner .banner-cta-btn span {
        font-size: 13px;
    }
}

@media (max-width: 380px) {
    .page-cta-banner .banner-cta-btn {
        padding: 10px 16px;
        font-size: 12px;
        gap: 5px;
    }

    .page-cta-banner .banner-cta-btn svg {
        width: 15px;
        height: 15px;
    }

    .page-cta-banner .banner-cta-btn span {
        font-size: 12px;
    }
}

/* ========================================
   HERO CTA BANNER - TEKLİF AL BUTONU
   ======================================== */

.hero-cta-banner {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.hero-cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--secondary-color) 50%, transparent 100%);
}

.hero-cta-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--secondary-color) 50%, transparent 100%);
}

.hero-cta-banner .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d35400 100%);
    color: white;
    padding: 24px 48px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 12px 48px rgba(230, 126, 34, 0.35),
        0 6px 24px rgba(230, 126, 34, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

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

.banner-cta-btn:hover::before {
    left: 100%;
}

.banner-cta-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 16px 64px rgba(230, 126, 34, 0.45),
        0 8px 32px rgba(230, 126, 34, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #e67e22 0%, #c0392b 100%);
}

.banner-cta-btn:active {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 8px 32px rgba(230, 126, 34, 0.35),
        0 4px 16px rgba(230, 126, 34, 0.25);
}

.banner-cta-btn svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.banner-cta-btn:hover svg {
    transform: scale(1.15) rotate(5deg);
}

.banner-cta-btn .btn-main-text {
    font-size: 20px;
    font-weight: 700;
    display: block;
    line-height: 1.2;
}

.banner-cta-btn .btn-sub-text {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.95;
    display: block;
    line-height: 1.2;
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .hero-cta-banner {
        padding: 30px 0;
    }

    .banner-cta-btn {
        padding: 20px 32px;
        font-size: 16px;
        gap: 12px;
        flex-direction: column;
        text-align: center;
    }

    .banner-cta-btn svg {
        width: 24px;
        height: 24px;
    }

    .banner-cta-btn .btn-main-text {
        font-size: 18px;
    }

    .banner-cta-btn .btn-sub-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-cta-banner {
        padding: 25px 0;
    }

    .banner-cta-btn {
        padding: 18px 28px;
        font-size: 15px;
        gap: 10px;
        width: 90%;
        max-width: 320px;
    }

    .banner-cta-btn svg {
        width: 22px;
        height: 22px;
    }

    .banner-cta-btn .btn-main-text {
        font-size: 16px;
    }

    .banner-cta-btn .btn-sub-text {
        font-size: 13px;
    }
}


/* Top Bar Link - Force Circular Shape */
.top-bar-link,
.top-bar .top-bar-link,
.top-bar-left .top-bar-link {
    border-radius: 50% !important;
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    max-width: 36px !important;
    max-height: 36px !important;
}

.top-bar-link:hover,
.top-bar .top-bar-link:hover,
.top-bar-left .top-bar-link:hover {
    border-radius: 50% !important;
}
