/* ===== CSS Variables ===== */
:root {
    --primary: #F7931E;
    --primary-dark: #e08315;
    --primary-light: rgba(247, 147, 30, 0.12);
    --dark-blue: #101C35;
    --dark-blue-light: #1a2d4d;
    --light-bg: #F8F9FA;
    --text-dark: #1a1a1a;
    --text-gray: #6c757d;
    --white: #ffffff;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    min-height: 100vh;
}

.page-content-wrapper {
    overflow-x: hidden;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 28px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.35s ease;
    border: 2px solid transparent;
    text-decoration: none;
}

.btn-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: all 0.35s ease;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(247, 147, 30, 0.25);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(247, 147, 30, 0.4);
}

.btn-primary .btn-icon {
    background: rgba(255, 255, 255, 0.25);
}

.btn-primary:hover .btn-icon {
    background: rgba(255, 255, 255, 0.4);
    transform: translateX(3px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark-blue);
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-light .btn-icon {
    background: rgba(255, 255, 255, 0.2);
}

.btn-outline-light:hover .btn-icon {
    background: var(--white);
    color: var(--primary);
    transform: translateX(3px);
}

.btn-outline-dark {
    background: var(--white);
    color: var(--dark-blue);
    border-color: var(--dark-blue);
}

.btn-outline-dark:hover {
    background: var(--dark-blue);
    color: var(--white);
    border-color: var(--dark-blue);
}

.btn-outline-dark .btn-icon {
    background: var(--primary);
    color: var(--white);
}

.btn-outline-dark:hover .btn-icon {
    background: var(--white);
    color: var(--primary);
    transform: translateX(3px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-sm .btn-icon {
    width: 28px;
    height: 28px;
    font-size: 10px;
}

.header .btn {
    padding: 10px 20px;
    font-size: 14px;
}

/* ===== Section Tag ===== */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.section-tag::before {
    content: '';
    width: 4px;
    height: 18px;
    background: var(--primary);
    border-radius: 2px;
    margin-right: 4px;
}

.section-tag-light::before {
    background: var(--primary);
}

.section-tag .tag-icon {
    color: var(--primary);
    font-weight: 700;
}

.section-tag-light {
    color: var(--white);
}

.section-tag-light .tag-icon {
    color: var(--primary);
}

.section-intro {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-intro .section-tag {
    justify-content: center;
}

.section-intro .section-tag::before {
    display: none;
}

.process-header {
    margin-bottom: 16px;
}

.process-header h2 {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0;
    line-height: 1.2;
}

.process-text {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

.contact .section-intro {
    text-align: left;
    max-width: 100%;
    margin-bottom: 30px;
}

.contact .section-intro .section-tag {
    justify-content: flex-start;
}

.contact .process-text {
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .misyon-vizyon-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--dark-blue);
    padding: 18px 0;
    transition: var(--transition);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
}

.logo {
    display: flex;
    align-items: center;
}

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

.nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav a {
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
}

.nav a:hover {
    color: var(--primary);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown-trigger i {
    font-size: 10px;
    transition: transform 0.3s;
}

.nav-dropdown:hover .nav-dropdown-trigger i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

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

.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    font-size: 14px;
}

.nav-dropdown-menu a:hover {
    color: var(--primary);
    background: rgba(247, 147, 30, 0.1);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

/* ===== Hero Section & Slider ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
}

.hero-slider .hero-slides {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    will-change: opacity;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 28, 53, 0.93) 0%, rgba(16, 28, 53, 0.78) 100%);
}

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

.hero-slider .hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-slider .hero-text {
    max-width: 650px;
}

.hero-watermark {
    position: absolute;
    right: 4%;
    bottom: 20%;
    font-size: clamp(80px, 12vw, 140px);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.04);
    white-space: nowrap;
    transform: rotate(-12deg);
    user-select: none;
    z-index: 1;
    pointer-events: none;
}

.hero-stats-bar {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 48px;
    z-index: 10;
}

.hero-stat {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
}

.hero-stat .stat-num {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    justify-content: center;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 28, 53, 0.94) 0%, rgba(16, 28, 53, 0.82) 100%);
}

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

.hero-text {
    max-width: 650px;
}

.hero .section-tag {
    animation: fadeInUp 0.6s ease;
}

.hero h1 {
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero p {
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 12px;
}

.hero .btn {
    animation: fadeInUp 0.6s ease 0.3s both;
}

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

.hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 560px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 50px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

/* ===== About Section ===== */
.about {
    padding: 100px 0;
    background: var(--light-bg);
}

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

.about-left .process-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
}

.about-left .process-text {
    margin-bottom: 30px;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    margin-bottom: 0;
}

.about-img {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.about-img-1 {
    grid-column: 1;
    grid-row: 1;
    min-height: 174px;
}

.about-img-1 img {
    height: 100%;
    min-height: 174px;
}

.about-img-badge {
    grid-column: 1;
    grid-row: 2;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: var(--transition);
}

.about-img-badge:hover {
    transform: scale(1.02);
}

.badge {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.about-img-badge span {
    font-size: 13px;
    color: var(--white);
    margin-top: 6px;
}

.about-img-2 {
    grid-column: 2;
    grid-row: 1;
}

.about-img-2 img {
    height: 100%;
    min-height: 160px;
}

.about-img-3 {
    grid-column: 2;
    grid-row: 2;
}

.about-img-3 img {
    height: 100%;
    min-height: 140px;
}

.img-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
}

.about-right p {
    margin-bottom: 20px;
    color: var(--text-gray);
}

.about-right .btn {
    margin-bottom: 30px;
}

.progress-bars {
    margin-top: 30px;
}

.progress-item {
    margin-bottom: 24px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}

.progress-bar {
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 4px;
    transition: width 1s ease;
}

/* ===== Services Section ===== */
.services {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.services-more {
    display: flex;
    justify-content: center;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.services-more-btn {
    padding: 16px 36px;
    font-size: 15px;
    box-shadow: 0 4px 20px rgba(16, 28, 53, 0.08);
    position: relative;
    overflow: hidden;
}

.services-more-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    transform: scaleY(0);
    transition: transform 0.35s ease;
    border-radius: 50px 0 0 50px;
}

.services-more-btn:hover {
    box-shadow: 0 8px 30px rgba(16, 28, 53, 0.2);
}

.services-more-btn:hover::before {
    transform: scaleY(1);
}

.service-card {
    display: block;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    padding: 0 24px 24px;
}

.service-link {
    transition: var(--transition);
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--primary-dark);
}

a.service-card {
    text-decoration: none;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

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

.service-card:hover .service-link i {
    transform: translateX(4px);
}

.service-img {
    position: relative;
    height: 220px;
    min-height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-icon {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    font-size: 18px;
    transition: var(--transition);
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    padding: 24px 24px 12px;
    min-height: 52px;
    line-height: 1.3;
}

.service-card p {
    font-size: 14px;
    color: var(--text-gray);
    padding: 0 24px 16px;
    line-height: 1.6;
    flex: 1;
}

/* ===== Cost Calculator Section ===== */
.cost-calc {
    position: relative;
    padding: 100px 0;
}

.cost-calc-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.cost-calc-overlay {
    position: absolute;
    inset: 0;
    background: rgba(16, 28, 53, 0.9);
}

.cost-calc-card {
    position: relative;
    z-index: 2;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cost-calc .section-intro {
    text-align: center;
    margin-bottom: 40px;
}

.calc-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 14px;
}

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

.calc-terms h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.calc-terms p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.calc-terms ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.calc-terms li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.calc-terms li i {
    color: var(--primary);
}

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

.calc-price {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
}

/* ===== CTA Early Section ===== */
.cta-early .cta-inner {
    flex-direction: column;
    text-align: center;
}

.cta-phone {
    font-size: 32px;
    font-weight: 700;
    margin: 20px 0;
}

.cta-phone a {
    color: var(--white);
}

.cta-phone a {
    transition: var(--transition);
}

.cta-phone a:hover {
    color: var(--primary);
}

.cta-buttons .btn {
    transition: var(--transition);
}

.cta-buttons .btn:hover {
    transform: translateY(-2px);
}

/* ===== Projects Section ===== */
.projects {
    padding: 100px 0;
    background: var(--light-bg);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.project-teklif-card .btn { color: #fff; border-color: rgba(255,255,255,0.5); }
.project-teklif-card .btn:hover { background: rgba(255,255,255,0.15); color: #fff; }
@media (max-width: 640px) {
    .project-teklif-card > div { flex-direction: column !important; text-align: center !important; padding: 28px 24px !important; }
    .project-teklif-card .btn { width: 100%; justify-content: center; }
}

.project-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    min-height: 350px;
    height: 350px;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 24px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    transition: var(--transition);
}

.project-icon {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: var(--primary);
    margin-bottom: 12px;
}

.project-overlay h3 {
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.project-overlay h3 i {
    font-size: 14px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.project-card:hover .project-overlay h3 i {
    transform: translateX(6px);
}

.project-overlay .project-card-sub {
    display: block;
    font-size: 13px;
    opacity: 0.9;
    margin-top: 6px;
    font-weight: 400;
}

.project-card:hover .project-overlay {
    background: linear-gradient(transparent, rgba(16, 28, 53, 0.9));
}

/* ===== Project detail page - each project with image ===== */
.project-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.project-detail-item {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.project-detail-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.project-detail-item .pdi-img {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.project-detail-item .pdi-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-detail-item .pdi-body {
    padding: 20px;
}

.project-detail-item .pdi-body h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 6px;
    line-height: 1.4;
}

.project-detail-item .pdi-body p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

.project-detail-item .pdi-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    margin-bottom: 8px;
}

/* ===== Project page intro block ===== */
.about--project-detail {
    background: #f2f5f8;
}

.page-intro {
    width: 100%;
    max-width: 100%;
    margin-bottom: 48px;
    padding: 32px 36px 36px 40px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 24px rgba(16, 28, 53, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.page-intro .page-intro-lead {
    font-size: 1.15rem;
    line-height: 1.65;
    color: var(--dark-blue);
    font-weight: 600;
    margin-bottom: 18px;
    position: relative;
}

.page-intro p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 14px;
    position: relative;
}

.page-intro p:last-of-type {
    margin-bottom: 0;
}

/* Section titles on project detail pages */
.project-detail-section-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
}

.project-detail-section-title i {
    color: var(--primary);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .page-intro {
        padding: 24px 20px 28px 24px;
    }
}

/* ===== S.S.S. Section ===== */
.sss {
    padding: 100px 0;
    background: var(--light-bg);
}

.sss-accordion {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
}

.sss-item {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.sss-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.sss-question:hover {
    color: var(--primary);
}

.sss-question i {
    font-size: 12px;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.sss-item.open .sss-question i {
    transform: rotate(180deg);
}

.sss-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.sss-item.open .sss-answer {
    max-height: 300px;
}

.sss-answer p {
    padding: 16px 24px 20px;
    margin: 0;
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.sss-more {
    display: flex;
    justify-content: center;
}

/* ===== Process Section ===== */
.process {
    padding: 100px 0;
    background: var(--dark-blue);
}

.process-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.process .process-header .section-tag {
    color: var(--white);
}

.process .process-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
}

.process .process-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
}

.process .section-intro {
    max-width: 1000px;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

.process-reasons .step-icon {
    font-size: 24px;
}

.process-reasons .process-step p {
    font-size: 14px;
    max-width: 280px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    transition: var(--transition);
}

.process-step:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 0 0 4px rgba(247, 147, 30, 0.3);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}

.step-icon span,
.step-icon i {
    color: var(--white);
}

.process-step h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== Neden Bizi Tercih - Card Layout ===== */
.process-cards .process-inner {
    max-width: 1200px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.reason-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 32px 28px;
    text-align: center;
    transition: var(--transition);
}

.reason-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(247, 147, 30, 0.4);
    transform: translateY(-4px);
}

.reason-card-icon {
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
    color: var(--white);
    transition: var(--transition);
}

.reason-card:hover .reason-card-icon {
    transform: scale(1.08);
    box-shadow: 0 0 0 4px rgba(247, 147, 30, 0.25);
}

.reason-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.reason-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonial-slider {
    position: relative;
    min-height: 200px;
    background: var(--light-bg);
    border-radius: var(--border-radius-lg);
    padding: 48px 72px 48px 48px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.testimonial-card {
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
    background: transparent;
    border-radius: 0;
    padding: 0;
}

.testimonial-card.active {
    display: grid;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.testimonial-author span {
    display: block;
    font-size: 13px;
    color: var(--text-gray);
}

.testimonial-img {
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 350px;
    min-height: 350px;
    flex-shrink: 0;
}

.testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.testimonial-content {
    position: relative;
    padding-left: 28px;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -4px;
    font-size: 48px;
    line-height: 1;
    color: var(--primary);
    opacity: 0.35;
    font-family: Georgia, serif;
}

.testimonial-content > p {
    color: var(--text-gray);
    margin-bottom: 24px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
}

.stars {
    color: var(--primary);
    font-size: 14px;
}

.testimonial-slider .testimonial-nav {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.testimonial-nav button {
    width: 48px;
    height: 48px;
    border: 2px solid var(--primary);
    background: var(--white);
    color: var(--primary);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.testimonial-nav button:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(247, 147, 30, 0.35);
}

/* ===== Blog Section ===== */
.blog,
section.blog {
    padding: 100px 0;
    background: var(--light-bg);
    display: block;
    min-height: 200px;
}

#blog .blog-grid {
    display: grid;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: stretch;
}

.blog-card p {
    font-size: 14px;
    color: var(--text-gray);
    padding: 0 24px 16px;
    line-height: 1.6;
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

.blog-img {
    height: 200px;
    min-height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px 0;
    font-size: 14px;
    color: var(--text-gray);
}

.blog-cat {
    color: var(--primary);
    font-weight: 600;
}

.blog-card h3 {
    font-size: 18px;
    font-weight: 600;
    padding: 16px 24px;
    line-height: 1.4;
    min-height: 50px;
    flex: 1;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 24px 24px;
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
}

.blog-link:hover {
    color: var(--primary-dark);
}

.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.blog-pagination-link,
.blog-pagination-current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.blog-pagination-link {
    background: var(--white);
    color: var(--dark-blue);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.blog-pagination-link:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.blog-pagination-current {
    background: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
}

/* ===== Contact Section ===== */
.contact {
    padding: 100px 0;
    background: var(--white);
}

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

.contact-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.contact-book {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.contact-item i {
    color: var(--primary);
    font-size: 20px;
    width: 24px;
}

.contact-form .form-row {
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
}

/* ===== CTA Section ===== */
.cta {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 28, 53, 0.72) 0%, rgba(20, 35, 70, 0.68) 50%, rgba(16, 28, 53, 0.72) 100%);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
}

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

.cta-early .cta-inner {
    gap: 56px;
}

.cta h2 {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    color: var(--white);
    max-width: 100%;
    line-height: 1.3;
    white-space: nowrap;
    text-shadow: 0 2px 20px rgba(16, 28, 53, 0.4);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}

.cta-buttons .btn {
    padding: 14px 28px;
    font-size: 15px;
}

.cta-buttons .btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(247, 147, 30, 0.3);
}

.cta-buttons .btn-primary:hover {
    box-shadow: 0 6px 28px rgba(247, 147, 30, 0.45);
}

.cta-buttons .btn-outline-light {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
}

.cta-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
}

/* ===== Footer ===== */
.footer {
    padding: 0;
    background: var(--dark-blue);
    color: var(--white);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 48px 40px;
    padding: 64px 0 40px;
    align-items: start;
}

.footer-about .logo {
    margin-bottom: 20px;
    display: inline-block;
}

.footer-about .logo img {
    filter: brightness(0) invert(1);
    max-height: 42px;
    width: auto;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.78);
    margin-bottom: 24px;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    font-size: 14px;
    color: rgba(255,255,255,0.78);
    transition: color 0.2s ease;
}

.footer-col ul a:hover {
    color: var(--primary);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: rgba(255,255,255,0.78);
    line-height: 1.5;
}

.footer-contact-item i {
    color: var(--primary);
    margin-top: 3px;
    width: 18px;
    text-align: center;
}

.footer-contact-item a {
    color: rgba(255,255,255,0.78);
}

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

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

.social-icons a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px 0 28px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    color: rgba(255,255,255,0.65);
}

.footer-bottom a {
    color: rgba(255,255,255,0.78);
}

.footer-bottom a:hover {
    color: var(--primary);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 8px 20px;
}

.footer-links a:not(:last-child)::after {
    content: '|';
    margin-left: 20px;
    color: rgba(255,255,255,0.35);
    pointer-events: none;
}

/* ===== Page Hero (Inner Pages) ===== */
.page-hero {
    background: var(--dark-blue);
    padding: 160px 0 80px;
    text-align: center;
}

.page-hero.page-hero-img {
    background-size: cover;
    background-position: center;
    position: relative;
}

.page-hero.page-hero-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(16,28,53,0.6), rgba(16,28,53,0.92));
    z-index: 1;
}

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

.page-hero h1 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

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

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(247, 147, 30, 0.4);
}

/* ===== Form Focus States ===== */
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

/* ===== Blog Card Hover ===== */
.blog-card {
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.blog-link i {
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-link i {
    transform: translateX(6px);
}

/* ===== Responsive: Tablet ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .about,
    .services,
    .testimonials,
    .blog,
    .sss,
    .process,
    .contact {
        padding: 72px 0;
    }

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

    /* about-images: tablette de web ile aynı (min-height/gap override yok) */

    .about-left .process-header h2 { font-size: 28px; }

    .section-intro {
        margin-bottom: 36px;
    }

    .process-header h2 {
        font-size: clamp(22px, 4vw, 32px);
    }

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

    .service-card h3 {
        min-height: auto;
        font-size: 18px;
    }

    .process-reasons {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-slider {
        min-height: auto;
        padding: 32px 24px 80px;
    }

    .testimonial-slider .testimonial-nav {
        right: 50%;
        top: auto;
        bottom: 24px;
        transform: translateX(50%);
        flex-direction: row;
        gap: 16px;
    }

    .testimonial-content {
        padding-left: 20px;
    }

    .testimonial-content::before {
        font-size: 36px;
    }

    .testimonial-card.active {
        grid-template-columns: 1fr;
    }

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

    .project-card {
        min-height: 260px;
        height: 260px;
    }

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

    .blog-card h3 {
        min-height: auto;
        font-size: 16px;
    }

    .cta {
        padding: 64px 0;
    }

    .cta-inner {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .cta h2 {
        white-space: normal;
        font-size: 26px;
    }

    /* Tablet: butonlar daha kompakt */
    .btn {
        padding: 11px 20px;
        font-size: 14px;
    }
    .btn-icon {
        width: 26px;
        height: 26px;
        font-size: 10px;
    }
    .cta-buttons {
        gap: 14px;
    }
    .cta-buttons .btn {
        padding: 11px 20px;
        font-size: 14px;
    }
    .services-more .btn,
    .services-more-btn {
        padding: 11px 22px;
        font-size: 14px;
    }
    .testimonial-nav button {
        width: 42px;
        height: 42px;
        font-size: 12px;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

/* ===== Responsive: Mobil ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 18px;
    }

    .about,
    .services,
    .testimonials,
    .blog,
    .sss,
    .process,
    .contact {
        padding: 48px 0 56px;
    }

    .section-intro {
        margin-bottom: 28px;
    }

    .process-header h2 {
        font-size: 22px;
        line-height: 1.3;
    }

    .process-text {
        font-size: 15px;
    }

    .header-inner {
        flex-wrap: nowrap;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-blue);
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }

    .nav.open {
        display: flex;
    }

    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0, 0, 0, 0.2);
        margin: 10px 0;
        box-shadow: none;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        display: block;
    }

    /* Hero ana sayfa */
    .hero {
        min-height: 85vh;
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .hero p {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .hero-buttons {
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 32px;
    }

    .hero-watermark {
        font-size: 48px;
        right: 2%;
        bottom: 18%;
    }

    /* Hero stats bar & about-images: mobilde web ile aynı görünüm (özel mobil override yok) */

    .about-left .process-header h2 {
        font-size: 24px;
    }

    /* Mobil: tüm butonlar kompakt */
    .btn {
        padding: 10px 18px;
        font-size: 13px;
        min-height: 44px;
    }
    .btn-icon {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }
    .cta-buttons {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    .cta-buttons .btn {
        padding: 10px 18px;
        font-size: 13px;
    }
    .services-more .btn,
    .services-more-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    .about-right .btn {
        padding: 10px 18px;
        font-size: 13px;
    }
    .testimonial-nav button {
        width: 40px;
        height: 40px;
        font-size: 11px;
    }
    section.blog {
        padding: 40px 0 48px;
    }
    .blog .section-intro {
        margin-bottom: 24px;
    }
    .blog .process-header h2 {
        font-size: 20px;
    }
    /* Projeler / iletişim: buton kompakt */
    .projects-grid + p,
    .contact-form .btn {
        margin-top: 24px;
    }
    .projects-grid + p .btn,
    .contact-form .btn {
        padding: 10px 18px;
        font-size: 13px;
    }

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

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .project-card {
        min-height: 280px;
        height: 280px;
    }

    .project-overlay h3 {
        font-size: 18px;
    }

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

    .blog-card h3 {
        font-size: 17px;
    }

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

    .process-reasons {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .sss-accordion {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-inner {
        grid-template-columns: 1fr;
    }

    .cta {
        padding: 48px 0;
    }

    .cta h2 {
        font-size: 22px;
    }

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

    .footer-desc {
        max-width: none;
    }

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

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .page-intro {
        padding: 20px 16px 24px 20px;
    }
}

/* ===== Responsive: Küçük mobil ===== */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .about,
    .services,
    .testimonials,
    .blog,
    .sss,
    .process,
    .contact {
        padding: 40px 0 48px;
    }

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

    /* about-images & hero-stats-bar: 480px'te de web ile aynı (2x2 grid, aynı hero bar) */

    .hero h1 {
        font-size: 24px;
    }

    .project-card {
        min-height: 260px;
        height: 260px;
    }

    .testimonial-slider {
        padding: 24px 16px 72px;
    }

    .testimonial-content::before {
        font-size: 28px;
    }

    .testimonial-content {
        padding-left: 16px;
    }

    /* Küçük mobil: butonlar daha da kompakt */
    .btn {
        padding: 8px 14px;
        font-size: 12px;
        min-height: 40px;
    }
    .btn-icon {
        width: 20px;
        height: 20px;
        font-size: 9px;
    }
    .cta-buttons .btn,
    .services-more .btn,
    .services-more-btn,
    .about-right .btn,
    .contact-form .btn {
        padding: 8px 14px;
        font-size: 12px;
    }
    .testimonial-nav button {
        width: 36px;
        height: 36px;
        font-size: 10px;
    }
}
