/* CSS Variables */
:root {
    --primary-color: #FFD700;
    --secondary-color: #000000;
    --text-color: #333333;
    --light-gray: #f5f5f5;
    --border-color: #dddddd;
    --success-color: #28a745;
    --hover-color: #FFC700;
    --whatsapp-color: #25D366;
    --phone-color: #0078FF;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: var(--secondary-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled .container {
    padding: 0.7rem 20px;
}

.logo-placeholder {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 10px 20px;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 5px;
}

.logo-img {
    max-height: 70px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
    background: var(--primary-color);
    padding: 8px 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled .logo-img {
    transform: scale(0.8);
    max-height: 40px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 0;
}

.header.scrolled .nav-link {
    font-size: 0.9rem;
    padding: 0.3rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: '▼';
    margin-left: 5px;
    font-size: 0.8rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--secondary-color);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border-radius: 0 0 5px 5px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    display: block;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #333 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.btn-primary:hover {
    background: var(--hover-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: url('görseller/hizmetlerimiz/elazig-otomatik-kapi-hizmetlerimiz-arka-plan.webp') center/cover no-repeat, #e8e8e8;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(232, 232, 232, 0.85);
    z-index: 1;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    position: relative;
    z-index: 2;
}

.features h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.features .subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: white;
    padding: 2rem;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #FFC700);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 0;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.feature-details {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-badge {
    background: linear-gradient(135deg, var(--primary-color), #FFC700);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

/* Section Footer */
.section-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    position: relative;
    z-index: 2;
}

.section-footer .btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.section-footer .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.section-footer .btn:hover::before {
    width: 300px;
    height: 300px;
}

.section-footer .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

/* Products Preview Section */
.products-preview {
    padding: 80px 0;
    background: #ffffff;
}

.products-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 1rem;
}

.products-preview h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.products-preview .subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.product-image-placeholder {
    height: 0;
    padding-bottom: 62.01%; /* 1024x635 oranı için (635/1024)*100 */
    background: linear-gradient(135deg, var(--primary-color) 0%, #FFC700 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.product-image-placeholder img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.product-image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.product-card:hover .product-image-placeholder::before {
    animation: shine 0.6s ease;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.product-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    min-height: 60px;
    flex-grow: 0;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.product-features span {
    color: #555;
    font-size: 0.9rem;
    font-weight: 500;
}

.product-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    flex-grow: 1;
}

.product-card .btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #FFC700 100%);
    color: var(--secondary-color);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    border: none;
    cursor: pointer;
    margin-top: auto;
    align-self: center;
}

.product-card .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.product-features span {
    background: var(--light-gray);
    color: var(--secondary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid var(--border-color);
}

/* News Section Special Button */
.news-section .section-footer .btn {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.news-section .section-footer .btn:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.product-card .btn {
    width: 100%;
    text-align: center;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #333 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    margin-bottom: 0;
}

.page-header .container {
    max-width: 900px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.page-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Product Intro Section */
.product-intro {
    padding: 60px 0;
    background: white;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: var(--light-gray);
}

/* Product Detail Page */
.product-detail {
    padding: 60px 0;
    background: white;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-image-placeholder.large {
    padding-bottom: 89.36%; /* 1024x915 oranı için (915/1024)*100 */
    font-size: 1.3rem;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-image-placeholder.large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-info h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    font-weight: 700;
    line-height: 1.3;
}

.product-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.product-features {
    margin-bottom: 0;
}

.product-features h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features li {
    padding: 0.8rem 0;
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
    transition: all 0.3s ease;
}

.product-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: bold;
    top: 0.8rem;
}

.product-features li:hover {
    color: var(--primary-color);
    padding-left: 2rem;
    transition: all 0.3s ease;
}

.product-cta {
    display: flex;
    gap: 1.5rem;
    margin-top: 0;
}

.product-cta .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #FFC700 100%);
    color: var(--secondary-color);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.product-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

/* Product Applications */
.product-applications {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.product-applications h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--secondary-color);
    font-weight: 700;
    position: relative;
}

.product-applications h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #FFC700 100%);
    border-radius: 2px;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 1200px) {
    .applications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .applications-grid {
        grid-template-columns: 1fr;
    }
}

.application-card {
    background: white;
    padding: 2rem 1.5rem;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.application-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #FFC700);
    transition: left 0.6s ease;
}

.application-card:hover::before {
    left: 0;
}

.application-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.application-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #FFC700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.application-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.application-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Product Description Section */
.product-description {
    padding: 80px 0;
    background: white;
}

.product-description .container {
    max-width: 900px;
    margin: 0 auto;
}

.description-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: var(--secondary-color);
    font-weight: 700;
    text-align: center;
    position: relative;
}

.description-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-weight: 600;
    text-align: center;
    position: relative;
}

.description-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.description-content h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.description-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.description-content ul {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.description-content ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

/* SEO Tags Cloud Section */
.seo-tags-section {
    padding: 60px 0;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    margin-top: 40px;
}

.seo-tags-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.seo-tags-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.seo-tags-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.seo-tags-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    align-items: center;
}

.seo-tag {
    display: inline-block;
    padding: 8px 16px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #555;
    font-family: inherit;
}

.seo-tag:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

/* Etiket font boyutları - anahtar kelime önemine göre */
.seo-tag.primary {
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(135deg, #fff 0%, #fff9e6 100%);
    border-color: var(--primary-color);
    color: var(--secondary-color);
}

.seo-tag.secondary {
    font-size: 1.1rem;
    font-weight: 500;
}

.seo-tag.tertiary {
    font-size: 1rem;
    font-weight: 400;
}

.seo-tag.quaternary {
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .seo-tags-section {
        padding: 40px 0;
    }
    
    .seo-tags-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .seo-tags-cloud {
        gap: 8px;
    }
    
    .seo-tag {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    
    .seo-tag.primary {
        font-size: 1rem;
    }
    
    .seo-tag.secondary {
        font-size: 0.95rem;
    }
    
    .seo-tag.tertiary {
        font-size: 0.85rem;
    }
    
    .seo-tag.quaternary {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .seo-tags-cloud {
        gap: 6px;
    }
    
    .seo-tag {
        padding: 5px 10px;
    }
}
.product-features-detailed {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.product-features-detailed h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--secondary-color);
    font-weight: 700;
    position: relative;
}

.product-features-detailed h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #FFC700 100%);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-item {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #FFC700);
    transition: left 0.6s ease;
}

.feature-item:hover::before {
    left: 0;
}

.feature-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.feature-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #333 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.3;
}

.cta-section .container {
    max-width: 900px;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #FFC700 100%);
    color: var(--secondary-color);
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.cta-section .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form-wrapper h2,
.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.contact-form {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 10px;
}

.contact-icon {
    font-size: 2rem;
    margin-right: 1rem;
    min-width: 60px;
    text-align: center;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.contact-details p {
    color: #666;
    margin-bottom: 0.3rem;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--hover-color);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.map-placeholder {
    background: white;
    height: 400px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: #999;
}

.map-placeholder p {
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #333 100%);
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.cta-section .btn-primary:hover {
    background: var(--hover-color);
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #999;
}

/* About Page Styles */
.about-section {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.about-image .image-placeholder {
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), #f39c12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Mission & Vision Section */
.mission-vision {
    padding: 80px 0;
    background: var(--light-gray);
}

.mission-vision h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mission-card {
    background: white;
    padding: 2.5rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.mission-card p {
    color: #666;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #333 100%);
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    max-width: 100%;
}

.hero p {
    font-size: 1.1rem;
    max-width: 100%;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #333 100%);
    color: white;
    text-align: center;
}

.stats-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: white;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.team-section .subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image-placeholder {
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color), #f39c12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.team-member h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.5rem 0;
    color: var(--secondary-color);
}

.member-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-desc {
    color: #666;
    padding: 0 1.5rem 1.5rem 1.5rem;
    line-height: 1.6;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--secondary-color);
        flex-direction: column;
        padding: 1rem 0;
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .features h2,
    .products-preview h2,
    .page-header h1,
    .product-applications h2,
    .faq-section h2,
    .map-section h2,
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .features-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-detail-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .applications-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .product-cta {
        flex-direction: column;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    /* About Page Responsive */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-image .image-placeholder {
        height: 300px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Services Section Responsive */
    .services-list-container {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .services-list {
        text-align: center;
    }
    
    .services-list li {
        justify-content: center;
    }
    
    .contact-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .section-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .features,
    .products-preview,
    .product-detail,
    .product-applications,
    .faq-section,
    .contact-section,
    .map-section,
    .cta-section {
        padding: 40px 0;
    }
    
    .page-header {
        padding: 40px 0;
    }
    
    .features h2,
    .products-preview h2,
    .page-header h1,
    .product-applications h2,
    .faq-section h2,
    .map-section h2,
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .product-image-placeholder.large {
        padding-bottom: 89.36%; /* Mobilde de 1024x915 oranı korunsun */
    }
    
    .map-placeholder {
        height: 300px;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease-out;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger animation delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: url('görseller/hizmetlerimiz/elazig-otomatik-kapi-nedenbiz-arka-plan.webp') center/cover no-repeat, #e8e8e8;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(232, 232, 232, 0.85);
    z-index: 1;
}

.section-tag {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.services-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    font-weight: 700;
    max-width: 100%;
    position: relative;
    z-index: 2;
}

.section-description {
    max-width: 100%;
    margin: 0 auto 2rem auto;
    color: #666;
    line-height: 1.7;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.services-content {
    margin: 1.5rem 0;
    text-align: left;
    position: relative;
    z-index: 2;
}

.services-content h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    display: block;
    z-index: 2;
}

.services-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    transform: none;
    width: 60px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
    z-index: 2;
}

.services-list-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin: 1rem 0;
    flex-wrap: wrap;
    max-width: 100%;
    position: relative;
    z-index: 2;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    flex: 1;
    min-width: 300px;
    position: relative;
    z-index: 2;
}

.services-list li {
    color: #333;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    font-weight: 500;
    padding: 0.3rem 0;
}

.checkmark {
    color: var(--primary-color);
    margin-right: 0.8rem;
    font-weight: bold;
    font-size: 1.1rem;
}

.contact-info {
    max-width: 100%;
    margin: 4rem 0 0 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
    box-shadow: none;
    text-align: left;
    position: relative;
    z-index: 2;
}

.contact-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    max-width: 100%;
    position: relative;
    z-index: 2;
}

.contact-info h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
    z-index: 2;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.contact-features {
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
    position: relative;
    z-index: 2;
}

.contact-features p {
    color: #666;
    font-weight: 500;
    display: flex;
    align-items: center;
    background: transparent;
    padding: 0.5rem 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    transition: none;
    position: relative;
    z-index: 2;
}

.contact-features p:hover {
    transform: none;
    box-shadow: none;
}

.section-footer {
    text-align: center;
    margin: 0.5rem 0;
    padding-top: 0.5rem;
    position: relative;
    z-index: 2;
}

/* Haber/Blog Stilleri */
.news-section {
    padding: 6rem 0 5rem 0;
    background: #ffffff;
}

.news-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 1rem;
}

.news-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.news-section .subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 100%;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.news-image-placeholder {
    height: 0;
    padding-bottom: 62.01%; /* 1024x635 oranı için (635/1024)*100 */
    background: linear-gradient(135deg, var(--primary-color), #f39c12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

.news-image-placeholder img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-content h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.4;
    flex-grow: 0;
}

.news-content p {
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.6;
    flex-grow: 1;
    min-height: 60px;
}

.news-meta {
    display: none; /* Tarih, kategori, yazar alanlarını gizle */
}

.news-date, .news-category, .news-author {
    color: var(--text-color);
    background: var(--light-gray);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

.news-category {
    background: var(--primary-color);
    color: white;
}

.news-content .btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #FFC700 100%);
    color: var(--secondary-color);
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    border: none;
    cursor: pointer;
    margin-top: auto;
    align-self: center;
    text-align: center;
}

.news-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.news-category {
    background: var(--primary-color);
    color: white;
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

/* Haber Arşivi Sayfası */
.news-archive-section {
    padding: 3rem 0;
}

.news-filters {
    margin-bottom: 3rem;
    text-align: center;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--light-gray);
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--secondary-color);
}

/* Haber Detay Sayfası */
.news-detail-section {
    padding: 60px 0;
    background: white;
}

.news-article {
    max-width: 800px;
    margin: 0 auto;
}

.news-meta-top {
    display: none; /* Haber detay sayfasındaki üst meta bilgilerini gizle */
}

.news-date,
.news-category,
.news-author {
    background: var(--light-gray);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    color: #666;
}

.news-category {
    background: var(--primary-color);
    color: white;
}

.news-image-placeholder.large {
    height: 0;
    padding-bottom: 89.36%; /* 1024x915 oranı için (915/1024)*100 */
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.news-image-placeholder.large img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem 0;
    color: var(--secondary-color);
    font-weight: 600;
}

.news-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.news-conclusion {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    border-left: 4px solid var(--primary-color);
}

.news-conclusion p {
    margin-bottom: 0;
    font-weight: 500;
}

.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 2rem;
}

.news-tags {
    display: none; /* Haber etiketlerini gizle */
}

.tag {
    background: var(--light-gray);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    color: #666;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--primary-color);
    color: white;
}

.news-share h4 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
}

.share-btn {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: var(--hover-color);
    transform: translateY(-2px);
}

.related-news {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.related-news h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.related-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.related-news-card {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.related-news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.related-news-card h4 {
    margin-bottom: 1rem;
}

.related-news-card h4 a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-news-card h4 a:hover {
    color: var(--primary-color);
}

.related-news-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.back-to-news {
    text-align: center;
    margin-top: 3rem;
}

.filter-btn:hover {
    background: var(--primary-color);
    color: white;
}

.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.pagination-btn {
    background: var(--light-gray);
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
    background: var(--primary-color);
    color: white;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-numbers {
    display: flex;
    gap: 0.5rem;
}

.page-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--light-gray);
    color: #333;
    text-decoration: none;
    font-weight: 500;
    border: none;
}

.page-number:hover {
    background: var(--primary-color);
    color: white;
}

.page-number.active {
    background: var(--primary-color);
    color: white;
}

.page-number a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.page-number:hover a {
    color: white;
}

/* Newsletter Section */
.newsletter-section {
    padding: 4rem 0;
    background: var(--primary-color);
    color: white;
}

.newsletter-section h2 {
    margin-bottom: 1rem;
}

.newsletter-section p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.form-row input::placeholder {
    color: #999;
}

/* Haber Detay Sayfası */
.news-detail-section {
    padding: 3rem 0;
}

.breadcrumb {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .separator {
    color: var(--text-color);
}

.breadcrumb .current {
    color: var(--text-color);
    font-weight: 500;
}

.news-article {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.news-header {
    padding: 2rem;
}

.news-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.news-header .news-meta {
    margin-bottom: 2rem;
}

.reading-time {
    background: var(--secondary-color);
    color: white;
}

.news-header .news-image-placeholder {
    height: 400px;
    margin: -2rem -2rem 0 -2rem;
    border-radius: 0;
}

.news-content {
    padding: 2rem;
}

.news-content .lead {
    font-size: 1.3rem;
    color: var(--text-color);
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 2rem;
}

.news-content h2 {
    color: var(--secondary-color);
    margin: 2rem 0 1rem 0;
    font-size: 1.8rem;
}

.news-content h3 {
    color: var(--secondary-color);
    margin: 1.5rem 0 1rem 0;
    font-size: 1.4rem;
}

.news-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.news-content blockquote {
    background: var(--light-gray);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    border-radius: 0 5px 5px 0;
}

.news-content blockquote p {
    margin-bottom: 0;
}

.news-content blockquote cite {
    display: block;
    text-align: right;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-color);
}

.news-footer {
    padding: 2rem;
    border-top: 1px solid var(--light-gray);
}

.news-tags {
    margin-bottom: 2rem;
}

.tag {
    display: inline-block;
    background: var(--light-gray);
    color: var(--text-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.news-sharing h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.social-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-btn.facebook { background: #1877f2; }
.social-btn.twitter { background: #1da1f2; }
.social-btn.whatsapp { background: #25d366; }
.social-btn.linkedin { background: #0077b5; }

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Haber Sidebar */
.news-sidebar {
    max-width: 300px;
    margin: 3rem auto 0;
}

.sidebar-section {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sidebar-section h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.related-news-item, .recent-news-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--light-gray);
}

.related-news-item:last-child, .recent-news-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.related-news-item h4, .recent-news-item h4 {
    margin-bottom: 0.5rem;
}

.related-news-item h4 a, .recent-news-item h4 a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.4;
}

.related-news-item h4 a:hover, .recent-news-item h4 a:hover {
    color: var(--primary-color);
}

.related-date, .recent-date {
    color: var(--text-color);
    font-size: 0.85rem;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 0.5rem;
}

.category-list li a {
    color: var(--secondary-color);
    text-decoration: none;
    padding: 0.5rem 0;
    display: block;
    border-bottom: 1px solid var(--light-gray);
    transition: color 0.3s ease;
}

.category-list li a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .news-title {
        font-size: 2rem;
    }
    
    .news-header .news-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .news-header .news-image-placeholder {
        height: 0;
        padding-bottom: 62.01%; /* Mobilde de 1024x635 oranı korunsun */
    }
    
    .news-content {
        padding: 1.5rem;
    }
    
    .news-header {
        padding: 1.5rem;
    }
    
    .news-footer {
        padding: 1.5rem;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .filter-buttons {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
    }
    
    .social-buttons {
        justify-content: center;
    }
    
    .news-sidebar {
        max-width: 100%;
        margin-top: 2rem;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .mobile-menu-toggle,
    .cta-section {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}

/* Quick Contact Buttons */
.quick-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.whatsapp-button, .phone-button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-button svg, .phone-button svg {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-button svg {
    background: var(--whatsapp-color);
    padding: 10px;
}

.phone-button svg {
    background: var(--phone-color);
    padding: 10px;
}

.contact-bubble {
    position: absolute;
    right: 65px;
    background: white;
    color: var(--text-color);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.contact-bubble::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid white;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.whatsapp-button:hover .contact-bubble,
.phone-button:hover .contact-bubble {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.whatsapp-button:hover svg,
.phone-button:hover svg {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .quick-contact {
        bottom: 15px;
        right: 15px;
        gap: 12px;
    }
    
    .whatsapp-button svg, .phone-button svg {
        width: 45px;
        height: 45px;
    }
    
    .contact-bubble {
        font-size: 12px;
        padding: 6px 10px;
        right: 60px;
    }
}

@media (max-width: 480px) {
    .quick-contact {
        bottom: 10px;
        right: 10px;
    }
    
    .whatsapp-button svg, .phone-button svg {
        width: 40px;
        height: 40px;
        padding: 8px;
    }
    
    .contact-bubble {
        font-size: 11px;
        padding: 5px 8px;
        right: 55px;
        max-width: 200px;
        white-space: normal;
    }
}

/* About Page Styles */
.about-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-hero-text h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-hero-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
}

.office-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.office-image:hover {
    transform: scale(1.02);
}

.products-range {
    padding: 80px 0;
    background: white;
}

.products-range h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.products-range > p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 40px;
}

.products-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.product-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.product-item:hover {
    background: #e8e8e8;
    transform: translateY(-2px);
}

.product-item .checkmark {
    color: var(--success-color);
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.2rem;
}

.products-note {
    text-align: center;
    font-style: italic;
    color: #666;
    font-size: 1rem;
}

.quality-service {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--light-gray) 100%);
}

.quality-service h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-description {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 40px;
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.why-choose-us {
    padding: 80px 0;
    background: white;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 50px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.reason-item {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    background: linear-gradient(135deg, var(--light-gray) 0%, #f0f0f0 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.reason-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.reason-item span:last-child {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color);
}

/* Mobile Responsive for About Page */
@media (max-width: 768px) {
    .about-hero {
        padding: 60px 0;
    }
    
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-hero-text h2 {
        font-size: 2rem;
    }
    
    .about-hero-text p {
        font-size: 1rem;
    }
    
    .products-range,
    .quality-service,
    .why-choose-us {
        padding: 60px 0;
    }
    
    .products-range h2,
    .quality-service h2,
    .why-choose-us h2 {
        font-size: 1.8rem;
    }
    
    .products-list {
        grid-template-columns: 1fr;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .reason-item {
        padding: 15px 20px;
    }
    
    .reason-icon {
        font-size: 1.2rem;
    }
    
    .reason-item span:last-child {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 40px 0;
    }
    
    .about-hero-text h2 {
        font-size: 1.6rem;
    }
    
    .products-range,
    .quality-service,
    .why-choose-us {
        padding: 40px 0;
    }
    
    .products-range h2,
    .quality-service h2,
    .why-choose-us h2 {
        font-size: 1.5rem;
    }
    
    .product-item {
        padding: 12px 15px;
    }
    
    .reason-item {
        padding: 12px 15px;
    }
}
