/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --navy: #0a1f3b;
    --navy-light: #0e2a50;
    --navy-dark: #061428;
    --dark: #ffffff;
    --dark-lighter: #f8f9fa;
    --orange: #e8611a;
    --orange-hover: #ff7b33;
    --orange-glow: rgba(232, 97, 26, 0.3);
    --white: #ffffff;
    --off-white: #f5f5f7;
    --gray: #6c757d;
    --gray-light: #e0e0e8;
    --text: #444444;
    --glass: #ffffff;
    --glass-border: rgba(0, 0, 0, 0.1);
    --shadow: 0 12px 40px rgba(6, 20, 40, 0.08);
    --shadow-sm: 0 4px 12px rgba(6, 20, 40, 0.05);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--dark);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Montserrat', sans-serif;
    color: var(--navy);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER ===== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

#header.scrolled {
    background: rgba(10, 31, 59, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--white);
    letter-spacing: 1px;
}

.logo-sub {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.6rem;
    color: var(--orange);
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding: 10px;
    border: 1px solid var(--glass-border);
}

.dropdown:hover .dropdown-menu {
    transform: translateY(4px);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.dropdown-item {
    display: block;
    padding: 10px 15px;
    color: var(--navy);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(232, 97, 26, 0.1);
    color: var(--orange);
    padding-left: 20px;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--orange-glow);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -5px);
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    height: 70vh;
    min-height: 420px;
    max-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider-track {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    will-change: opacity;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slider-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg,
            rgba(6, 20, 40, 0.82) 0%,
            rgba(10, 31, 59, 0.72) 40%,
            rgba(30, 30, 46, 0.88) 100%);
}

.hero-slider-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 100px 24px 40px;
}

/* Navigation Arrows */
.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.hero-slider-arrow:hover {
    background: rgba(232, 97, 26, 0.6);
    border-color: var(--orange);
    transform: translateY(-50%) scale(1.1);
}

.hero-slider-prev {
    left: 20px;
}

.hero-slider-next {
    right: 20px;
}

/* Dot Indicators */
.hero-slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.hero-dot:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.3);
}

.hero-dot.active {
    background: var(--orange);
    border-color: var(--orange);
    transform: scale(1.2);
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 28px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), #ff7b33);
    color: var(--white);
    box-shadow: 0 4px 20px var(--orange-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(232, 97, 26, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.stat-number {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--orange);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
    font-weight: 500;
    letter-spacing: 0.5px;
}


/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--orange);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
}

.section-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), #ff7b33);
    border-radius: 4px;
    margin: 0 auto 20px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 550px;
    margin: 0 auto;
}

/* ===== ABOUT ===== */
.section-about {
    background: var(--dark-lighter);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

/* About Image Column */
.about-image-col {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: visible;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    object-fit: cover;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.about-image-accent {
    position: absolute;
    bottom: -14px;
    left: -14px;
    width: 120px;
    height: 120px;
    border: 4px solid var(--orange);
    border-radius: var(--radius);
    z-index: 0;
}

/* About Text Column */
.about-text-col {
    padding: 10px 0;
}

.about-text-col .section-tag {
    display: block;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.about-lead {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 16px;
    color: var(--text);
}

.about-lead strong {
    color: var(--orange);
}

.about-text-secondary {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 24px;
}

/* Mission / Vision Cards */
.about-mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 8px;
}

.about-mv-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.about-mv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(232, 97, 26, 0.3);
}

.about-mv-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 97, 26, 0.1);
    border-radius: 10px;
}

.about-mv-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 6px;
}

.about-mv-card p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
}

.about-mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.mv-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 24px;
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

.mv-card:hover {
    border-color: rgba(232, 97, 26, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.mv-icon {
    margin-bottom: 12px;
}

.mv-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--orange);
}

.mv-card p {
    font-size: 0.9rem;
    color: var(--gray);
}

.reasons-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(232, 97, 26, 0.2);
}

.reason-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    transition: var(--transition);
}

.reason-card:hover {
    border-color: rgba(232, 97, 26, 0.3);
    transform: translateX(6px);
}

.reason-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 97, 26, 0.1);
    border-radius: 12px;
}

.reason-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.reason-card p {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ===== GÜVEN ALANI SECTION ===== */
.section-guven {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 50px 0 !important;
    position: relative;
    overflow: hidden;
}

.section-guven::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), #ff7b33, var(--orange));
}

.section-guven .highlight-item {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.section-guven .highlight-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(232, 97, 26, 0.4);
    box-shadow: 0 10px 30px rgba(232, 97, 26, 0.15);
}

.section-guven .highlight-item span {
    color: var(--white) !important;
}

/* ===== GÜVEN ALANI (Trust Highlights) ===== */
.about-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.highlight-item {
    background: var(--white);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), #ff7b33);
}

.highlight-item:hover {
    transform: translateY(-5px);
    border-color: rgba(232, 97, 26, 0.3);
    box-shadow: 0 10px 30px rgba(232, 97, 26, 0.12);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: rgba(232, 97, 26, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-item span {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    font-family: var(--font-heading);
}

/* ===== SERVICES ===== */
.section-services {
    background: var(--dark);
}

/* ===== SERVICES IMAGE CARD GRID (Homepage) ===== */
.services-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-image-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--glass);
    border-radius: 16px;
    padding: 20px 20px 24px;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-image-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), #ff7b33);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-image-card:hover::after {
    transform: scaleX(1);
}

.service-image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(6, 20, 40, 0.12);
    border-color: rgba(232, 97, 26, 0.35);
}

.service-image-wrapper {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 18px;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-image-card:hover .service-image-wrapper img {
    transform: scale(1.06);
}

.service-image-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    text-align: center;
    color: var(--navy);
    margin: 0;
}

/* ===== OLD SERVICES GRID (used on hizmetler.html) ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), transparent);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(232, 97, 26, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    color: var(--white);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.service-link:hover {
    color: var(--orange-hover);
    gap: 8px;
}

/* ===== REFERANSLAR ===== */
.section-refs {
    background: var(--dark-lighter);
}

.refs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ref-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.ref-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ref-item:hover img {
    transform: scale(1.08);
}

.ref-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 31, 59, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

.ref-item:hover .ref-overlay {
    opacity: 1;
}

.ref-cat {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.ref-overlay h4 {
    font-size: 1.05rem;
    color: var(--white);
}

.ref-cta {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border: 2px dashed rgba(232, 97, 26, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ref-cta-content {
    text-align: center;
    padding: 24px;
}

.ref-cta-content h4 {
    font-size: 1.2rem;
    margin: 16px 0 8px;
}

.ref-cta-content p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 16px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--orange);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--orange);
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

/* ===== CONTACT ===== */
.section-contact {
    background: var(--dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-card {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 16px 20px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: rgba(232, 97, 26, 0.3);
    transform: translateX(6px);
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 97, 26, 0.1);
    border-radius: 12px;
}

.contact-card h4 {
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.contact-card a,
.contact-card p {
    font-size: 0.9rem;
    color: var(--gray);
}

.contact-card a:hover {
    color: var(--orange);
}

.contact-map {
    margin-top: 16px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.contact-form-wrapper {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.contact-form h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.contact-form>p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--white);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px var(--orange-glow);
}

.form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23b0b0c0' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.form-group select option {
    background: var(--navy-dark);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-success {
    text-align: center;
    padding: 40px;
}

.form-success h3 {
    margin: 16px 0 8px;
    color: #25d366;
}

.form-success p {
    color: var(--gray);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy-dark);
    padding: 60px 0 0;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--gray);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-links a {
    display: block;
    font-size: 0.88rem;
    color: var(--gray);
    padding: 4px 0;
}

.footer-links a:hover {
    color: var(--orange);
    padding-left: 8px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--gray);
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--gray);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse-wp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-wp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 28px;
    width: 48px;
    height: 48px;
    background: var(--orange);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 998;
    box-shadow: 0 4px 15px rgba(232, 97, 26, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--orange-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(232, 97, 26, 0.4);
}

.back-to-top svg {
    color: white;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in:nth-child(1) {
    animation-delay: 0.2s;
}

.fade-in:nth-child(2) {
    animation-delay: 0.4s;
}

.fade-in:nth-child(3) {
    animation-delay: 0.6s;
}

.fade-in:nth-child(4) {
    animation-delay: 0.8s;
}

.fade-in:nth-child(5) {
    animation-delay: 1s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== HEADER SOLID (Sub-pages) ===== */
.header-solid {
    background: rgba(10, 31, 59, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* ===== PAGE HEADER (Service Sub-pages) ===== */
.page-header {
    padding: 140px 0 60px;
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
}

.page-header .page-title {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-header .text-light {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* ===== SERVICE PAGE GRID ===== */
.service-page-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

@media (max-width: 991px) {
    .service-page-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-page-grid .service-sidebar {
        width: 100%;
    }

    .service-page-grid .service-main-content {
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .service-page-grid {
        gap: 20px;
    }

    .service-main-content h2 {
        font-size: 1.3rem;
    }

    .service-text-content p {
        font-size: 0.92rem;
    }

    .service-guarantee-block {
        padding: 20px !important;
    }

    .sidebar-widget {
        padding: 20px !important;
    }

    .sidebar-widget h4 {
        font-size: 1.2rem !important;
    }
}

/* ===== PAGE HERO (Sub-pages) ===== */
.page-hero {
    position: relative;
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 97, 26, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 97, 26, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: url('images/hero-bg.png') center/cover no-repeat;
    opacity: 0.06;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--white);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
}

.breadcrumb a {
    color: var(--gray);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--orange);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.3);
}

.breadcrumb .current {
    color: var(--orange);
    font-weight: 600;
}

/* ===== SECTION CTA ===== */
.section-cta {
    text-align: center;
    margin-top: 48px;
}

/* ===== ABOUT SUMMARY (Homepage) ===== */
.about-summary {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-summary .about-lead {
    text-align: center;
}

.about-summary p {
    color: var(--gray);
    margin-bottom: 20px;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.highlight-item:hover {
    border-color: rgba(232, 97, 26, 0.3);
    transform: translateY(-4px);
}

.highlight-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 97, 26, 0.1);
    border-radius: 50%;
}

.highlight-item span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #000000;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 97, 26, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 1.05rem;
    color: var(--gray);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== SERVICE DETAIL (hizmetler.html) ===== */
.service-detail {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 40px;
    align-items: start;
    padding: 40px 0;
    scroll-margin-top: 100px;
}

.service-detail.reverse {
    grid-template-columns: 1fr 120px;
}

.service-detail.reverse .service-detail-icon {
    order: 2;
}

.service-detail.reverse .service-detail-content {
    order: 1;
}

.service-detail-icon {
    width: 100px;
    height: 100px;
    background: rgba(232, 97, 26, 0.08);
    border: 2px solid rgba(232, 97, 26, 0.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: var(--white);
    flex-shrink: 0;
}

.service-detail-icon svg {
    width: 100%;
    height: 100%;
}

.service-detail-content h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--white);
}

.service-detail-content p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.92rem;
    color: var(--text);
    border-bottom: 1px solid var(--glass-border);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li svg {
    flex-shrink: 0;
}

.service-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
    margin: 20px 0;
}

/* ===== VALUES GRID (hakkimizda.html) ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), transparent);
    opacity: 0;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 97, 26, 0.3);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.value-card:hover::before {
    opacity: 1;
}

.value-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(232, 97, 26, 0.15);
    margin-bottom: 12px;
    line-height: 1;
}

.value-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ===== SINGLE SERVICE PAGE ===== */
.section-service-single {
    background: var(--dark);
}

.service-single-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

.service-single-img {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 28px;
}

.service-single-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
}

.service-single-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.service-single-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--orange);
}

.service-single-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.service-single-cta {
    background: var(--navy-dark);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 32px;
    margin-top: 40px;
    text-align: center;
}

.service-single-cta h3 {
    margin-top: 0;
    color: var(--white) !important;
}

.service-single-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 16px;
}

.sidebar-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.sidebar-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(232, 97, 26, 0.2);
}

.sidebar-link {
    display: block;
    padding: 10px 14px;
    font-size: 0.9rem;
    color: var(--gray);
    border-radius: 8px;
    transition: var(--transition);
    margin-bottom: 4px;
}

.sidebar-link:hover {
    background: rgba(232, 97, 26, 0.08);
    color: var(--orange);
    padding-left: 20px;
}

.sidebar-contact {
    text-align: center;
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    border-color: rgba(232, 97, 26, 0.2);
}

.sidebar-contact h4 {
    border-bottom: none;
    margin-bottom: 4px;
    padding-bottom: 0;
}

.sidebar-contact p {
    color: var(--gray);
    font-size: 0.88rem;
    margin-bottom: 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-mv-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-detail,
    .service-detail.reverse {
        grid-template-columns: 100px 1fr;
    }

    .service-detail.reverse .service-detail-icon {
        order: 0;
    }

    .service-detail.reverse .service-detail-content {
        order: 0;
    }
}

@media (max-width: 991px) {
    .hamburger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: rgba(10, 31, 59, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 32px 32px;
        gap: 0;
        transition: right 0.4s ease;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    }

    .nav.open {
        right: 0;
    }

    .nav-link {
        font-size: 1rem;
        padding: 14px 0;
        width: 100%;
        border-bottom: 1px solid var(--glass-border);
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    /* Override the nav-link underline on dropdown toggle */
    .dropdown-toggle::after {
        content: '' !important;
        position: static !important;
        display: inline-block !important;
        width: 8px !important;
        height: 8px !important;
        background: none !important;
        border-right: 2px solid rgba(255, 255, 255, 0.5);
        border-bottom: 2px solid rgba(255, 255, 255, 0.5);
        transform: rotate(45deg);
        transition: transform 0.3s ease, border-color 0.3s ease;
        margin-left: auto;
        flex-shrink: 0;
    }

    .dropdown.active .dropdown-toggle::after {
        transform: rotate(-135deg);
        border-color: var(--orange);
    }

    .dropdown-menu {
        position: static !important;
        min-width: unset !important;
        width: 100% !important;
        background: rgba(255, 255, 255, 0.03) !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        max-height: 0;
        overflow: hidden;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: none !important;
        transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.45s ease !important;
    }

    .dropdown.active .dropdown-menu {
        max-height: 700px;
        padding: 6px 0 6px 12px !important;
    }

    /* Prevent desktop hover from interfering */
    .dropdown:hover .dropdown-menu {
        transform: none;
        max-height: 0;
    }

    .dropdown.active:hover .dropdown-menu {
        max-height: 700px;
    }

    .dropdown-item {
        color: rgba(255, 255, 255, 0.75) !important;
        padding: 11px 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 6px;
        font-size: 0.9rem;
        font-weight: 500;
        transition: all 0.2s ease;
    }

    .dropdown-item:last-child {
        border-bottom: none;
    }

    .dropdown-item:hover {
        background: rgba(232, 97, 26, 0.08) !important;
        color: var(--orange) !important;
        padding-left: 22px;
    }

    .nav-cta {
        margin-top: 16px;
        justify-content: center;
        width: 100%;
    }

    .section {
        padding: 70px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .refs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-single-grid {
        grid-template-columns: 1fr;
    }

    /* Override inline grid styles on service pages */
    .section-service-single .container {
        display: block !important;
        grid-template-columns: unset !important;
    }

    .section-service-single .service-main-content {
        margin-bottom: 40px;
    }

    .section-service-single .service-sidebar {
        width: 100%;
    }

    .page-header,
    .page-hero {
        padding: 100px 0 40px !important;
    }

    .page-header .page-title,
    .page-title {
        font-size: 1.8rem !important;
    }

    .page-header .text-light {
        font-size: 0.95rem;
    }

    .about-mission-vision {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-text-col .section-title {
        text-align: center !important;
    }

    .about-text-col .section-tag {
        text-align: center;
    }

    .about-text-col {
        text-align: center;
    }

    .about-mv-grid {
        grid-template-columns: 1fr;
    }

    .about-mv-card {
        text-align: left;
    }

    .about-text-col .btn {
        margin: 28px auto 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-slider {
        height: 60vh;
        min-height: 380px;
        max-height: 550px;
    }

    .hero-slider-content {
        padding: 90px 20px 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-desc {
        font-size: 0.95rem;
        margin-bottom: 22px;
    }

    .hero-slider-arrow {
        width: 40px;
        height: 40px;
    }

    .hero-slider-prev {
        left: 12px;
    }

    .hero-slider-next {
        right: 12px;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .contact-form-wrapper {
        padding: 28px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .page-hero {
        padding: 120px 0 40px;
    }

    .service-detail,
    .service-detail.reverse {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-detail-icon {
        width: 70px;
        height: 70px;
        padding: 14px;
    }

    .service-detail.reverse .service-detail-icon {
        order: 0;
    }

    .service-detail.reverse .service-detail-content {
        order: 0;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-banner {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: auto;
        min-height: 0;
        max-height: none;
        padding: 0;
    }

    .hero-slider-content {
        padding: 80px 40px 50px;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .hero-desc {
        font-size: 0.85rem;
        margin-bottom: 18px;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .hero-stats {
        gap: 16px;
        flex-wrap: nowrap;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .hero-slider-arrow {
        width: 32px;
        height: 32px;
        top: 50%;
    }

    .hero-slider-arrow svg {
        width: 16px;
        height: 16px;
    }

    .hero-slider-prev {
        left: 4px;
    }

    .hero-slider-next {
        right: 4px;
    }

    .hero-slider-dots {
        bottom: 14px;
    }

    .hero-dot {
        width: 9px;
        height: 9px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.88rem;
    }

    .refs-grid {
        grid-template-columns: 1fr;
    }

    .services-image-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .logo-name {
        font-size: 1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-highlights {
        grid-template-columns: 1fr 1fr;
    }

    .about-mv-grid {
        grid-template-columns: 1fr;
    }

    .about-image-accent {
        width: 80px;
        height: 80px;
        bottom: -10px;
        left: -10px;
    }

    .page-hero-title {
        font-size: 1.8rem;
    }

    /* Service single page mobile fixes */
    .section-service-single .container {
        display: block !important;
        grid-template-columns: unset !important;
        gap: 0 !important;
    }

    .page-header,
    .page-hero {
        padding: 90px 0 30px !important;
    }

    .page-header .page-title,
    .page-title {
        font-size: 1.4rem !important;
    }

    .page-header .text-light {
        font-size: 0.85rem;
    }

    .service-guarantee-block {
        padding: 20px !important;
    }

    .sidebar-widget {
        padding: 20px !important;
    }

    .about-highlights {
        grid-template-columns: 1fr !important;
    }

    .cta-content h2 {
        font-size: 1.3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
}