/* ================================================
   TEKIRDAĞ LİFT - STYLESHEET
   Red Theme | Professional Manlift & Çekici Website
   ================================================ */

/* ---- CSS Variables ---- */
:root {
    --primary: #C41E24;
    --primary-dark: #9B1B20;
    --primary-light: #E8373D;
    --primary-glow: rgba(196, 30, 36, 0.3);
    --secondary: #8B0000;
    --accent: #FF4444;

    --dark: #0f0f0f;
    --dark-2: #1a1a1a;
    --dark-3: #252525;
    --dark-4: #333333;
    --gray-1: #666666;
    --gray-2: #999999;
    --gray-3: #cccccc;
    --light: #f5f5f5;
    --light-2: #fafafa;
    --white: #ffffff;

    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.2);
    --shadow-red: 0 4px 20px rgba(196, 30, 36, 0.3);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;

    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-secondary);
    color: var(--dark);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
    position: relative;
}

/* ---- Section Headers ---- */
.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-label.center {
    justify-content: center;
}

.section-label.light {
    color: var(--white);
}

.label-line {
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.label-line.light {
    background: var(--white);
}

.section-title {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 20px;
}

.section-title.center {
    text-align: center;
}

.section-title.light {
    color: var(--white);
}

.highlight {
    color: var(--primary);
}

.highlight-light {
    color: var(--accent);
}

.section-desc {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px;
    color: var(--gray-1);
    font-size: 16px;
}

.section-header {
    margin-bottom: 50px;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--radius-sm);
    font-size: 15px;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: var(--shadow-red);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(196, 30, 36, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.btn-light:hover {
    background: var(--light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 14px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
    border-radius: var(--radius-md);
}

.btn-block {
    width: 100%;
}

/* ---- TOP BAR ---- */
.top-bar {
    background: var(--dark);
    padding: 10px 0;
    font-size: 13px;
    color: var(--gray-3);
    border-bottom: 1px solid var(--dark-3);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-3);
    transition: var(--transition);
}

.top-bar-item:hover {
    color: var(--primary-light);
}

.top-bar-item i {
    color: var(--primary);
    font-size: 12px;
}

/* ---- NAVBAR ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
    background: rgba(15, 15, 15, 0.98);
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
}

/* Logo */
.logo,
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 20px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1px;
}

.logo-sub {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 4px;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-3);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-cta {
    display: flex;
    align-items: center;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- HERO SECTION ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 75px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(15, 15, 15, 0.9) 0%,
            rgba(139, 0, 0, 0.7) 50%,
            rgba(15, 15, 15, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(196, 30, 36, 0.2);
    border: 1px solid rgba(196, 30, 36, 0.4);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-primary);
    letter-spacing: 1px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 60px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 800;
    color: var(--accent);
    display: block;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-top: 4px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    color: var(--white);
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

/* ---- ABOUT SECTION ---- */
.about {
    background: var(--light-2);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-exp-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-red);
}

.exp-number {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.exp-text {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
}

.about-text {
    color: var(--gray-1);
    margin-bottom: 16px;
    font-size: 15px;
}

.about-subtitle {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    margin: 24px 0 16px;
    color: var(--dark);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 15px;
    color: var(--gray-1);
}

.feature-icon {
    color: var(--primary);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ---- SERVICES SECTION ---- */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 500px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 6px 16px;
    border-radius: var(--radius-xl);
    font-size: 12px;
    font-weight: 600;
    font-family: var(--font-primary);
    letter-spacing: 0.5px;
}

.service-body {
    padding: 30px;
}

.service-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(196, 30, 36, 0.1), rgba(196, 30, 36, 0.05));
    border-radius: var(--radius-md);
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 20px;
    border: 1px solid rgba(196, 30, 36, 0.15);
}

.service-body h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-body p {
    color: var(--gray-1);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    margin-bottom: 24px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-1);
    padding: 6px 0;
}

.service-features li i {
    color: var(--primary);
    font-size: 12px;
}

/* ---- TOW SERVICE SECTION ---- */
.tow-service {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.tow-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.tow-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(15, 15, 15, 0.92) 0%,
            rgba(139, 0, 0, 0.85) 100%);
    z-index: 1;
}

.tow-service .container {
    position: relative;
    z-index: 2;
}

.tow-content {
    max-width: 700px;
}

.tow-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    margin-bottom: 36px;
    line-height: 1.8;
}

.tow-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.tow-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.tow-feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    color: var(--accent);
    font-size: 20px;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.tow-feature h4 {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.tow-feature p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ---- PROCESS SECTION ---- */
.process {
    background: var(--dark);
    overflow: hidden;
}

.process .section-label,
.process .section-title,
.process .section-desc {
    color: var(--white);
}

.process .section-label {
    color: var(--primary-light);
}

.process .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

.process .label-line {
    background: var(--primary-light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.process-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.process-number {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 900;
    color: rgba(196, 30, 36, 0.2);
    position: absolute;
    top: 10px;
    right: 20px;
}

.process-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    color: var(--white);
    font-size: 26px;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-red);
}

.process-card h3 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.process-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.7;
}

.process-connector {
    display: none;
}

/* ---- REGIONS SECTION ---- */
.regions {
    background: var(--light-2);
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.region-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.region-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: var(--transition);
}

.region-card:hover::before {
    transform: scaleX(1);
}

.region-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.region-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(196, 30, 36, 0.1), rgba(196, 30, 36, 0.05));
    border-radius: 50%;
    color: var(--primary);
    font-size: 24px;
    margin: 0 auto 20px;
    border: 1px solid rgba(196, 30, 36, 0.15);
}

.region-card h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.region-card p {
    color: var(--gray-1);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.region-badge {
    display: inline-block;
    padding: 4px 16px;
    border-radius: var(--radius-xl);
    font-size: 12px;
    font-weight: 600;
    font-family: var(--font-primary);
    background: rgba(196, 30, 36, 0.1);
    color: var(--primary);
    border: 1px solid rgba(196, 30, 36, 0.2);
}

.region-badge.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
}

/* ---- CONTACT SECTION ---- */
.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 24px;
    background: var(--light-2);
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.contact-card-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-card h4 {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.contact-card a,
.contact-card p {
    font-size: 14px;
    color: var(--gray-1);
    display: block;
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--primary);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-secondary);
    font-size: 14px;
    color: var(--dark);
    background: var(--light-2);
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(196, 30, 36, 0.1);
    background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    margin-top: 16px;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.form-message.error {
    display: block;
    background: rgba(196, 30, 36, 0.1);
    color: var(--primary);
    border: 1px solid rgba(196, 30, 36, 0.2);
}

/* ---- FOOTER ---- */
.footer {
    background: var(--dark);
    color: var(--gray-3);
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 14px;
    color: var(--gray-2);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    color: var(--gray-2);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 6px;
}

.footer-links a i {
    font-size: 10px;
    color: var(--primary);
}

.footer-contact li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 14px;
}

.footer-contact li i {
    color: var(--primary);
    margin-top: 4px;
}

.footer-contact a {
    color: var(--gray-2);
    display: block;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid var(--dark-3);
    padding: 20px 0;
}

.footer-bottom-inner {
    text-align: center;
    font-size: 13px;
    color: var(--gray-2);
}

/* ---- SCROLL TO TOP ---- */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-red);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 30px rgba(196, 30, 36, 0.5);
}

/* ---- MOBILE CTA ---- */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 55px;
    height: 55px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    font-size: 22px;
    z-index: 999;
    box-shadow: var(--shadow-red);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(196, 30, 36, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(196, 30, 36, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(196, 30, 36, 0);
    }
}

/* ---- ANIMATIONS ---- */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

.animate-fade-up:nth-child(1) {
    animation-delay: 0.1s;
}

.animate-fade-up:nth-child(2) {
    animation-delay: 0.3s;
}

.animate-fade-up:nth-child(3) {
    animation-delay: 0.5s;
}

.animate-fade-up:nth-child(4) {
    animation-delay: 0.7s;
}

.animate-fade-up:nth-child(5) {
    animation-delay: 0.9s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reveal animations */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translate(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 46px;
    }

    .section-title {
        font-size: 34px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        gap: 40px;
    }

    .tow-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .navbar-inner {
        height: 65px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        gap: 0;
        transition: var(--transition-slow);
        z-index: 1000;
        box-shadow: var(--shadow-xl);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        padding: 16px 30px;
        font-size: 16px;
        width: 100%;
        text-align: center;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        min-height: 100vh;
        padding-top: 65px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 28px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 26px;
    }

    .section-desc {
        font-size: 14px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image img {
        height: 300px;
    }

    .services-grid {
        max-width: 100%;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .regions-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        max-width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mobile-cta {
        display: flex;
    }

    .scroll-top {
        bottom: 100px;
        right: 20px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 14px;
    }

    .hero-buttons .btn {
        padding: 14px 28px;
        font-size: 14px;
    }

    .tow-service {
        padding: 80px 0;
    }

    .tow-feature-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .tow-feature h4 {
        font-size: 14px;
    }

    .tow-feature p {
        font-size: 12px;
    }

    .process-card {
        padding: 30px 20px;
    }

    .logo-name {
        font-size: 16px;
    }

    .logo-sub {
        font-size: 11px;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .section-title {
        font-size: 22px;
    }

    .section {
        padding: 50px 0;
    }

    .tow-service {
        padding: 60px 0;
    }

    .about-image img {
        height: 250px;
    }

    .about-text {
        font-size: 14px;
    }

    .about-subtitle {
        font-size: 18px;
    }

    .about-feature {
        font-size: 13px;
    }

    .container {
        padding: 0 16px;
    }

    .service-body {
        padding: 20px;
    }

    .service-body h3 {
        font-size: 18px;
    }

    .region-card {
        padding: 24px 20px;
    }

    .contact-card {
        padding: 18px;
    }

    .contact-card-icon {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}