/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00a8ff;
    --primary-dark: #0097e6;
    --primary-light: #33b5ff;
    --secondary-color: #c0c0c0;
    --accent-color: #00d2ff;
    --silver-color: #c0c0c0;
    --silver-light: #e8e8e8;
    --silver-dark: #a0a0a0;
    --blue-bright: #00a8ff;
    --blue-glow: #00d2ff;
    --dark-color: #1a1a1a;
    --dark-gray: #2d2d2d;
    --dark-metallic: #1e1e1e;
    --light-color: #f8f9fa;
    --light-gray: #e9ecef;
    --text-color: #2c3e50;
    --text-light: #6c757d;
    --border-color: #dee2e6;
    --success-color: #22c55e;
    --error-color: #ef4444;
    --white: #ffffff;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-blue: 0 4px 20px rgba(0, 168, 255, 0.3);
    --gradient-primary: linear-gradient(135deg, #00a8ff 0%, #0097e6 100%);
    --gradient-silver: linear-gradient(135deg, #c0c0c0 0%, #a0a0a0 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(0, 168, 255, 0.4) 0%, rgba(0, 151, 230, 0.5) 100%);
    --gradient-glow: linear-gradient(135deg, rgba(0, 210, 255, 0.6) 0%, rgba(0, 168, 255, 0.4) 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
    font-size: 16px;
}

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

/* Header */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--silver-color);
    margin-bottom: 0;
}

.header-top {
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    color: var(--white);
    padding: 8px 0;
    border-bottom: 1px solid rgba(192, 192, 192, 0.2);
    margin-bottom: 8px;
    padding-bottom: 8px;
}

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

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

.header-phone-btn {
    color: var(--white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 20px;
    background: var(--blue-bright);
    border-radius: 6px;
    border: 2px solid var(--blue-bright);
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 168, 255, 0.3);
}

.header-phone-btn:hover {
    /* Hover efekti kaldırıldı */
}

.header-phone-btn i {
    font-size: 16px;
}

.header-separator {
    color: var(--silver-color);
    opacity: 0.5;
}

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

.social-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(192, 192, 192, 0.1);
    border: 1px solid rgba(192, 192, 192, 0.3);
    color: var(--silver-light);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}

.social-link:hover {
    background: var(--blue-bright);
    border-color: var(--blue-bright);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 168, 255, 0.4);
}

.social-link.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
}

.header-social {
    display: flex;
    gap: 15px;
}

.header-social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.header-social a {
    color: var(--white);
    font-size: 18px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

/* Facebook için varsayılan renk */
.header-social a[aria-label="Facebook"] {
    background: #1877F2;
    border: 2px solid #1877F2;
}

.header-social a[aria-label="Facebook"]:hover {
    /* Hover efekti kaldırıldı */
}

/* Instagram için varsayılan renk */
.header-social a[aria-label="Instagram"] {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border: 2px solid #E4405F;
}

.header-social a[aria-label="Instagram"]:hover {
    /* Hover efekti kaldırıldı */
}

/* WhatsApp için varsayılan renk */
.header-social a[aria-label="WhatsApp"],
.header-social a.whatsapp {
    background: #25D366;
    border: 2px solid #25D366;
}

.header-social a[aria-label="WhatsApp"]:hover,
.header-social a.whatsapp:hover {
    /* Hover efekti kaldırıldı */
}

/* Sahibinden.com için varsayılan renk - Resmi sarı renk */
.header-social a[aria-label="Sahibinden"],
.header-social a.sahibinden {
    background: #FFD700;
    border: 2px solid #FFD700;
}

.header-social a[aria-label="Sahibinden"]:hover,
.header-social a.sahibinden:hover {
    /* Hover efekti kaldırıldı */
}

.header-social a svg {
    position: relative;
    z-index: 1;
}

.header-social a i {
    position: relative;
    z-index: 1;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    gap: 30px;
    margin-top: 0;
}

.main-nav .logo {
    flex: 0 0 auto;
}

.logo {
    flex-shrink: 0;
    min-width: 180px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    width: 100%;
}

.logo-image {
    height: 52px;
    width: auto;
    object-fit: contain;
    max-width: none;
    min-width: 180px;
    filter: drop-shadow(0 2px 8px rgba(0, 168, 255, 0.3));
    transition: filter 0.3s;
}

.logo-image:hover {
    filter: drop-shadow(0 4px 12px rgba(0, 168, 255, 0.5));
}

@media (min-width: 1200px) {
    .logo {
        min-width: 220px;
    }
    
    .logo-image {
        height: 58px;
        min-width: 220px;
    }
}

@media (min-width: 1400px) {
    .logo {
        min-width: 240px;
    }
    
    .logo-image {
        height: 64px;
        min-width: 240px;
    }
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-ats {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-subtitle {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--blue-bright);
    text-transform: uppercase;
    margin-top: 2px;
}

.logo h1 {
    font-size: 24px;
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 0;
    text-shadow: 0 0 20px rgba(0, 168, 255, 0.3);
}

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

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    position: relative;
    padding: 5px 0;
}

.nav-menu a:hover {
    color: var(--blue-bright);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 0.3s;
    border-radius: 2px;
}

.nav-menu a:hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    list-style: none;
    min-width: 220px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    border-radius: 8px;
    margin-top: 15px;
    border: 1px solid var(--border-color);
}

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

/* Mobilde hover yerine tıklama ile çalışsın */
@media (max-width: 768px) {
    .dropdown:hover .dropdown-menu {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
    }
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background: var(--light-color);
    color: var(--blue-bright);
    padding-left: 25px;
}

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

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

.mobile-menu-toggle.active {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1002;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s;
    border-radius: 2px;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Masaüstünde mobil menü öğelerini gizle */
@media (min-width: 769px) {
    .mobile-menu-logo,
    .mobile-menu-phones,
    .mobile-menu-social {
        display: none !important;
    }
}

/* Hero Section - Slider */
.hero-section {
    position: relative;
    height: 450px;
    overflow: hidden;
    margin-top: 0;
    padding: 0 !important;
}

@media (min-width: 768px) {
    .hero-section {
        height: 500px;
    }
}

@media (min-width: 1200px) {
    .hero-section {
        height: 550px;
    }
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    animation: zoom 20s ease-in-out infinite;
    transform: scale(1);
    transition: transform 0.5s, filter 0.5s;
    will-change: transform;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-slide.active .hero-image {
    filter: brightness(1);
}

@media (max-width: 768px) {
    .hero-image {
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 768px) {
    .hero-image {
        background-attachment: scroll;
    }
}

@keyframes zoom {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.hero-content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content-wrapper .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    animation: fadeInUp 1s ease-out;
    text-align: center;
}

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

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(0, 168, 255, 0.2);
    border: 2px solid var(--blue-bright);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(0, 168, 255, 0.4);
    color: var(--white);
    text-shadow: 0 0 10px rgba(0, 168, 255, 0.8);
    text-align: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

@media (min-width: 1200px) {
    .hero-title {
        font-size: 56px;
    }
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.98;
    line-height: 1.7;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin-bottom: 30px;
    position: relative;
    z-index: 5;
}

/* Hero Slider Controls */
.hero-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(30, 30, 30, 0.7);
    padding: 15px 25px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 2px solid var(--silver-color);
    box-shadow: 0 4px 20px rgba(0, 168, 255, 0.3);
}

.hero-prev,
.hero-next {
    background: rgba(192, 192, 192, 0.2);
    border: 2px solid var(--silver-color);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 18px;
}

.hero-prev:hover,
.hero-next:hover {
    background: var(--blue-bright);
    border-color: var(--blue-bright);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 168, 255, 0.5);
}

.hero-dots {
    display: flex;
    gap: 10px;
}

.hero-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.hero-dots .dot.active {
    background: var(--blue-bright);
    width: 30px;
    border-radius: 6px;
    border-color: var(--blue-bright);
    box-shadow: 0 0 10px rgba(0, 168, 255, 0.6);
}

.hero-dots .dot:hover {
    background: var(--blue-bright);
    border-color: var(--blue-bright);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.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;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 168, 255, 0.4);
    border: 2px solid var(--silver-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 168, 255, 0.6);
    border-color: var(--blue-bright);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 168, 255, 0.4);
}

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

.btn-block {
    width: 100%;
    text-align: center;
}

/* Sections */
section {
    padding: 100px 0;
}

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

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

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 168, 255, 0.6);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-top: 25px;
    line-height: 1.6;
}

/* Masaüstü: slider–footer arası öğeleri daha dengeli (küçültülmüş) */
@media (min-width: 992px) {
    section {
        padding: 65px 0;
    }
    .section-header {
        margin-bottom: 45px;
    }
    .section-title {
        font-size: 34px;
        margin-bottom: 12px;
    }
    .section-subtitle {
        font-size: 16px;
        margin-top: 16px;
    }
    .about-preview-section {
        padding: 55px 0;
    }
    .about-preview-content {
        gap: 45px;
    }
    .about-preview-text h2 {
        font-size: 30px;
        margin-bottom: 16px;
    }
    .about-preview-text .lead {
        font-size: 18px;
        margin-bottom: 14px;
    }
    .about-preview-text p {
        font-size: 15px;
        margin-bottom: 18px;
    }
    .service-image {
        height: 185px;
    }
    .service-content {
        padding: 20px;
    }
    .service-content h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .service-content p {
        font-size: 14px;
        margin-bottom: 14px;
    }
    .features-grid {
        gap: 35px;
    }
    .feature-item {
        padding: 16px;
    }
    .feature-icon {
        width: 72px;
        height: 72px;
        margin: 0 auto 18px;
        font-size: 30px;
        border-radius: 16px;
    }
    .feature-item h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .feature-item p {
        font-size: 14px;
    }
    .process-steps {
        gap: 35px;
    }
    .step-number {
        width: 58px;
        height: 58px;
        font-size: 24px;
        margin: 0 auto 18px;
    }
    .process-step h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .process-step p {
        font-size: 14px;
    }
    .contact-cta {
        padding: 55px 0;
    }
    .cta-box {
        padding: 45px 50px;
    }
    .cta-box h2 {
        font-size: 30px;
        margin-bottom: 14px;
    }
    .cta-box p {
        font-size: 17px;
        margin-bottom: 28px;
    }
    .gallery-section {
        padding: 55px 0;
    }
    .gallery-grid {
        gap: 20px;
    }
}

/* About Preview Section */
.about-preview-section {
    padding: 80px 0;
    background: var(--white);
}

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

.about-preview-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--silver-color);
    position: relative;
}

.about-preview-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-glow);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
    pointer-events: none;
}

.about-preview-image:hover::before {
    opacity: 0.2;
}

.about-preview-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.about-preview-image:hover img {
    transform: scale(1.05);
}

.about-preview-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 800;
}

.about-preview-text .lead {
    font-size: 20px;
    color: var(--blue-bright);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-preview-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 25px;
}

/* Services Card List */
.services-section {
    background: var(--light-color);
    position: relative;
    overflow: hidden;
}

.services-card-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card-large {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1fr 1fr;
    transition: all 0.4s;
    border: 2px solid transparent;
}

.service-card-large:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue-bright);
}

.service-card-image {
    width: 100%;
    height: 100%;
    min-height: 300px;
    overflow: hidden;
    position: relative;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

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

.service-card-info {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card-info h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 800;
    line-height: 1.2;
}

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

.service-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    border: 2px solid var(--silver-color);
    box-shadow: 0 4px 15px rgba(0, 168, 255, 0.3);
    align-self: flex-start;
}

.service-card-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 168, 255, 0.5);
    gap: 15px;
}

.service-card-btn i {
    transition: transform 0.3s;
}

.service-card-btn:hover i {
    transform: translateX(5px);
}

/* Services Modern Grid (keeping for compatibility) */
.services-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Services Grid (Old - keeping for compatibility) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

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

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    transform: translateZ(0);
    will-change: transform;
    border-radius: 16px 16px 0 0;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover .service-image::after {
    opacity: 0.3;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    transform: translateZ(0);
    will-change: transform;
    display: block;
}

.service-card:hover .service-image img {
    transform: scale(1.15);
}

.service-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark-color);
    font-weight: 700;
    line-height: 1.3;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 15px;
    flex: 1;
}

.service-content .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* Features Section */
.features-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 50px;
}

.feature-item {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 36px;
    box-shadow: 0 8px 20px rgba(0, 168, 255, 0.4);
    transition: all 0.3s;
    border: 2px solid var(--silver-color);
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    animation: rotate 3s linear infinite;
}

.feature-item:hover .feature-icon {
    transform: rotateY(360deg) scale(1.1);
}

.feature-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark-color);
    font-weight: 700;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Process Section */
.process-section {
    background: var(--light-color);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -25px;
    width: 50px;
    height: 2px;
    background: var(--border-color);
    display: none;
}

.process-step:not(:last-child)::after {
    display: block;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(0, 168, 255, 0.4);
    transition: all 0.3s;
    border: 3px solid var(--silver-color);
    position: relative;
}

.process-step:hover .step-number {
    transform: scale(1.15) rotate(360deg);
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark-color);
    font-weight: 700;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1920&h=600&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: 1;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 200px;
}

.cta-buttons .btn i {
    margin-right: 8px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s;
}

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

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--light-color);
    transition: background 0.3s;
}

.faq-item.active .faq-question {
    background: var(--primary-color);
    color: var(--white);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--white);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: var(--dark-color);
    flex: 1;
}

.faq-item.active .faq-question h3 {
    color: var(--white);
}

.faq-question i {
    font-size: 20px;
    color: var(--primary-color);
    transition: transform 0.3s;
    margin-left: 20px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 25px 30px;
}

.faq-answer p {
    color: var(--text-color);
    line-height: 1.8;
    margin: 0;
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.3s ease;
}

.fab-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    position: relative;
    cursor: pointer;
}

.fab-phone {
    background: var(--gradient-primary);
    animation: pulse 2s infinite;
    border: 2px solid var(--silver-color);
}

.fab-whatsapp {
    background: #25D366;
}

.fab-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.fab-btn:active {
    transform: scale(0.95);
}

.fab-tooltip {
    position: absolute;
    right: 70px;
    background: var(--dark-color);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    pointer-events: none;
}

.fab-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: var(--dark-color);
}

.fab-btn:hover .fab-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 168, 255, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(0, 168, 255, 0.7);
    }
}

/* Page Header */
.page-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 80px 0 50px;
    position: relative;
    overflow: hidden;
    background-image: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=1920&h=600&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: 1;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    position: relative;
    z-index: 2;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    opacity: 0.7;
}

/* Service Detail */
.service-detail {
    padding: 80px 0;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
    grid-auto-rows: 1fr;
}

.service-image-large {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    border: 3px solid var(--silver-color);
    background: var(--silver-light);
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: 380px;
    align-self: start;
}

.service-image-large img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    border-radius: 13px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    transform: none !important;
}

.service-detail-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-detail-contact {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 18px 20px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-contact-wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #25d366;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.2s, transform 0.15s;
}
.service-contact-wa:hover {
    background: #20bd5a;
    color: #fff;
    transform: translateY(-1px);
}
.service-contact-wa i {
    font-size: 22px;
}

.service-contact-phones {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.service-contact-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: border-color 0.2s, background 0.2s;
}
.service-contact-phone:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}
.service-contact-phone i {
    font-size: 16px;
    opacity: 0.9;
}

/* Mini iletişim kutusu (adres + 2 numara + WhatsApp) */
.contact-mini-box {
    background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow);
}
.contact-mini-box-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0 0 14px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.contact-mini-box-title i {
    color: var(--primary-color);
}
.contact-mini-box-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none;
}
.contact-mini-box-row i {
    color: var(--primary-color);
    margin-top: 2px;
    flex-shrink: 0;
}
.contact-mini-box-phone:hover {
    color: var(--primary-color);
}
.contact-mini-box-wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    padding: 10px 16px;
    background: #25d366;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}
.contact-mini-box-wa:hover {
    background: #20bd5a;
    color: #fff;
    transform: translateY(-1px);
}

.contact-page-mini-box {
    margin-bottom: 24px;
}

.service-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--dark-color);
    font-weight: 800;
}

.service-description {
    margin-bottom: 35px;
    line-height: 1.9;
    color: var(--text-color);
    font-size: 16px;
}

.service-description p {
    margin-bottom: 18px;
}

.service-page-html h2,
.service-page-html h3,
.service-page-html h4 {
    margin-top: 1.25em;
    margin-bottom: 0.5em;
    color: var(--dark-color);
    font-weight: 700;
}
.service-page-html h2 { font-size: 1.5em; }
.service-page-html h3 { font-size: 1.25em; }
.service-page-html h4 { font-size: 1.1em; }
.service-page-html ul,
.service-page-html ol {
    margin: 0.75em 0;
    padding-left: 1.5em;
}
.service-page-html li { margin-bottom: 0.35em; }
.service-page-html a { color: var(--primary-color); text-decoration: underline; }

.service-description h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--dark-color);
    font-weight: 700;
}

.service-benefits {
    background: var(--light-color);
    padding: 35px;
    border-radius: 16px;
    border-left: 5px solid var(--primary-color);
    border: 2px solid var(--silver-color);
    border-left: 5px solid var(--blue-bright);
    box-shadow: 0 4px 15px rgba(0, 168, 255, 0.1);
}

.service-benefits h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 700;
}

.service-benefits ul {
    list-style: none;
}

.service-benefits li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.service-benefits i {
    color: var(--blue-bright);
    font-size: 20px;
    filter: drop-shadow(0 0 4px rgba(0, 168, 255, 0.6));
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--white);
    color: var(--dark-color);
    border: 2px solid var(--silver-color);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 15px;
}

.pagination-btn:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--blue-bright);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 168, 255, 0.3);
}

.pagination-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--blue-bright);
    box-shadow: 0 4px 15px rgba(0, 168, 255, 0.4);
}

/* Contact Section */
.contact-section {
    padding: 80px 0 0;
    background: var(--light-color);
}

.contact-info-fullwidth {
    max-width: 100%;
}

.contact-info-fullwidth .contact-page-image {
    margin-bottom: 28px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-info-fullwidth .contact-page-image img {
    width: 100%;
    max-height: 340px;
    object-fit: cover;
    display: block;
}

.contact-info-fullwidth h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--dark-color);
    font-weight: 800;
}

.contact-info-fullwidth .contact-lead,
.contact-info-fullwidth .contact-intro {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 32px;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.contact-map-fullwidth {
    width: 100%;
    margin-top: 60px;
    background: var(--white);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.06);
}

.contact-map-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 24px;
    text-align: center;
}

.contact-map-title {
    font-size: 28px;
    margin: 0 0 8px;
    color: var(--dark-color);
    font-weight: 800;
}

.contact-map-subtitle {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
}

@media (max-width: 768px) {
    .contact-action-buttons {
        flex-wrap: nowrap;
        gap: 10px;
        justify-content: center;
    }
    .contact-action-buttons .sahibinden-btn .sahibinden-icon {
        padding: 12px 14px;
    }
    .contact-action-buttons .sahibinden-btn .sahibinden-text {
        padding: 12px 20px;
        font-size: 14px;
    }
    .contact-map-fullwidth {
        margin-top: 40px;
        padding-top: 36px;
    }
    .contact-map-inner {
        padding: 0 16px 20px;
    }
    .contact-map-title {
        font-size: 24px;
    }
    .contact-details-grid {
        grid-template-columns: 1fr;
    }
}

.map-container-fullwidth {
    width: 100%;
    overflow: hidden;
}

.map-container-fullwidth iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

.contact-map-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.contact-map-wrapper h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--dark-color);
    font-weight: 800;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

.map-note {
    color: var(--text-light);
    font-size: 14px;
    text-align: center;
    margin-top: 15px;
    font-style: italic;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    padding: 25px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    color: var(--dark-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: none;
    border: 2px solid var(--silver-color);
}

.contact-text h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--dark-color);
    font-weight: 700;
}

.contact-text a {
    color: var(--blue-bright);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-text a:hover {
    color: var(--blue-glow);
    text-decoration: underline;
    text-shadow: 0 0 8px rgba(0, 168, 255, 0.5);
}

.contact-text p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Forms */
.contact-form-wrapper {
    background: var(--white);
    padding: 45px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--dark-color);
    font-weight: 800;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 15px;
}

.required {
    color: var(--error-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s;
    background: var(--light-color);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-bright);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(0, 168, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Alerts */
.alert {
    padding: 18px 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 2px solid #10b981;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 2px solid #ef4444;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

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

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: translateZ(0);
    will-change: transform;
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    object-fit: cover;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

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

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--dark-color);
    font-weight: 800;
}

.about-text h3 {
    font-size: 26px;
    margin: 35px 0 18px;
    color: var(--dark-color);
    font-weight: 700;
}

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

.about-features {
    list-style: none;
    margin-top: 25px;
}

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

.about-features i {
    color: var(--blue-bright);
    font-size: 20px;
    filter: drop-shadow(0 0 4px rgba(0, 168, 255, 0.6));
}

/* Stats Section */
.stats-section {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--silver-color);
    border-bottom: 3px solid var(--silver-color);
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 12px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2), 0 0 20px rgba(192, 192, 192, 0.5);
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 18px;
    opacity: 0.95;
    font-weight: 600;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: var(--light-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: all 0.4s;
    aspect-ratio: 4/3;
    border: 2px solid transparent;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-blue);
    border-color: var(--blue-bright);
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 168, 255, 0.8) 0%, rgba(0, 151, 230, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.4s;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.gallery-overlay h3 i {
    font-size: 20px;
}

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

.gallery-pagination {
    margin-top: 36px;
    text-align: center;
}

.gallery-pagination-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
}

.gallery-pagination-list li {
    margin: 0;
}

.gallery-pagination-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--silver-color);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.gallery-pagination-list a:hover,
.gallery-pagination-list a.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary-color);
}

.gallery-pagination-info {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 3px solid var(--blue-bright);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: var(--white);
    font-size: 40px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-bright);
    border-radius: 50%;
    transition: all 0.3s;
}

.lightbox-close:hover {
    background: var(--primary-dark);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 30px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 168, 255, 0.7);
    border-radius: 50%;
    transition: all 0.3s;
    border: 2px solid var(--silver-color);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--blue-bright);
    transform: translateY(-50%) scale(1.1);
}

/* Contact CTA */
.contact-cta {
    padding: 80px 0;
    background: var(--white);
    background-image: url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?w=1920&h=600&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: 1;
}

.cta-box {
    background: transparent;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    color: var(--white);
    border: 3px solid var(--silver-color);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(192, 192, 192, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

.cta-box h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-box p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-box .btn {
    background: var(--white);
    color: var(--blue-bright);
    border: 2px solid var(--silver-color);
}

.cta-box .btn:hover {
    background: var(--light-color);
    transform: translateY(-3px);
}

/* Footer */
.main-footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 70px 0 25px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
}

.footer-column p {
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 25px;
}

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

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

.footer-column ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s;
    display: inline-block;
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--blue-bright);
    transform: translateX(5px);
    text-shadow: 0 0 8px rgba(0, 168, 255, 0.5);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
    font-size: 20px;
    border: 2px solid transparent;
}

/* Facebook için varsayılan renk */
.footer-social a[aria-label="Facebook"] {
    background: #1877F2;
    border-color: #1877F2;
}

.footer-social a[aria-label="Facebook"]:hover {
    /* Hover efekti kaldırıldı */
}

/* Instagram için varsayılan renk */
.footer-social a[aria-label="Instagram"] {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #E4405F;
}

.footer-social a[aria-label="Instagram"]:hover {
    /* Hover efekti kaldırıldı */
}

/* WhatsApp için varsayılan renk */
.footer-social a[aria-label="WhatsApp"] {
    background: #25D366;
    border-color: #25D366;
}

.footer-social a[aria-label="WhatsApp"]:hover {
    /* Hover efekti kaldırıldı */
}

/* Sahibinden.com için varsayılan renk - Resmi sarı renk */
.footer-social a[aria-label="Sahibinden"],
.footer-social a.sahibinden {
    background: #FFD700;
    border-color: #FFD700;
}

.footer-social a[aria-label="Sahibinden"]:hover,
.footer-social a.sahibinden:hover {
    /* Hover efekti kaldırıldı */
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    opacity: 0.9;
}

.contact-info i {
    font-size: 18px;
    color: var(--blue-bright);
    filter: drop-shadow(0 0 4px rgba(0, 168, 255, 0.6));
}

.contact-sahibinden {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--silver-color);
}

.contact-action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
}

.contact-phone-btn .sahibinden-icon {
    background: #c0392b;
    color: #fff;
}

.contact-phone-btn .sahibinden-icon i {
    font-size: 18px;
    color: #fff;
    opacity: 1;
    visibility: visible;
}

.contact-phone-btn:hover .sahibinden-icon {
    background: #c0392b !important;
}

.sahibinden-btn {
    display: inline-flex;
    align-items: stretch;
    text-decoration: none;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 168, 255, 0.4);
}

.sahibinden-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFD700;
    padding: 14px 16px;
    border-radius: 50px 0 0 50px;
    flex-shrink: 0;
}

.sahibinden-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.sahibinden-text {
    display: flex;
    align-items: center;
    padding: 14px 32px;
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    border-radius: 0 50px 50px 0;
    white-space: nowrap;
}

.sahibinden-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 168, 255, 0.6);
}

.sahibinden-btn:hover .sahibinden-icon {
    background: #FFC700;
}

.sahibinden-btn:hover .sahibinden-text {
    background: var(--primary-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
        position: relative;
    }
    
    .mobile-menu-toggle.active {
        position: fixed;
        top: 60px;
        right: 20px;
        z-index: 1002;
        transform: translateY(-50%);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 120px 20px 20px;
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        gap: 0;
        z-index: 999;
        overflow-y: auto;
        overflow-x: hidden;
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
        position: relative;
    }
    
    .nav-menu .dropdown {
        position: relative;
    }
    
    .nav-menu .dropdown-menu {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        margin: 0;
        margin-top: 8px;
        padding: 0;
        background: var(--light-color);
        border-top: 1px solid var(--border-color);
        transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        list-style: none;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
    }
    
    .nav-menu .dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 10px 0;
        overflow: visible;
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu .dropdown-menu li {
        padding: 0;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
        display: block;
    }
    
    .nav-menu .dropdown-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu .dropdown-menu a {
        padding: 12px 20px 12px 40px;
        display: block;
        color: var(--text-color);
        text-decoration: none;
        width: 100%;
    }
    
    .nav-menu .dropdown-menu a:hover {
        background: var(--white);
        color: var(--blue-bright);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    /* Mobil menü logo - sol üst, kapat butonu ile dikey ortalı */
    .nav-menu .mobile-menu-logo {
        position: fixed;
        top: 25px;
        left: 20px;
        padding: 0 !important;
        border-bottom: none !important;
        z-index: 1001;
        height: 70px;
        display: flex;
        align-items: center;
        width: auto;
        margin: 0;
    }
    
    .mobile-logo-image {
        height: 70px;
        width: auto;
        max-width: 220px;
        object-fit: contain;
    }
    
    
    /* Mobil menü telefon numaraları - son menü öğesinden sonra */
    .mobile-menu-phones {
        display: none;
        padding: 20px 20px !important;
        border-top: 2px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
        background: var(--light-color);
        margin-top: 10px;
        list-style: none;
        overflow: visible;
    }
    
    .nav-menu.active .mobile-menu-phones {
        display: block !important;
    }
    
    .mobile-menu-phones .mobile-phone-item {
        display: block;
        margin-bottom: 12px;
        width: 100%;
    }
    
    .mobile-menu-phones .mobile-phone-item:last-child {
        margin-bottom: 0;
    }
    
    .mobile-menu-phones .mobile-phone-item a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 18px;
        background: var(--blue-bright);
        color: #fff !important;
        text-decoration: none;
        border-radius: 8px;
        font-weight: 600;
        font-size: 16px;
        transition: background 0.2s;
        border: 2px solid var(--blue-bright);
        width: 100%;
        box-sizing: border-box;
    }
    
    .mobile-menu-phones .mobile-phone-item a:hover,
    .mobile-menu-phones .mobile-phone-item a:focus {
        color: #fff !important;
        background: #0099dd;
        border-color: #0099dd;
    }
    
    .mobile-menu-phones .mobile-phone-item a span {
        color: #fff !important;
        flex: 1;
        min-width: 0;
        overflow: visible;
        opacity: 1 !important;
        visibility: visible !important;
        display: inline-block;
    }
    
    .mobile-menu-phones .mobile-phone-item a:hover span,
    .mobile-menu-phones .mobile-phone-item a:focus span {
        color: #fff !important;
    }
    
    .mobile-menu-phones .mobile-phone-item a i {
        font-size: 18px;
        color: #fff !important;
        flex-shrink: 0;
    }
    
    .mobile-menu-phones .mobile-phone-item a::after {
        display: none;
    }
    
    /* Mobil menü sosyal medya butonları */
    .mobile-menu-social {
        display: none;
        padding: 20px 0 !important;
        border-bottom: none !important;
    }
    
    .nav-menu.active .mobile-menu-social {
        display: block;
    }
    
    .mobile-social-wrapper {
        display: flex;
        justify-content: center;
        gap: 15px;
        padding: 10px 0;
    }
    
    .mobile-social-link {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 20px;
        text-decoration: none;
        transition: all 0.3s;
        border: 2px solid transparent;
        position: relative;
        overflow: hidden;
    }
    
    .mobile-social-link i {
        position: relative;
        z-index: 1;
    }
    
    /* Facebook için varsayılan renk */
    .mobile-social-link[aria-label="Facebook"] {
        background: #1877F2;
        border: 2px solid #1877F2;
    }
    
    .mobile-social-link[aria-label="Facebook"]:hover {
        /* Hover efekti kaldırıldı */
    }
    
    /* Instagram için varsayılan renk */
    .mobile-social-link[aria-label="Instagram"] {
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        border: 2px solid #E4405F;
    }
    
    .mobile-social-link[aria-label="Instagram"]:hover {
        /* Hover efekti kaldırıldı */
    }
    
    /* WhatsApp için varsayılan renk */
    .mobile-social-link[aria-label="WhatsApp"],
    .mobile-social-link.whatsapp {
        background: #25D366;
        border: 2px solid #25D366;
    }
    
    .mobile-social-link[aria-label="WhatsApp"]:hover,
    .mobile-social-link.whatsapp:hover {
        /* Hover efekti kaldırıldı */
    }
    
    /* Sahibinden.com için varsayılan renk - Resmi sarı renk */
    .mobile-social-link[aria-label="Sahibinden"],
    .mobile-social-link.sahibinden {
        background: #FFD700;
        border: 2px solid #FFD700;
    }
    
    .mobile-social-link[aria-label="Sahibinden"]:hover,
    .mobile-social-link.sahibinden:hover {
        /* Hover efekti kaldırıldı */
    }
    
    .mobile-social-link svg {
        width: 20px;
        height: 20px;
    }
    
    .header-top-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .header-info {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        width: 100%;
        max-width: 100%;
    }
    
    .header-info .header-phone-btn {
        flex: 1 1 0;
        min-width: 0;
        padding: 10px 12px;
        font-size: 15px;
        gap: 8px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .header-info .header-phone-btn span {
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .header-info .header-phone-btn i {
        font-size: 16px;
        flex-shrink: 0;
    }
    
    .header-separator {
        display: none;
    }
    
    .main-nav {
        padding: 18px 0;
        margin-top: 0;
    }
    
    .header-top {
        padding: 10px 0;
        margin-bottom: 12px;
        padding-bottom: 12px;
    }
    
    .hero-section {
        height: 400px;
    }
    
    .about-preview-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-modern-grid {
        grid-template-columns: 1fr;
    }
    
    
    .hero-content-wrapper .container {
        padding: 15px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        align-items: center;
        padding: 15px 0;
    }
    
    .hero-badge {
        padding: 6px 16px;
        font-size: 11px;
        margin-bottom: 15px;
    }
    
    .hero-title {
        font-size: 24px;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 35px;
        line-height: 1.5;
    }
    
    .hero-buttons {
        gap: 12px;
        margin-bottom: 60px;
        position: relative;
        z-index: 5;
    }
    
    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .service-card-large {
        grid-template-columns: 1fr;
    }
    
    .service-card-image {
        min-height: 250px;
        order: 1;
    }
    
    .service-card-info {
        order: 2;
        padding: 30px 25px;
    }
    
    .service-card-info h3 {
        font-size: 24px;
    }
    
    .hero-controls {
        bottom: 5px;
        padding: 8px 15px;
        gap: 12px;
        z-index: 2;
    }
    
    .hero-prev,
    .hero-next {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .hero-dots {
        gap: 6px;
    }
    
    .hero-dots .dot {
        width: 8px;
        height: 8px;
    }
    
    .hero-dots .dot.active {
        width: 20px;
    }
    
    .service-detail-content,
    .contact-wrapper,
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .process-step::after {
        display: none;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cta {
        background-attachment: scroll;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .page-header {
        background-attachment: scroll;
    }
    
    .cta-section {
        background-attachment: scroll;
    }
    
    .floating-actions {
        bottom: 20px;
        right: 20px;
    }
    
    .fab-btn {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .fab-tooltip {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
        min-width: auto;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        max-width: 100%;
    }
    
    .services-modern-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card-large {
        grid-template-columns: 1fr;
    }
    
    .service-card-image {
        min-height: 250px;
    }
    
    .service-card-info {
        padding: 30px 25px;
    }
    
    .service-card-info h3 {
        font-size: 24px;
    }
    
    .service-card-btn {
        width: 100%;
        justify-content: center;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 30px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .logo {
        min-width: 150px;
    }
    
    .logo-image {
        height: 55px;
        min-width: 150px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .logo-ats {
        font-size: 20px;
    }
    
    .logo-subtitle {
        font-size: 9px;
    }
    
    .about-preview-text h2 {
        font-size: 28px;
    }
    
    .about-preview-text .lead {
        font-size: 18px;
    }
}
