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

:root {
    --primary-color: #1e3a8a;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #1e40af;
    --accent-color: #2563eb;
    --text-color: #1e293b;
    --text-light: #64748b;
    --text-lighter: #94a3b8;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-dark: #0f172a;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

html {
    scroll-behavior: smooth;
}

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

/* Açılış splash – logo karşılama */
#splash {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #0d0d0d;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#splash.splash--hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.splash-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}
.splash-logo .splash-icon {
    width: 100px;
    height: 100px;
    background: #0d0d0d;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.splash-logo .splash-icon svg {
    width: 60px;
    height: 60px;
}
.splash-logo .splash-text {
    text-align: center;
}
.splash-logo .splash-text h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.25rem 0;
    letter-spacing: -0.5px;
}
.splash-logo .splash-text .splash-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    letter-spacing: 0.02em;
}
.splash-logo .logo-iq {
    color: #fff;
    font-weight: 800;
}

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

/* Header Styles */
.header {
    background: #0d0d0d;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

/* Anasayfada header logosu gizli; sadece siteye girişte splash logo görünsün */
body.page-home .header .logo {
    display: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    width: 72px;
    height: 72px;
    background: #0d0d0d;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 44px;
    height: 44px;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.logo {
    flex-direction: row;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.logo-text h1 {
    margin-bottom: 0;
}

.logo h1 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    margin: 0;
    line-height: 1.2;
}

.logo-iq {
    color: #fff;
    font-weight: 800;
}

.logo-tagline {
    font-size: 0.7rem;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-list a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-list a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-list a:hover::before,
.nav-list a.active::before {
    width: 100%;
}

.nav-list a:hover,
.nav-list a.active {
    color: #fff;
}

.btn-header {
    padding: 10px 24px;
    background: #fff;
    color: #0d0d0d;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.btn-header:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #0d0d0d;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.lang-active {
    color: #fff;
}

.lang-toggle:hover .lang-active {
    color: #fff;
}

.lang-separator {
    color: #fff;
}

.lang-inactive {
    color: #fff;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;
    padding: 2px;
}

.lang-opt {
    background: transparent;
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-opt:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.lang-opt.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.header .hamburger span {
    background: rgba(255, 255, 255, 0.9);
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #3b82f6 100%);
    padding: 120px 0 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero-title-line {
    display: block;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.hero-title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.hero-title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.hero-title-line:nth-child(3) {
    animation-delay: 0.6s;
}

.hero-title-line.highlight {
    color: rgba(255, 255, 255, 0.95);
    position: relative;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1s;
    opacity: 0;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1.2s;
    opacity: 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

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

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

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

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

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

.btn-full {
    width: 100%;
}

/* Home Slider - Fotoğraflar güzelce düzenlenmiş */
.home-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--bg-light);
    padding: 2rem 0;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
    padding: 0 1.25rem;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    border-radius: 16px;
    overflow: hidden;
}

.slider-track .slide {
    min-width: 100%;
    flex-shrink: 0;
    position: relative;
    background: var(--bg-light);
}

.slider-track .slide img {
    background: #e8e8e8;
}

.slider-track .slide img {
    width: 100%;
    height: auto;
    min-height: 480px;
    max-height: 82vh;
    object-fit: cover;
    object-position: center;
    display: block;
    vertical-align: middle;
}

.scroll-down-btn {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
    z-index: 10;
    pointer-events: auto;
}

.scroll-down-btn:hover {
    color: rgba(255, 255, 255, 0.95);
}

.scroll-down-btn.scroll-down-hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll-down-btn:hover .scroll-dot {
    opacity: 1;
}

.scroll-down-mouse {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-down-mouse .mouse-svg {
    width: 28px;
    height: 42px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.scroll-dot {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    border-radius: 2px;
    background: currentColor;
    animation: scroll-dot-bounce 2s ease-in-out infinite;
}

@keyframes scroll-dot-bounce {
    0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
    50% { opacity: 1; transform: translateX(-50%) translateY(6px); }
}

.scroll-down-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Hero intro - Slider'dan sonra metin */
.hero-intro {
    padding: 4rem 0;
    background: var(--bg-white);
}

.hero-intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-intro-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #000;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.hero-intro-title .hero-title-line {
    display: block;
}

.hero-intro-title .highlight {
    color: #000;
}

.hero-intro-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: #000;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.hero-intro .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-end;
    align-items: center;
    margin-top: 0;
    margin-right: 3rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.slider-btn:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.slider-dots .dot:hover,
.slider-dots .dot.active {
    background: white;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-color);
    letter-spacing: -1px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* About Section */
.about-section {
    padding: 2rem 0 4rem;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

/* Hakkımızda: başlık sola, yukarı hizalı */
.section-header-left {
    text-align: left;
    margin-bottom: 1.25rem;
}

.section-header-left .section-tag {
    margin-left: 0;
}

.about-section .section-title {
    color: #000;
    opacity: 1;
}

.about-content-single {
    display: block;
    max-width: 820px;
    margin: 0;
    text-align: left;
}

/* Hakkımızda: metin sol, görsel sağ */
.about-content-with-image {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2.5rem;
    align-items: start;
    max-width: 1100px;
    margin: 0;
    text-align: left;
}

.about-content-with-image .about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a5f 100%);
    margin-top: -3rem;
    margin-left: auto;
    margin-right: 0;
    max-width: 360px;
    justify-self: end;
}

.about-content-with-image .about-image-img {
    width: 100%;
    height: auto;
    min-height: 300px;
    max-height: 380px;
    object-fit: cover;
    display: block;
}

/* İki sütun: paragraflar sol, kartlar sağda — Biz Kimiz ile aynı üst hizada */
.about-content-two-col {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2.5rem;
    align-items: start;
    max-width: 1100px;
}

.about-content-two-col .about-features-cards {
    margin-top: 0;
    margin-left: 2rem;
    align-self: start;
    gap: 1.5rem;
}

/* Sadece "Biz Kimiz" şeffaf kutu */
.about-title-box {
    display: inline-block;
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.about-title-box .section-title {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 800;
    color: #000;
}

.about-section .about-lead {
    font-size: 1.1rem;
    font-weight: 500;
    color: #000;
    opacity: 1;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: left;
}

.about-section .about-paragraph {
    color: #000;
    opacity: 1;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: left;
}

/* Canlı özellik kartları */
.about-features-cards {
    margin-top: 1.5rem;
    display: grid;
    gap: 1.5rem;
}

.about-feature-card {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.25rem 1.5rem;
    background: var(--bg-white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-feature-card:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-lg);
    border-color: #0d0d0d;
}

.about-feature-card .feature-icon {
    width: 48px;
    height: 48px;
    background: #0d0d0d;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-card .feature-icon svg {
    width: 24px;
    height: 24px;
}

.about-feature-card .feature-text h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #000;
    opacity: 1;
    margin-bottom: 0.35rem;
}

.about-feature-card .feature-text p {
    color: #000;
    opacity: 1;
    font-size: 0.98rem;
    line-height: 1.6;
    margin: 0;
}

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

.about-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
    margin-top: 2rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-features {
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-color);
}

.feature-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.about-image {
    position: relative;
}

.image-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.image-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.badge-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.services-section .section-title {
    color: #000;
}

.services-section .section-description {
    color: #000;
}

.services-section .service-card > p {
    color: #000;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: #0d0d0d;
}

.service-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--bg-light);
}

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

.service-card-body {
    padding: 1.5rem 2rem 2rem;
}

.service-card-body h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: var(--text-color);
}

.service-card-body p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #0d0d0d;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.service-icon svg {
    width: 30px;
    height: 30px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-card > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.service-features li {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.process-section .section-tag {
    font-size: 1.4rem;
    padding: 10px 24px;
    background: #0d0d0d;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    position: relative;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.process-section .step-number {
    background: #0d0d0d;
}

.process-section .process-step:hover {
    border-color: #0d0d0d;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

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

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.faq-section .section-description {
    color: #000;
}

.faq-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

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

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: var(--primary-color);
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

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

/* Legal Notice Section */
.legal-notice-section {
    padding: 4rem 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.legal-notice {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
}

.legal-icon {
    width: 50px;
    height: 50px;
    background: rgba(30, 58, 138, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.legal-icon svg {
    width: 28px;
    height: 28px;
}

.legal-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.legal-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.lead-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Inner page wrapper */
.page-main {
    padding-top: 2rem;
    min-height: 50vh;
}

/* Why Us Section */
.why-us-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.why-us-list {
    list-style: none;
    padding: 0;
    margin: 2.5rem auto 0;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.why-us-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--text-color);
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.why-us-list li:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.why-us-list .check {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Industries Section */
.industries-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.industries-section .section-description {
    color: #000;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.industry-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.75rem;
    text-align: center;
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.industry-card:hover {
    border-color: var(--primary-color);
    background: var(--bg-light);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.form-group select {
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-light);
    width: 100%;
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

/* Projects Section */
.projects-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.project-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.project-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    background: var(--primary-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.project-link:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.project-content {
    padding: 2rem;
}

.project-category {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg-light);
    color: var(--primary-color);
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.project-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

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

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.contact-section .section-description {
    color: #000;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-section .contact-icon {
    background: #000;
    color: #fff;
}

.contact-section .contact-icon svg {
    stroke: #fff;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.contact-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-social .social-link {
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.contact-social .social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.4);
}

.contact-social .social-link svg {
    width: 20px;
    height: 20px;
}

.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

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

/* Footer */
.footer {
    background: #0d0d0d;
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.footer-top {
    padding: 5rem 0 3rem;
    background: #0d0d0d;
}

/* Footer içi hero metin + buton (sadece anasayfada) */
.footer-hero-block {
    text-align: center;
    padding-bottom: 3rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-hero-title {
    color: #fff;
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1rem;
}

.footer-hero-title .footer-hero-line {
    display: block;
}

.footer-hero-subtitle {
    color: #fff;
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.btn-footer-cta {
    display: inline-block;
    padding: 12px 28px;
    background: #fff;
    color: #0d0d0d;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.btn-footer-cta:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #0d0d0d;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

/* Anasayfa footer: Neden Biz bölümü eklendiğinde 5 sütun */
.footer-content:has(.footer-why-us) {
    grid-template-columns: 2fr 1.4fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-why-us .footer-why-us-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    display: inline-block;
}

.footer-why-us-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-why-us-list li {
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-why-us-list .check {
    color: #fff;
    flex-shrink: 0;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
    width: 76px;
    height: 76px;
    background: #0d0d0d;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.footer-logo .logo-icon svg {
    width: 48px;
    height: 48px;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin: 0;
}

.footer-logo .logo-tagline {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.footer-logo .logo-iq {
    color: #fff;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    letter-spacing: 0.3px;
}

.footer-section p {
    color: #fff;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.85rem;
    color: #fff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-section ul li:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #fff;
    opacity: 0.9;
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-social .social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.footer-social .social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.4);
}

.footer-social .social-link svg {
    width: 20px;
    height: 20px;
}

.footer-contact .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact .contact-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.footer .contact-icon-small {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.contact-icon-small svg {
    width: 18px;
    height: 18px;
}

.footer-contact .contact-list li > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-contact .contact-list li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-contact .contact-list li a:hover {
    color: #fff;
    opacity: 0.9;
}

.footer-contact .contact-list li span {
    color: #fff;
    font-size: 0.95rem;
    display: block;
}

.footer-bottom {
    background: #000;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-bottom-content--stack {
    flex-direction: column;
    text-align: center;
}

.footer-bottom p {
    color: #fff;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom .design-credit {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0.5rem;
}

.footer-bottom .design-credit-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.footer-bottom .design-credit-contact {
    margin-top: 0.35rem;
}

.footer-bottom .design-credit-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    cursor: pointer;
}

.footer-bottom .design-credit-phone:hover {
    color: #fff;
}

.footer-bottom .design-credit-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    opacity: 0.9;
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .about-content,
    .about-content-with-image,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        order: -1;
    }

    .about-content-with-image .about-image {
        margin-left: 0;
        margin-right: auto;
        max-width: 100%;
    }

    .about-content-with-image .about-image-img {
        min-height: 260px;
        max-height: 320px;
    }

    .image-placeholder {
        height: 400px;
    }

    .contact-section {
        padding: 3rem 0;
    }

    .contact-content {
        gap: 2rem;
    }

    .process-section {
        padding: 3rem 0;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .about-content-two-col {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-content-two-col .about-features-cards {
        margin-top: 1rem;
    }

    .header-wrapper {
        padding: 1rem 0;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .logo-icon {
        width: 60px;
        height: 60px;
    }

    .logo-img {
        height: 36px;
    }

    .logo-icon svg {
        width: 36px;
        height: 36px;
    }

    .header-actions {
        gap: 0.5rem;
    }

    .btn-header {
        display: none;
    }

    .lang-switcher {
        padding: 2px;
    }
    .lang-opt {
        padding: 4px 8px;
        font-size: 0.75rem;
    }

    .hamburger {
        display: flex;
    }

    .nav {
        gap: 1rem;
    }

    .home-slider {
        padding: 1.25rem 0;
    }

    .scroll-down-btn {
        display: none;
    }

    .scroll-down-mouse .mouse-svg {
        width: 24px;
        height: 36px;
    }

    .scroll-dot {
        bottom: 6px;
        height: 6px;
    }

    .scroll-down-label {
        font-size: 0.7rem;
    }

    .slider-container {
        padding: 0 0.75rem;
        border-radius: 12px;
    }

    .slider-track .slide img {
        min-height: 320px;
        max-height: 68vh;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

    .hero-intro {
        padding: 3rem 0;
    }

    .hero-intro .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-intro .btn {
        width: 100%;
    }

    .nav-list {
        position: fixed;
        top: 0;
        left: -100%;
        flex-direction: column;
        background: #0d0d0d;
        width: 100%;
        height: 100vh;
        padding: 5rem 2rem 2rem;
        box-shadow: var(--shadow-xl);
        transition: left 0.3s ease;
        gap: 1.5rem;
        align-items: flex-start;
        z-index: 999;
    }

    .nav-list.active {
        left: 0;
    }

    .nav-list a {
        font-size: 1.1rem;
        width: 100%;
        padding: 0.75rem 0;
    }

    .nav-list a::before {
        display: none;
    }

    .hero {
        min-height: 90vh;
        padding: 100px 0 60px;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .services-grid,
    .projects-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .contact-section {
        padding: 2.5rem 0;
    }

    .contact-item {
        gap: 1rem;
    }

    .contact-icon {
        width: 44px;
        height: 44px;
    }

    .contact-icon svg {
        width: 22px;
        height: 22px;
    }

    .contact-details h4 {
        font-size: 1.1rem;
    }

    .contact-details p,
    .contact-details a {
        font-size: 0.95rem;
    }

    .process-section {
        padding: 2.5rem 0;
    }

    .process-step {
        padding: 1.5rem;
    }

    .process-steps {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .step-number {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }

    .page-main {
        padding-top: 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-top {
        padding: 4rem 0 2rem;
    }

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

    .footer-links {
        justify-content: center;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .contact-section {
        padding: 2rem 0;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
    }

    .contact-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-form-wrapper h3 {
        font-size: 1.2rem;
    }

    .process-section {
        padding: 2rem 0;
    }

    .process-step {
        padding: 1.25rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .about-content-with-image .about-image-img {
        min-height: 220px;
        max-height: 280px;
    }

    .slider-track .slide img {
        min-height: 280px;
        max-height: 62vh;
    }

    .slider-dots .dot {
        width: 10px;
        height: 10px;
    }

    .header-wrapper {
        padding: 0.875rem 0;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .logo-icon {
        width: 52px;
        height: 52px;
    }

    .logo-icon svg {
        width: 30px;
        height: 30px;
    }

    .logo-img {
        height: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-social {
        gap: 0.5rem;
    }

    .footer-social .social-link {
        width: 40px;
        height: 40px;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-icon-small {
        width: 36px;
        height: 36px;
    }

    .contact-icon-small svg {
        width: 16px;
        height: 16px;
    }
}