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

:root {
    --primary-teal: #0f2d45;   /* deep navy */
    --dark-teal: #071c2c;      /* near-black navy */
    --dark-teal-soft: #0c2337; /* soft version of dark-teal (darker but softer) */
    --mid-navy: #163d5a;       /* card navy */
    --light-teal: #1f4c7a;     /* muted blue highlight */
    --lighter-teal: #6ba8d1;   /* lighter soft blue highlight */
    --accent-orange: #c62832;  /* bold crimson */
    --light-orange: #f6c6cc;   /* soft blush */
    --text-white: #ffffff;
    --text-light: #edf3fb;
    --text-gray: #9e9e9e;
    --text-gray-soft: #7a7a7a;
    --text-dark: #111827;
    --btn-light: #d7dadd;
    --bg-light: #f5f7fb;
    --bg-card: #ffffff;
    --bg-footer: #bbb5b5;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    font-weight: 400;
}

/* Header Styles */
.nav_absolute {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

#header-placeholder {
    display: none;
}

header {
    background-color: transparent;
    padding: 0.75rem 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: none;
    border-bottom: none;
    transition: background-color 0.3s ease;
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.5s ease;
}

header.animate::after {
    transform: scaleX(1);
}

.header-container {
    width: 100%;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.logo {
    flex-shrink: 0;
    z-index: 1001;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.contact-btn-wrapper {
    flex-shrink: 0;
    z-index: 1001;
}

/* Hamburger Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(4, 19, 32, 0.85);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    cursor: pointer;
    padding: 0;
    z-index: 1100;
    position: relative;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(12, 42, 70, 0.95);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
}

.mobile-menu-toggle:active {
    transform: translateY(0);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.mobile-menu-toggle:focus-visible {
    outline: 2px solid var(--accent-orange);
    outline-offset: 3px;
}

.hamburger-line {
    width: 18px;
    height: 2px;
    background-color: var(--text-white);
    border-radius: 999px;
    transition: transform 0.3s ease, opacity 0.2s ease, background-color 0.3s ease, width 0.3s ease;
    transform-origin: center;
}

.hamburger-line + .hamburger-line {
    margin-top: 4px;
}

.mobile-menu-toggle[aria-expanded="true"] {
    background: rgba(15, 45, 69, 0.98);
    border-color: rgba(255, 255, 255, 0.3);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
    width: 20px;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-6px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
    width: 20px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
}

.logo::after,
.logo::before {
    display: none !important;
    content: none !important;
}

.logo-icon {
    width: 180px;
    height: auto;
    object-fit: contain;
    display: block;
}

.logo span,
.logo *:not(.logo-icon) {
    display: none !important;
}

.logo {
    font-size: 0;
    line-height: 0;
}

/* Mobile-only logo + footer CTA inside slide-out menu */
.mobile-nav-header,
.mobile-nav-footer {
    display: none;
}

.mobile-nav-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.mobile-nav-logo img {
    width: 150px;
    height: auto;
    object-fit: contain;
    display: block;
}

.mobile-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.6rem;
    height: auto;
    max-width: 220px;
    border-radius: 30px;
    border: none;
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    background-color: rgba(198, 40, 50, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.18s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.mobile-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.65);
    background-color: var(--btn-light);
    color: var(--text-dark);
}

.mobile-nav-cta:active {
    transform: translateY(0);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

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

.main-nav a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--accent-orange);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.nav-dropdown-toggle::after {
    content: '▼';
    font-size: 0.5rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 0.5rem;
    opacity: 0.7;
}

.nav-dropdown:hover .nav-dropdown-toggle::after {
    transform: rotate(180deg);
    opacity: 1;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    background: rgba(7, 28, 44, 0.95);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-radius: 16px;
    padding: 0.75rem;
    min-width: 280px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.98);
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s linear 0.3s;
    list-style: none;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    gap: 0.25rem;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s linear 0s;
}

.nav-dropdown-menu li {
    margin: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav-dropdown:hover .nav-dropdown-menu li:nth-child(1) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.05s;
}

.nav-dropdown:hover .nav-dropdown-menu li:nth-child(2) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.1s;
}

.nav-dropdown:hover .nav-dropdown-menu li:nth-child(3) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.15s;
}

.nav-dropdown:hover .nav-dropdown-menu li:nth-child(4) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.2s;
}

.nav-dropdown:hover .nav-dropdown-menu li:nth-child(5) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.25s;
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 0.625rem 1rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    position: relative;
    margin: 0;
    border-radius: 10px;
    overflow: hidden;
    box-sizing: border-box;
    background: transparent;
}

.nav-dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-orange), rgba(198, 40, 50, 0.6));
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 3px 3px 0;
    opacity: 0;
}

.nav-dropdown-menu a::after {
    content: '→';
    position: absolute;
    right: 1rem;
    opacity: 0;
    transform: translateX(-5px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    font-size: 0.85rem;
    color: var(--accent-orange);
    font-weight: 500;
}

.nav-dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(198, 40, 50, 0.12), rgba(198, 40, 50, 0.04));
    color: var(--text-white);
    padding-left: 1.25rem;
    transform: translateX(2px);
}

.nav-dropdown-menu a:hover::before {
    transform: scaleY(1);
    opacity: 1;
}

.nav-dropdown-menu a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.header-contact-btn {
    background-color: rgba(198, 40, 50, 0.9);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.header-contact-btn:hover {
    background-color: var(--btn-light);
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    position: relative;
    z-index: 0;
    overflow: hidden;
    min-height: 90vh;
    height: 100vh;
    display: flex;
    align-items: center;
    color: var(--text-white);
    padding: 0;
    background-color: #030f1d;
}

/* Header'ı tüm hero section'lar içinde konumlandır */
section[class*="hero"] {
    position: relative;
}

section[class*="hero"] header,
section[class*="hero"] .nav_absolute,
section[class*="hero"] #header-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* İlk slayt arka planı artık .hero-slide::before ile; tüm slaytlar aynı mantıkla dolar */
.hero-container {
    max-width: 1200px;
    margin: 0;
    margin-top: 3rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-subtitle::before {
    content: '';
    width: 20px;
    height: 1px;
    background-color: var(--text-gray);
}

.hero-title {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 4rem;
    max-width: 800px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 0;
    margin-bottom: 6rem;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: rgba(198, 40, 50, 0.9);
    color: var(--text-white);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.875rem;
}

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

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.875rem;
}

.btn-secondary:hover {
    background-color: var(--btn-light);
    color: var(--text-dark);
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    opacity: 0;
    transform: translateY(40px);
    animation: heroSlideUp 1.2s ease 0.3s forwards;
}

.hero-feature {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(75, 75, 75, 0.3);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-weight: 400;
    font-size: 1rem;
    width: fit-content;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-feature::before {
    content: '✓';
    width: 16px;
    height: 16px;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--text-white);
    flex-shrink: 0;
    font-size: 0.75rem;
}

@keyframes heroSlideUp {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroImageZoom {
    0% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes servicesLineDraw {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

@keyframes servicesSlideUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes aboutSlideUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes aboutLineDraw {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

.hero-callout {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0.9rem;
    background: rgba(15, 45, 69, 0.25);
    border-radius: 24px;
    text-decoration: none;
    color: var(--text-white);
    max-width: 560px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    bottom: 4rem;
    right: 2rem;
    opacity: 0;
    transform: translateY(60px);
    animation: heroSlideUp 1.3s ease 0.6s forwards;
    z-index: 2;
}

.hero-callout:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.hero-callout-media {
    width: 80px;
    height: 54px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-callout-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-callout-content {
    flex: 1;
}

.hero-callout-title {
    font-weight: 400;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-light);
}

.hero-callout-text {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin: 0;
}

.hero-callout-cta {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.hero-callout:hover .hero-callout-cta {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.65);
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 0;
    display: flex;
    align-items: center;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 90vh;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px) scale(0.98);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 1s cubic-bezier(0.4, 0, 0.2, 1),
                transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    padding: 11rem 2rem 4rem;
}

.hero-slide.slide-next {
    transform: translateX(30px) scale(0.98);
}

.hero-slide.slide-prev {
    transform: translateX(-30px) scale(0.98);
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(8, 97, 198, 0.35), rgba(11, 42, 74, 0.55));
    background-size: cover;
    background-position: center;
    z-index: -1;
    transform: scale(1.08);
    animation: heroImageZoom 1.4s ease forwards;
}

/* Background images for each slide */
.hero-slide[data-bg="images/security-hero.jpg"]::before {
    background-image: linear-gradient(rgba(8, 97, 198, 0.35), rgba(11, 42, 74, 0.55)), url('../images/security-hero.jpg');
}

.hero-slide[data-bg="images/slider1.png"]::before {
    background-image: linear-gradient(rgba(8, 97, 198, 0.35), rgba(11, 42, 74, 0.55)), url('../images/slider1.png');
}

.hero-slide[data-bg="images/slider2.png"]::before {
    background-image: linear-gradient(rgba(8, 97, 198, 0.35), rgba(11, 42, 74, 0.55)), url('../images/slider2.png');
}

.hero-slide[data-bg="images/slider3.png"]::before {
    background-image: linear-gradient(rgba(8, 97, 198, 0.35), rgba(11, 42, 74, 0.55)), url('../images/slider3.png');
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    z-index: 1;
    transform: translateX(0) scale(1);
    min-height: 100%;
    height: 100%;
    width: 100%;
}

.hero-slide.active.slide-next,
.hero-slide.active.slide-prev {
    transform: translateX(0) scale(1);
}

.hero-slide .hero-container {
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.hero-slide.active .hero-container {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide .hero-callout {
    position: absolute;
    z-index: 3;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
}

.hero-slide.active .hero-callout {
    opacity: 1;
    transform: translateY(0);
}

/* Slider Navigation Buttons */
.hero-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 1.2rem;
}

.hero-slider-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.hero-slider-prev {
    left: 2rem;
}

.hero-slider-next {
    right: 2rem;
}

/* Slider Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

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

.hero-slider-dot:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.3);
}

.hero-slider-dot.active {
    background: var(--text-white);
    border-color: var(--text-white);
    width: 32px;
    border-radius: 6px;
}

/* Section Styles */
.section.services-overview-section {
    padding: 7.5rem 2rem
}

/* Services Section */
.services-container {
    max-width: 1500px;
    margin: 0 auto;
}

.services-subtitle {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--light-teal);
    margin-bottom: 1rem;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* About Section */
.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-subtitle {
    display: inline-flex;
    align-items: center;
    font-size: 2.2rem;
    font-weight: 500;
    gap: 1.5rem;
    color: var(--text-white);
    letter-spacing: 3px;
    position: relative;
    padding-top: 5.5rem;
    padding-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s ease 0.2s, transform 0.9s ease 0.2s;
}

.about-subtitle.animate {
    opacity: 1;
    transform: translateY(0);
}

.about-section {
    background-color: var(--dark-teal-soft);
    color: var(--text-white);
    padding: 1rem 2rem 6rem 2rem;
}

.about-subtitle::before,
.about-subtitle::after {
    content: '';
    height: 1px;
    width: 420px;
    background-color: rgba(255, 255, 255, 0.2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s ease;
}

.about-subtitle.animate::before {
    transform: scaleX(1);
    transition-delay: 0.3s;
}

.about-subtitle.animate::after {
    transform: scaleX(1);
    transition-delay: 0.4s;
}

.about-value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
    margin-bottom: 1.5rem;
}

.about-column-left,
.about-column-right {
    display: grid;
    grid-auto-rows: 1fr;
    gap: 2rem;
}

.about-card-left,
.about-card-right {
    background-color: rgba(18, 48, 72, 0.92);
    border-radius: 12px;
    padding: 2.5rem;
    min-height: 260px;
    height: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, opacity 0.9s ease;
    opacity: 0;
    transform: translateY(50px);
}

.about-card-left.animate,
.about-card-right.animate {
    opacity: 1;
    transform: translateY(0);
}

.about-card-left:nth-child(1) {
    transition-delay: 0s;
}

.about-card-left:nth-child(1).animate {
    transition-delay: 0.4s;
}

.about-card-left:nth-child(2) {
    transition-delay: 0s;
}

.about-card-left:nth-child(2).animate {
    transition-delay: 0.6s;
}

.about-card-right:nth-child(1) {
    transition-delay: 0s;
}

.about-card-right:nth-child(1).animate {
    transition-delay: 0.5s;
}

.about-card-right:nth-child(2) {
    transition-delay: 0s;
}

.about-card-right:nth-child(2).animate {
    transition-delay: 0.7s;
}

.about-card-left.animate:hover,
.about-card-right.animate:hover {
    transform: translateY(-10px);
    box-shadow: 0 50px 90px rgba(0, 0, 0, 0.45);
    border-color: rgba(255, 255, 255, 0.15);
}

.about-card-left h3,
.about-card-right h3 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-top: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.about-card-left p,
.about-card-right p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.85;
    font-weight: 300;
}
.about-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.about-icon svg {
    width: 32px;
    height: 32px;
}

.about-icon svg .stroke {
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.about-icon .material-icons {
    font-size: 32px;
    line-height: 1;
}

.about-icon.icon-strategy {
    color: #ffffff;
}

.about-icon.icon-ops {
    color: #ffffff;
}

.about-icon.icon-digital {
    color: #ffffff;
}

.about-icon.icon-change {
    color: #ffffff;
}

.about-media {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    min-height: 100%;
    transition: transform 0.6s ease, box-shadow 0.6s ease, opacity 0.9s ease 0.45s, transform 0.9s ease 0.45s;
    opacity: 0;
    transform: translateY(50px);
}

.about-media.animate {
    opacity: 1;
    transform: translateY(0);
}

.about-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 20% center;
    display: block;
    transition: transform 0.6s ease;
}

.about-media.animate:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
}

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

/* Process Section */
.process-container {
    max-width: 1500px;
    margin: 0 auto;

}

.section.process-section {
    padding: 7.5rem 2rem 0 2rem;
    margin-bottom: -8rem;
}

.process-header {
    margin-bottom: 4rem;
    padding-left: 0;
}

.process-subtitle {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--light-teal);
    margin-bottom: 1rem;
    text-align: left;
}

.process-line {
    width: 100%;
    height: 0.8px;
    background-color: rgba(0, 0, 0, 0.35);
    margin: 0.5rem 0 1.5rem;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s ease 0.3s;
}

.process-line.animate {
    transform: scaleX(1);
}

.process-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: left;
}

/* Process Steps */
.process-main-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin-bottom: 1rem;
    align-items: start;
}

.process-left-column {
    display: flex;
    flex-direction: column;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.process-step {
    padding: 1rem 1.5rem;
    background-color: transparent;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
    font-weight: 600;
    text-align: left;
    width: fit-content;
}

.process-step.active {
    background-color: var(--dark-teal);
    color: var(--text-white);
    border-color: var(--dark-teal);
    width: 600px;
}

.process-content-wrapper {
    position: relative;
    min-height: 400px;
    margin-bottom: 10rem;
    padding-bottom: 2rem;
}

.process-content {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    margin-top: 7rem;
}

.process-content.active {
    opacity: 1;
    position: relative;
    pointer-events: all;
}

.process-text h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.process-text p {
    font-size: 1rem;
    font-weight: 200;
    color: var(--text-dark);
    opacity: 0.6;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    max-width: 700px;
}

.process-text p:last-of-type {
    margin-bottom: 2rem;
}

.process-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.process-image img {
    width: 100%;
    height: auto;
    min-height: 400px;
    max-height: 650px;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.process-btn {
    background-color: rgba(198, 40, 50, 0.9);
    color: var(--text-white);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    border: 1px solid rgba(198, 40, 50, 0.4);
    cursor: pointer;
    font-size: 0.875rem;
}

.process-btn:hover {
    background-color: var(--primary-teal);
    color: var(--text-white);
}

/* Testimonials Section */
.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-title {
    display: inline-flex;
    align-items: center;
    font-size: 2rem;
    font-weight: 500;
    gap: 1.5rem;
    color: var(--text-white);
    letter-spacing: 3px;
    position: relative;
    padding-top: 5rem;
    padding-bottom: 2rem;
    transform: translateY(30px);
    transition: opacity 0.9s ease 0.2s, transform 0.9s ease 0.2s;
}

.testimonials-title::before,
.testimonials-title::after {
    content: '';
    height: 1px;
    width: 520px;
    background-color: rgba(255, 255, 255, 0.2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s ease;
}

.testimonials-title.animate::before,
.testimonials-title.animate::after {
    transform: scaleX(1);
}

/* Industries Section */
.industries-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section.industries-section {
    padding: 7.5rem 2rem 5rem 2rem;
    margin-bottom: 0;
}

.industries-subtitle {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--light-teal);
    margin-bottom: 1rem;
    text-align: left;
}

.industries-line {
    width: 100%;
    height: 0.8px;
    background-color: rgba(0, 0, 0, 0.35);
    margin: 0.5rem 0 1.5rem;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s ease 0.3s;
}

.industries-line.animate {
    transform: scaleX(1);
}

.industries-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: left;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.industries-title.animate {
    opacity: 1;
    transform: translateY(0);
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto;
}

/* Services Grid */
.services-overview-section {
    background-color: var(--bg-light);
}

.services-overview {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: auto;
}

.services-intro {
    padding-bottom: 1.5rem;
}

.services-line {
    width: 100%;
    height: 0.8px;
    background-color: rgba(0, 0, 0, 0.35);
    margin: 0.5rem 0 1.5rem;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s ease 0.3s;
}

.services-line.animate {
    transform: scaleX(1);
}

.services-lede {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-dark);
    max-width: 1100px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease 0.6s, transform 0.9s ease 0.6s;
    margin-top: 3rem;
}

.services-lede.animate {
    opacity: 1;
    transform: translateY(0);
}

.services-stats-row {
    display: flex;
    flex-wrap: wrap;
    column-gap: 3rem;
    row-gap: 1.5rem;
    align-items: flex-start;
    margin-top: 4rem;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease 0.8s, transform 0.9s ease 0.8s;
}

.services-stats-row.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 160px;
    padding-right: 0;
}

.stat-value {
    font-size: 3rem;
    font-weight: 500;
    color: var(--light-teal);
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text-dark);
}

.services-divider {
    width: 1px;
    height: 72px;
    background-color: rgba(0, 0, 0, 0.12);
    margin-right: 4rem;
    margin-left: 4rem;
}

.services-context {
    flex: 1;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 750px;
    margin-left: 12rem;
}

.services-container {
    margin-left: 0;
    margin-right: auto;
}

/* Testimonials & Stats */
.testimonials-section {
    background-color: var(--dark-teal-soft);
    color: var(--text-white);
    padding-bottom: 4rem;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.testimonials-grid.animate {
    opacity: 1;
    transform: translateY(0);
}

.testimonials-row-top {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 1rem;
}

.testimonials-row-bottom {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 1rem;
}

.testimonial-card {
    background-color: var(--dark-teal);
    padding: 2.5rem;
    border-radius: 12px;
    position: relative;
    color: var(--text-white);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.testimonials-grid.animate .testimonial-card {
    opacity: 1;
    transform: translateY(0);
}

.testimonials-grid.animate .testimonials-row-top .testimonial-card {
    transition-delay: 0.3s;
}

.testimonials-grid.animate .testimonials-row-bottom .testimonial-card {
    transition-delay: 0.4s;
}

.testimonial-quote {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-white);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--light-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
    overflow: hidden;
}

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

.testimonial-info h4 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    font-size: 0.875rem;
    color: var(--text-light);
}

.testimonial-arrow {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background-color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    color: var(--dark-teal);
    font-size: 1.25rem;
    font-weight: 300;
}

.testimonial-arrow:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateX(3px);
}

.stat-card {
    background-color: var(--primary-teal);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: left;
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.testimonials-grid.animate .stat-card {
    opacity: 1;
    transform: translateY(0);
}

.testimonials-grid.animate .testimonials-row-top .stat-card {
    transition-delay: 0.35s;
}

.testimonials-grid.animate .testimonials-row-bottom .stat-card {
    transition-delay: 0.45s;
}

.stat-card-large {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.stat-card-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Industries Section */
.industries-section {
    background-color: var(--bg-light);
}

.industries-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.industries-nav {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
}

.industries-nav button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--dark-teal);
    background-color: transparent;
    color: var(--dark-teal);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.industries-nav button:hover {
    background-color: var(--dark-teal);
    color: var(--text-white);
}

.industries-grid {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    overflow: visible;
    position: relative;
    width: 100%;
    will-change: transform;
    transition: transform 0.5s ease;
}

.industries-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

@media (min-width: 1200px) {
    .industries-grid {
        display: flex;
    }
}

.industry-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
    flex: 0 0 calc((100% - 4rem) / 3);
    width: calc((100% - 4rem) / 3);
    min-width: calc((100% - 4rem) / 3);
    max-width: calc((100% - 4rem) / 3);
    flex-shrink: 0;
    margin-right: 0;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.industry-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.industries-grid.animate .industry-card {
    opacity: 1;
    transform: translateY(0);
}

.industries-grid.animate .industry-card:nth-child(1) {
    transition-delay: 0.1s;
}

.industries-grid.animate .industry-card:nth-child(2) {
    transition-delay: 0.2s;
}

.industries-grid.animate .industry-card:nth-child(3) {
    transition-delay: 0.3s;
}

.industries-grid.animate .industry-card:nth-child(4) {
    transition-delay: 0.4s;
}

.industries-grid.animate .industry-card:nth-child(5) {
    transition-delay: 0.5s;
}

.industries-grid.animate .industry-card:nth-child(6) {
    transition-delay: 0.6s;
}

@media (max-width: 768px) {
    .industry-card {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.industry-card:hover img {
    transform: scale(1.05);
}

.industry-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
}

.industry-tags {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.industry-tag {
    background-color: var(--bg-card);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    display: inline-block;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-teal);
    color: var(--text-white);
    padding: 5rem 2rem;
    text-align: center;
}

.cta-card {
    background-color: var(--bg-card);
    border-radius: 16px;
    padding: 4rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-dark);
}

.cta-card h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--dark-teal);
}

.cta-card p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
}

.cta-feature::before {
    content: '✓';
    width: 32px;
    height: 32px;
    background-color: var(--light-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--text-white);
    flex-shrink: 0;
}


/* Form Styles */
.form-section {
    background-color: var(--bg-light);
    padding: 5rem 2rem;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-card);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-orange);
}

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


/* Responsive Design */
@media (max-width: 1200px) {
    .hero-slide {
        padding: 10rem 1.5rem 3rem;
    }

    .hero-container {
        margin-left: 0;
        width: 100%;
    }

    .hero-callout {
        max-width: 500px;
        right: 1.5rem;
        bottom: 3rem;
    }
}

@media (max-width: 968px) {
    .mobile-menu-toggle {
        display: flex;
        position: fixed;
        top: 1.25rem;
        right: 1.25rem;
    }

    /* Mobil menü açıkken scroll kilidi */
    body.mobile-menu-open {
        overflow: hidden;
    }

    .hero-callout {
        margin-top: 2rem;
        margin-right: 0;
        margin-left: 0;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: linear-gradient(135deg, rgba(7, 28, 44, 0.98), rgba(15, 45, 69, 0.98));
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 6rem 2rem 2rem;
        transition: right 0.3s ease;
        z-index: 1001;
        overflow-y: auto;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        display: flex;
        flex-direction: column;
    }

    .mobile-nav-header {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 2.5rem;
    }

    .mobile-nav-footer {
        display: flex;
        justify-content: center;
        margin-top: auto;
        padding-top: 2rem;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }

    .main-nav ul > li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-nav ul > li:last-child {
        border-bottom: none;
    }

    .main-nav ul > li > a {
        display: block;
        padding: 1.25rem 0;
        font-size: 1.1rem;
        width: 100%;
        transition: color 0.3s ease;
    }

    .main-nav ul > li > a:hover {
        color: var(--accent-orange);
    }

    .nav-dropdown {
        position: static;
        width: 100%;
    }

    .nav-dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 1.25rem 0;
        cursor: pointer;
    }

    .nav-dropdown-toggle::after {
        margin-left: auto;
        font-size: 0.6rem;
        transition: transform 0.3s ease;
    }

    .nav-dropdown.active .nav-dropdown-toggle::after {
        transform: rotate(180deg);
    }

    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        padding: 0;
        margin: 0;
        min-width: auto;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                    padding 0.4s ease;
        margin-left: 0;
        width: 100%;
        list-style: none;
        display: flex;
        flex-direction: column;
    }

    .nav-dropdown.active .nav-dropdown-menu {
        max-height: 1000px;
        padding: 0.5rem 0 0 0;
    }

    .nav-dropdown-menu li {
        opacity: 1;
        transform: none;
        border-bottom: none;
        width: 100%;
        margin: 0;
    }

    .nav-dropdown-menu a {
        padding: 0.75rem 0;
        margin: 0.05rem 0;
        border-radius: 0;
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.9);
        display: block;
        width: 100%;
        transition: color 0.25s ease, transform 0.18s ease;
        position: relative;
        padding-left: 0;
        background: transparent;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-dropdown-menu a::before {
        content: none;
    }

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

    .nav-dropdown-menu a:hover {
        background: transparent;
        transform: translateX(2px);
        color: var(--accent-orange);
    }

    .nav-dropdown-menu a:hover::before {
        content: none;
    }

    .contact-btn-wrapper {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-slide {
        flex-direction: column;
        align-items: flex-start;
        padding: 8rem 1rem 3rem;
        min-height: auto;
    }

    .hero-slide.active {
        min-height: 100%;
        height: 100%;
    }

    .header-container {
        padding: 0 1rem;
        gap: 1rem;
    }

    .hero-container {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        max-width: 100%;
    }

    .hero-subtitle {
        font-size: 0.7rem;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 3rem;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        margin-bottom: 3rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 0.875rem 1.5rem;
    }

    .hero-features {
        width: 100%;
        gap: 0.5rem;
    }

    .hero-feature {
        width: 100%;
        font-size: 0.9rem;
        padding: 0.625rem 1rem;
    }

    .hero-callout {
        display: none;
    }

    .hero-callout-media {
        width: 100%;
        height: 180px;
    }

    .hero-callout-content {
        width: 100%;
    }

    .hero-callout-title {
        font-size: 0.95rem;
    }

    .hero-callout-text {
        font-size: 0.85rem;
    }

    .hero-callout-cta {
        align-self: flex-end;
        width: 40px;
        height: 40px;
    }

    .hero-slide {
        padding: 8rem 1rem 3rem;
    }

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

    .hero-slider-prev {
        left: 1rem;
    }

    .hero-slider-next {
        right: 1rem;
    }

    .hero-slider-dots {
        bottom: 1.5rem;
    }

    .about-content,
    .process-content {
        grid-template-columns: 1fr;
    }

    .section.services-overview-section {
        padding: 4rem 1rem;
    }

    .services-overview {
        padding: 0;
    }

    .services-intro {
        padding-bottom: 1rem;
    }

    .services-subtitle {
        font-size: 0.75rem;
    }

    .services-lede {
        font-size: 1.25rem;
        margin-top: 1.5rem;
    }

    .services-stats-row {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 2rem;
        gap: 1rem;
    }

    .services-divider {
        display: none;
    }

    .service-stat {
        min-width: auto;
        width: 100%;
    }

    .stat-value {
        font-size: 2.5rem;
    }

    .services-context {
        margin-left: 0;
        margin-top: 1rem;
        max-width: 100%;
    }

    .section.about-section {
        padding: 4rem 1rem;
    }

    .about-subtitle {
        font-size: 1.5rem;
        padding-top: 2rem;
        padding-bottom: 0.5rem;
        gap: 1rem;
    }

    .about-subtitle::before,
    .about-subtitle::after {
        width: 100px;
    }

    .about-value-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-media {
        order: 2;
        height: 300px;
        min-height: 300px;
    }

    .about-column-left {
        order: 1;
    }

    .about-column-right {
        order: 3;
    }

    .about-card-left,
    .about-card-right {
        padding: 1.5rem;
        min-height: auto;
        height: auto;
    }

    .about-card-left h3,
    .about-card-right h3 {
        margin-top: 2rem;
        font-size: 1.1rem;
    }

    .section.process-section {
        padding: 4rem 1rem 0;
    }

    .process-header {
        margin-bottom: 2rem;
    }

    .process-subtitle {
        font-size: 0.75rem;
    }

    .process-title {
        font-size: 1.75rem;
    }

    .process-main-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-steps {
        margin-bottom: 1.5rem;
    }

    .process-step {
        width: 100% !important;
        font-size: 0.9rem;
        padding: 0.875rem 1.25rem;
    }

    .process-step.active {
        width: 100% !important;
    }

    .process-image {
        order: -1;
    }

    .process-image img {
        min-height: 300px;
        max-height: 400px;
    }

    .process-content-wrapper {
        min-height: 350px;
    }

    .process-content-wrapper {
        min-height: 400px;
        margin-top: 1rem;
    }

    .process-content {
        margin-top: 2rem;
    }

    .process-text h3 {
        font-size: 1.1rem;
    }

    .process-text p {
        font-size: 0.9rem;
    }

    .section.testimonials-section {
        padding: 4rem 1rem;
    }

    .testimonials-title {
        font-size: 1.5rem;
        padding-top: 2rem;
        padding-bottom: 1rem;
        gap: 1rem;
    }

    .testimonials-title::before,
    .testimonials-title::after {
        width: 80px;
    }

    .testimonials-grid {
        margin-top: 1.5rem;
    }

    .testimonials-row-top,
    .testimonials-row-bottom {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-quote {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-card-large {
        font-size: 2rem;
    }

    .section.industries-section {
        padding: 4rem 1rem;
    }

    .industries-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 2rem;
    }

    .industries-nav {
        margin-top: 1.5rem;
    }

    .industries-title {
        font-size: 1.75rem;
    }

    .industries-grid {
        gap: 1rem;
    }

    .industry-card {
        flex: 0 0 calc(100% - 1rem);
        width: calc(100% - 1rem);
        min-width: calc(100% - 1rem);
        max-width: calc(100% - 1rem);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 2.5rem;
    }

    .hero-subtitle {
        font-size: 0.65rem;
    }

    .services-lede {
        font-size: 1.1rem;
    }

    .about-subtitle {
        font-size: 1.25rem;
    }

    .process-title,
    .industries-title {
        font-size: 1.5rem;
    }

    .testimonials-title {
        font-size: 1.25rem;
    }
}

