:root {
    --red: #E31E24;
    --red-dark: #B01218;
    --red-light: #FF3B42;
    --silver: #C0C0C0;
    --silver-light: #E8E8E8;
    --silver-dark: #8A8A8A;
    --dark: #0A0A0F;
    --dark-2: #111118;
    --dark-3: #1A1A24;
    --dark-4: #22222E;
    --white: #FFFFFF;
    --gray-100: #F5F5F7;
    --gray-200: #E0E0E5;
    --gray-300: #C5C5CD;
    --text-main: #1C1C28;
    --text-muted: #6B6B7B;
    --gradient-red: linear-gradient(135deg, #E31E24, #A31115);
    --gradient-dark: linear-gradient(135deg, #0A0A0F, #1A1A24);
    --gradient-silver: linear-gradient(135deg, #C0C0C0, #E8E8E8);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
    --shadow-red: 0 8px 30px rgba(227, 30, 36, 0.35);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--white);
    color: var(--text-main);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark-2);
}

::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 3px;
}

/* ===== CURSOR ===== */
.cursor-dot,
.cursor-outline {
    display: none !important;
}

/* ===== PRELOADER ===== */
#preloader {
    display: none !important;
}

#preloader.hide {
    display: none !important;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    width: 100px;
    height: 100px;
    position: relative;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-ring {
    position: absolute;
    border-radius: 50%;
    border: 3px solid var(--red);
    animation: ringPulse 2s infinite;
}

.logo-ring {
    width: 100%;
    height: 100%;
    animation-delay: 0s;
}

.logo-ring.ring-2 {
    width: 75%;
    height: 75%;
    animation-delay: 0.3s;
    border-color: var(--silver);
}

.logo-ring.ring-3 {
    width: 50%;
    height: 50%;
    animation-delay: 0.6s;
}

@keyframes ringPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

.logo-text {
    font-size: 22px;
    font-weight: 900;
    color: var(--white);
    position: relative;
    z-index: 1;
    letter-spacing: 2px;
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: var(--dark-3);
    border-radius: 2px;
    margin: 0 auto 15px;
    overflow: hidden;
}

.preloader-fill {
    height: 100%;
    background: var(--gradient-red);
    border-radius: 2px;
    animation: fillBar 2s ease-in-out forwards;
}

@keyframes fillBar {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.preloader-text {
    color: var(--silver);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* ===== HEADER TOP ===== */
.header-top {
    background: var(--dark);
    padding: 10px 0;
    border-bottom: 1px solid rgba(227, 30, 36, 0.2);
}

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

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--silver);
    font-size: 13px;
    transition: var(--transition);
}

.contact-item:hover {
    color: var(--red);
}

.contact-item i {
    color: var(--red);
    font-size: 12px;
}

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

.social-link {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--silver);
    font-size: 12px;
    transition: var(--transition);
}

.social-link:hover,
.social-link.whatsapp:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-2px);
}

.social-link.whatsapp {
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
}

/* ===== NAVBAR ===== */
#navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: var(--transition);
}

#navbar.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98);
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 30px;
    height: 80px;
}

.nav-logo {
    flex-shrink: 0;
}

.nav-logo img {
    height: 90px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.15) contrast(1.25) saturate(1.2);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

.nav-link {
    padding: 8px 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-main);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--red);
    background: rgba(227, 30, 36, 0.06);
}

.nav-link i {
    font-size: 11px;
    transition: var(--transition);
}

.has-dropdown {
    position: relative;
}

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

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

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 240px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    overflow: hidden;
    z-index: 100;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 14px;
    color: var(--text-main);
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background: rgba(227, 30, 36, 0.06);
    color: var(--red);
    padding-left: 28px;
}

.dropdown-menu li a i {
    color: var(--red);
    width: 18px;
}

.btn-header {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-red);
    color: var(--white);
    padding: 10px 24px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: var(--shadow-red);
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(227, 30, 36, 0.45);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2.5px;
    background: var(--text-main);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ===== HERO ===== */
#hero {
    height: calc(98vh - 110px);
    min-height: 650px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
    padding-bottom: 120px;
    /* Space for the absolute quick services bar */
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url('../images/anasayfa.jpeg') right center/cover no-repeat;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: none;
}

.hero-particle {
    display: none;
}

.hero-road {
    display: none;
}

#hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 700px;
    padding: 80px 0 130px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(227, 30, 36, 0.15);
    border: 1px solid rgba(227, 30, 36, 0.3);
    color: var(--red-light);
    padding: 8px 18px;
    border-radius: var(--radius-xl);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

.hero-badge i {
    color: #FFD700;
}

.hero-content h1 {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -1.5px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.hero-highlight {
    color: var(--red);
    background: none;
    -webkit-text-fill-color: initial;
}

.hero-content p {
    font-size: 15px;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 560px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

#hero .btn-outline {
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-color: rgba(255, 255, 255, 0.6);
}

#hero .btn-outline:hover {
    border-color: var(--red);
    color: var(--white);
    background: rgba(227, 30, 36, 0.3);
}

/* BUTTONS */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--red);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(227, 30, 36, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(227, 30, 36, 0.5);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

.btn-outline:hover {
    border-color: var(--red);
    color: var(--red);
    background: rgba(227, 30, 36, 0.08);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-stat .stat-num {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.hero-stat .stat-plus {
    color: var(--red);
    font-size: 16px;
    font-weight: 900;
    margin: 2px 0;
    line-height: 1;
}

.hero-stat p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
}

.hero-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--red);
    border-radius: 2px;
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(14px);
        opacity: 0;
    }
}

/* ===== QUICK SERVICES ===== */
#quick-services {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 10;
    margin-top: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.service-card {
    background: var(--white);
    padding: 24px 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border-right: 1px solid var(--gray-200);
    transition: var(--transition);
    text-decoration: none;
}

.service-card:last-child {
    border-right: none;
}

.service-icon {
    width: 44px;
    height: 44px;
    background: var(--red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--white);
    flex-shrink: 0;
    transition: var(--transition);
}

.service-info {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-info h3 {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 4px;
}

.service-info p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 8px;
}

.service-arrow {
    font-size: 14px;
    color: var(--red);
    font-weight: bold;
    transition: var(--transition);
    margin-top: auto;
}

.service-card:hover {
    background: rgba(227, 30, 36, 0.01);
}

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

/* ===== ABOUT TEASER ===== */
#about-teaser {
    padding: 120px 0;
}

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

.about-img-wrapper {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.6s;
}

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

.about-img-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-lg);
}

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

.about-badge-float {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--gradient-red);
    color: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-red);
}

.about-badge-float i {
    font-size: 24px;
}

.about-badge-float span {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}

.section-tag {
    display: inline-block;
    background: rgba(227, 30, 36, 0.1);
    color: var(--red);
    padding: 6px 16px;
    border-radius: var(--radius-xl);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.about-text h2,
.section-header h2,
.why-text h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.about-text h2 span,
.section-header h2 span,
.why-text h2 span {
    color: var(--red);
}

.lead-text {
    font-size: 17px;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 16px;
}

.about-text p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 36px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
}

.about-features li i {
    color: var(--red);
    font-size: 16px;
}

/* ===== SERVICES DETAIL ===== */
#services-detail {
    padding: 100px 0;
    background: var(--gray-100);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 70px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
}

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

.service-detail-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    display: flex;
    gap: 20px;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.service-detail-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(227, 30, 36, 0.2);
}

.sdc-icon {
    width: 60px;
    height: 60px;
    background: rgba(227, 30, 36, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--red);
    flex-shrink: 0;
    transition: var(--transition);
}

.sdc-icon.cold {
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
}

.service-detail-card:hover .sdc-icon {
    background: var(--red);
    color: var(--white);
    transform: scale(1.1);
}

.sdc-content h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.sdc-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.sdc-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.sdc-link:hover {
    gap: 10px;
}

/* ===== STATS ===== */
#stats-section {
    padding: 60px 0;
    background: var(--gray-100);
}

.stats-card {
    background: var(--dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    min-height: 380px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.stats-image {
    background: url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?w=800&q=80') center/cover no-repeat;
    position: relative;
}

.stats-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(10, 10, 15, 0.4) 0%, transparent 100%);
}

.stats-info {
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.95) 0%, rgba(163, 17, 21, 0.95) 100%);
    position: relative;
    z-index: 2;
}

.stats-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px 40px;
}

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

.stat-item-header {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.stat-number {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    display: inline;
}

.stat-unit {
    font-size: 22px;
    font-weight: 800;
    color: var(--red-light);
}

.stat-label {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 6px;
    font-weight: 500;
}

@media (max-width: 992px) {
    .stats-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .stats-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .stats-info {
        padding: 40px 30px;
    }

    .stats-image {
        display: none;
    }

    .stats-info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .stats-info-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== WHY US ===== */
#why-us {
    padding: 100px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 36px;
}

.why-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.wf-icon {
    width: 52px;
    height: 52px;
    background: rgba(227, 30, 36, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--red);
    flex-shrink: 0;
    transition: var(--transition);
}

.why-feature:hover .wf-icon {
    background: var(--red);
    color: var(--white);
}

.wf-text h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.wf-text p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.why-img-container {
    position: relative;
}

.why-img-container img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.why-overlay-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-lg);
}

.why-overlay-card i {
    font-size: 28px;
    color: var(--red);
}

.why-overlay-card strong {
    display: block;
    font-size: 22px;
    font-weight: 900;
    color: var(--text-main);
}

.why-overlay-card span {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== TESTIMONIALS ===== */
#testimonials {
    padding: 100px 0;
    background: var(--gray-100);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 35px;
    min-width: calc(33.333% - 16px);
    flex-shrink: 0;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 64px;
    color: rgba(227, 30, 36, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(227, 30, 36, 0.15);
    transform: translateY(-4px);
}

.tc-stars {
    color: #FFB800;
    font-size: 13px;
    margin-bottom: 14px;
    display: flex;
    gap: 4px;
}

.testimonial-card p {
    font-size: 14.5px;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: normal;
}

.tc-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.tc-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--white);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

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

.tc-author strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
}

.tc-author span {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-btn {
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--text-main);
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: var(--gray-300);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--red);
    width: 24px;
}

.testimonials-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .testimonials-grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid-layout {
        grid-template-columns: 1fr;
    }
}

/* ===== CTA ===== */
#cta-section {
    padding: 60px 0;
    background: var(--white);
}

.cta-card {
    background: var(--dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    min-height: 360px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.cta-info {
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(135deg, rgba(163, 17, 21, 0.95) 0%, rgba(10, 10, 15, 0.95) 100%);
    position: relative;
    z-index: 2;
}

.cta-info h2 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.3;
}

.cta-info p {
    font-size: 15px;
    opacity: 0.85;
    margin-bottom: 24px;
    max-width: 480px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--red);
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

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

.cta-image {
    background: url('../images/forkl.jpeg') center/cover no-repeat;
    position: relative;
}

.cta-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 10, 15, 0.4) 0%, transparent 100%);
}

@media (max-width: 992px) {
    .cta-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .cta-image {
        height: 250px;
    }

    .cta-image::after {
        background: linear-gradient(to bottom, rgba(10, 10, 15, 0.4) 0%, transparent 100%);
    }
}

@media (max-width: 768px) {
    .cta-info {
        padding: 40px 30px;
    }

    .cta-image {
        display: none;
    }

    .cta-actions {
        flex-direction: column;
        gap: 12px;
    }

    .btn-cta-primary,
    .btn-cta-outline {
        width: 100%;
        justify-content: center;
    }
}

/* ===== FOOTER ===== */
#footer {
    background: var(--dark-2);
}

.footer-top {
    padding: 80px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-logo {
    height: 65px;
    object-fit: contain;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    margin-bottom: 24px;
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--red);
    display: inline-block;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 12px;
}

.footer-links ul li a,
.footer-services ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: var(--red);
    padding-left: 4px;
}

.footer-links ul li a i,
.footer-services ul li a i {
    font-size: 10px;
    color: var(--red);
}

.footer-contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.footer-contact-item i {
    color: var(--red);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-item p,
.footer-contact-item a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    transition: var(--transition);
}

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

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.wa-tooltip {
    position: absolute;
    right: 70px;
    background: var(--dark);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    box-shadow: var(--shadow-red);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
}

/* ===== ABOUT PAGE ===== */
.about-page {
    padding: 80px 0;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.about-intro-img {
    position: relative;
}

.about-intro-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ===== VALUE CARDS ===== */
.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(227, 30, 36, 0.2);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: rgba(227, 30, 36, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--red);
    margin-bottom: 24px;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: var(--red);
    color: var(--white);
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
}

.value-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ===== CERTIFICATES ===== */
.bg-section {
    background: var(--gray-100);
    padding: 80px 0;
}

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

.cert-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 24px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.cert-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(227, 30, 36, 0.2);
}

.cert-card i {
    font-size: 48px;
    color: var(--red);
    margin-bottom: 20px;
    display: block;
}

.cert-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
}

.cert-card p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== AOS Animations ===== */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s, transform 0.7s;
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    #hero {
        height: auto;
        min-height: auto;
        padding: 140px 0 60px;
        display: block;
    }

    #quick-services {
        position: static;
        margin-top: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        border-radius: 16px;
    }

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

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

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

    .about-grid,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

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

@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    .cursor-dot,
    .cursor-outline {
        display: none;
    }

    .header-contact-info .contact-item:not(:first-child) {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 4px;
        box-shadow: var(--shadow-lg);
        display: none;
        z-index: 999;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav-menu.open {
        display: flex;
    }

    .has-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--gray-100);
        display: none;
    }

    .has-dropdown.open .dropdown-menu {
        display: block;
    }

    .hamburger {
        display: flex;
    }

    .btn-header span {
        display: none;
    }

    .btn-header {
        padding: 10px 16px;
    }

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

    .services-detail-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        min-width: 100%;
    }

    .hero-stats {
        gap: 20px;
    }

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

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

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

    .about-img-accent {
        right: 0;
    }

    .about-badge-float {
        left: 0;
    }

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

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

    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 38px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-stat-divider {
        display: none;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

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