/**
 * AJANS V2 - Corporate CSS
 * Kurumsal Temizlik & Hijyen Teması
 */

/* ========================================
   CSS Variables
======================================== */
:root {
    --primary: #FE4C1C;
    /* Canlı Turuncu (Main Action Color) */
    --primary-light: #ff6b42;
    --primary-dark: #d9360b;

    --secondary: #ff7e5f;
    /* Turuncu Tonu (Eski Mavi) */
    --secondary-dark: #e64016;

    --accent: #FE4C1C;
    /* Site Rengiyle Uyumlu Turuncu */

    --white: #ffffff;
    --gray-50: #f9f9f9;
    /* Light background */
    --gray-100: #eef0f2;
    --gray-200: #e2e5e9;
    --gray-300: #cfd4da;
    --gray-400: #aab2bd;
    --gray-500: #7e8896;
    --gray-600: #556070;
    --gray-700: #2b3442;
    --gray-800: #1a202c;
    --gray-900: #12151a;

    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #0ea5e9;

    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;

    --section-padding: 100px;
    --container-width: 1240px;

    --radius-sm: 8px;
    --radius-md: 20px;
    /* More rounded cards */
    --radius-lg: 30px;
    --radius-pill: 50px;
    /* Full pill shape for buttons */

    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);
    /* Softer shadows */
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--gray-700);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--gray-800);
    line-height: 1.3;
}

/* ========================================
   Container
======================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Top Bar
======================================== */
/* ========================================
   Top Bar
======================================== */
.top-bar {
    background: var(--primary-dark);
    color: var(--white);
    padding: 12px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.top-bar-left {
    display: flex;
    gap: 25px;
}

.top-bar-left a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s;
}

.top-bar-left a:hover {
    color: var(--accent);
}

.top-bar-left i {
    color: var(--accent);
}

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

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

.social-icons a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Brand Colors - Always Visible */
.social-icons a.facebook {
    background-color: #1877f2;
}

.social-icons a.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.social-icons a.twitter {
    background-color: #1da1f2;
}

.social-icons a.linkedin {
    background-color: #0a66c2;
}

.social-icons a.youtube {
    background-color: #ff0000;
}

/* Remove previous specific hover colors since we use backgrounds now */
.social-icons a:hover .fa-facebook-f,
.social-icons a:hover .fa-instagram,
.social-icons a:hover .fa-twitter,
.social-icons a:hover .fa-linkedin-in,
.social-icons a:hover .fa-youtube {
    color: var(--white);
}

/* ========================================
   Header & Nav
======================================== */
/* ========================================
   Header & Nav V5
======================================== */
.header {
    background: transparent;
    padding: 25px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

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

.logo-icon {
    font-size: 32px;
    color: var(--primary);
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.1;
    display: flex;
    flex-direction: column;
}

.logo-text small {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 20px;
    /* Reduced default gap to prevent overflow */
    height: 100%;
    align-items: center;
}

@media (min-width: 1400px) {
    .nav-menu {
        gap: 35px;
        /* Restore larger gap on wide screens */
    }
}

.nav-menu>li {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.nav-menu>li>a {
    font-weight: 600;
    color: var(--gray-700);
    text-transform: capitalize;
    /* No longer uppercase */
    font-size: 15px;
    /* Slightly smaller for better fit */
    letter-spacing: -0.2px;
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
    transition: color 0.2s;
    white-space: nowrap;
    /* Prevent text wrapping to new line */
}

/* Widen header container specifically */
.header .container {
    max-width: 1400px;
}

.nav-menu>li>a:hover,
.nav-menu>li>a.active {
    color: var(--primary);
}

/* Dropdown V5 */
.dropdown-container {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 80%;
    /* Slightly lower */
    left: -20px;
    width: 280px;
    background: var(--white);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: var(--radius-md);
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    /* Bouncy effect */
    z-index: 100;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 40px;
    width: 12px;
    height: 12px;
    background: var(--white);
    transform: rotate(45deg);
}

.dropdown-container:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    top: 100%;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: var(--gray-600);
    font-size: 15px;
    font-weight: 500;
    border-bottom: none;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background: rgba(254, 76, 28, 0.05);
    /* Light orange bg */
    color: var(--primary);
    padding-left: 15px;
}

.dropdown-menu li a i {
    width: 28px;
    height: 28px;
    background: rgba(254, 76, 28, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 12px;
    transition: all 0.2s;
}

.dropdown-menu li a:hover i {
    background: var(--secondary);
    color: var(--white);
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary);
}

/* ========================================
   Search Overlay V5
======================================== */
.search-trigger {
    background: rgba(254, 76, 28, 0.05);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: var(--primary);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-trigger:hover {
    background: var(--secondary);
    color: var(--white);
    transform: rotate(15deg);
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(15px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-close {
    position: absolute;
    top: 40px;
    right: 40px;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
    transition: var(--transition);
}

.search-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.search-form-overlay {
    position: relative;
    width: 100%;
    max-width: 800px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.search-form-overlay input {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 60px 20px 0;
    font-size: 2rem;
    color: var(--white);
    font-weight: 300;
    outline: none;
}

.search-form-overlay input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.search-form-overlay button {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--primary);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.search-form-overlay button:hover {
    color: var(--white);
    transform: translateY(-50%) translateX(5px);
}

.search-text {
    position: absolute;
    bottom: -40px;
    left: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 300;
}

/* ========================================
   Buttons
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 40px;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-pill);
    /* Pill Shape */
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-sm {
    padding: 10px 25px;
    font-size: 13px;
}

.btn-lg {
    padding: 18px 50px;
    font-size: 16px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    background-size: 200% auto;
    background-image: linear-gradient(to right, var(--primary) 0%, #ff7e5f 51%, var(--primary) 100%);
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(254, 76, 28, 0.3);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(254, 76, 28, 0.15);
}

/* ========================================
   Hero Section
======================================== */
/* ========================================
   Hero Section V5
======================================== */
.hero-section {
    padding: 180px 0 100px;
    background: linear-gradient(to right, #ffffff 0%, #f4f7fa 100%);
    position: relative;
    overflow: hidden;
}

/* Background Abstract Shapes */
.hero-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(254, 76, 28, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    /* z-index context */
    z-index: 1;
}

.hero-content {
    text-align: left;
    max-width: 100%;
    margin: 0;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(254, 76, 28, 0.1);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    border-radius: 30px;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 25px;
    letter-spacing: -1px;
    text-shadow: none;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 35px;
    font-weight: 400;
}

.hero-buttons {
    justify-content: flex-start;
    /* Left align buttons */
}

/* Hero Blob Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-blob {
    position: relative;
    width: 100%;
    max-width: 550px;
    z-index: 2;
}

.hero-blob img {
    width: 100%;
    height: auto;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    /* Organic Blob Shape */
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
    animation: morph 8s ease-in-out infinite;
    object-fit: cover;
    aspect-ratio: 1/1;
}

@keyframes morph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

@media (max-width: 992px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

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

    .hero-image {
        order: -1;
        /* Image on top on mobile if desired, or remove to keep text top */
        margin-bottom: 40px;
    }

    .hero-section {
        padding: 150px 0 80px;
    }
}

.hero-buttons .btn {
    padding: 18px 45px;
    font-size: 16px;
    border-radius: 50px;
    /* Pill shape */
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.hero-buttons .btn-primary {
    box-shadow: 0 10px 20px rgba(234, 179, 8, 0.4);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(234, 179, 8, 0.5);
}

.hero-buttons .btn-outline {
    border-width: 2px;
}

.hero-buttons .btn-outline:hover {
    background: var(--white);
    color: var(--primary-dark);
    transform: translateY(-5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 150px 0 100px;
        clip-path: polygon(0 0, 100% 0, 100% 95%, 50% 100%, 0 95%);
    }

    .hero h1 {
        font-size: 2.8rem;
    }
}

/* ========================================
   Stats Section
======================================== */
.stats-section {
    background: var(--white);
    padding: 80px 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    position: relative;
}

/* Add separators between items on large screens */
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    height: 50px;
    width: 1px;
    background: var(--gray-200);
    display: none;
}

@media (min-width: 992px) {
    .stat-item:not(:last-child)::after {
        display: block;
    }
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    /* Corporate Orange */
    margin-bottom: 5px;
    line-height: 1;
    letter-spacing: -1px;
}

.stat-item p {
    color: var(--gray-500);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0;
}

/* ========================================
   Section Styling
======================================== */
.section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.section-gray {
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.subtitle {
    display: block;
    color: var(--accent);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--gray-500);
}

/* ========================================
   Service Cards
======================================== */
/* ========================================
   Service Cards V5
======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--white);
    border: none;
    /* Clean look, no border */
    padding: 50px 40px;
    transition: var(--transition);
    text-align: left;
    /* Align left for modern feel */
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
}

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

/* Hover Effect: Full Color Background */
.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 0 30px;
    font-size: 32px;
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(254, 76, 28, 0.08);
    /* Light orange */
    border-radius: 50%;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--white);
    color: var(--primary);
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--gray-900);
    font-weight: 800;
    transition: var(--transition);
}

.service-card:hover h3 {
    color: var(--white);
}

.service-card p {
    font-size: 15px;
    color: var(--gray-600);
    margin-bottom: 30px;
    line-height: 1.7;
    transition: var(--transition);
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.service-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-card:hover .service-link {
    color: var(--white);
}

.service-link i {
    font-size: 12px;
    transition: margin 0.2s;
    background: rgba(254, 76, 28, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card:hover .service-link i {
    background: var(--white);
    color: var(--primary);
    margin-left: 5px;
}

/* ========================================
   About Section V5
======================================== */
.about-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    z-index: 1;
}

.about-image img {
    border-radius: 40px 0 40px 0;
    /* Leaf smooth shape */
    box-shadow: 20px 20px 0 var(--primary);
    /* Graphic shadow */
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--transition);
}

.about-image:hover img {
    transform: translate(-10px, -10px);
    box-shadow: 30px 30px 0 var(--primary);
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-text p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--gray-800);
    font-size: 15px;
}

.about-feature i {
    color: var(--secondary);
    background: rgba(254, 76, 28, 0.1);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* ========================================
   CTA Section V5
======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #ff2525 100%);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    text-align: center;
}

/* Decorative circles */
.cta-section::before,
.cta-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.cta-section::before {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -50px;
}

.cta-section::after {
    width: 400px;
    height: 400px;
    bottom: -150px;
    right: -100px;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-size: 1.2rem;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: var(--primary-dark);
}

.cta-buttons .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.cta-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* ========================================
   Blog Cards
======================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.blog-card-image {
    height: 220px;
    overflow: hidden;
}

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

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

.blog-card-content {
    padding: 25px;
}

.blog-card-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.blog-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.blog-card h3 a:hover {
    color: var(--primary);
}

.blog-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 15px;
}

.read-more {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

/* ========================================
   Page Header (Inner Pages)
======================================== */
.page-header {
    background-color: var(--primary);
    background-image: linear-gradient(rgba(18, 21, 26, 0.85), rgba(18, 21, 26, 0.75)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 15px;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    color: rgba(255, 255, 255, 0.3);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* ========================================
   Contact Page
======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-list {
    margin-top: 30px;
}

.contact-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--gray-100);
}

.contact-list .icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(254, 76, 28, 0.3);
}

.contact-list .icon i {
    color: var(--white) !important;
}

.contact-list h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--primary);
}

.contact-list a,
.contact-list p {
    color: var(--gray-600);
    font-size: 15px;
}

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

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

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

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--gray-700);
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 15px;
    transition: var(--transition);
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(15, 36, 64, 0.1);
}

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

/* ========================================
   Footer V5
======================================== */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 80px 0 30px;
    font-size: 15px;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
}

.footer-logo i {
    color: var(--primary);
}

.footer-col p {
    line-height: 1.7;
    margin-bottom: 25px;
}

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

.footer-col ul li a {
    color: var(--gray-400);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-col ul li a::before {
    content: '\f054';
    /* Chevron right */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 10px;
    color: var(--gray-600);
    transition: var(--transition);
}

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

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--primary);
    font-size: 18px;
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: var(--gray-500);
    font-size: 14px;
}

/* Footer Bottom Links (if any) */
.footer-bottom a {
    color: var(--gray-400);
}

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

/* WhatsApp Button V5 */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* ========================================
   Alerts
======================================== */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ========================================
   Responsive
======================================== */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        text-align: center;
    }

    .nav-menu>li {
        width: 100%;
        height: auto;
        padding: 10px 0;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

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

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

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

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

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

@media (max-width: 576px) {
    .top-bar {
        display: none;
    }

    .header {
        height: 70px;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

/* ========================================
   Floating Social Sidebar V5
======================================== */
.api-sidebar {
    position: fixed;
    right: 20px;
    bottom: 30px;
    top: auto;
    transform: none;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.api-item {
    position: relative;
    width: 60px;
    height: 60px;
}

.api-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: var(--white);
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.api-item a:hover {
    transform: scale(1.1);
}

/* Brand Colors */
.api-item.telefon a {
    background: var(--primary);
}

.api-item.telegram a {
    background: #0088cc;
    /* Telegram Blue */
}

.api-item.whatsapp a {
    background: #25D366;
    /* WhatsApp Green */
}

.api-item.instagram a {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    /* Insta Gradient */
}

/* Tooltip */
.tooltiptext {
    visibility: hidden;
    width: max-content;
    background-color: var(--gray-900);
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 8px 15px;
    position: absolute;
    top: 50%;
    right: 125%;
    /* Start slightly left of the button */
    transform: translateY(-50%) translateX(10px);
    z-index: 1;
    font-size: 13px;
    font-weight: 600;
    opacity: 0;
    transition: all 0.3s;
}

.tooltiptext::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent var(--gray-900);
}

.api-item:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Responsive: Hide sidebar on mobile */
@media (max-width: 768px) {
    .api-sidebar {
        display: none;
    }
}

/* ========================================
   Preloader V5
======================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: all 0.5s ease-out;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preloader-logo {
    font-size: 50px;
    color: var(--primary);
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.preloader-cirlce {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(254, 76, 28, 0.1);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    margin: 0 auto 15px;
    animation: spin 1s linear infinite;
}

.preloader-text {
    font-size: 14px;
    color: var(--gray-500);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ========================================
   Cookie Consent V5
======================================== */
.cookie-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 350px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 9998;
    padding: 25px;
    border-left: 5px solid var(--primary);
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.cookie-popup.active {
    transform: translateY(0);
}

.cookie-popup h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.cookie-popup p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
}

.cookie-buttons {
    text-align: right;
}

@media (max-width: 576px) {
    .cookie-popup {
        left: 20px;
        bottom: 20px;
        width: calc(100% - 40px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* ========================================
   Topbar V5
======================================== */
/* ========================================
   Topbar V5
======================================== */
.header-topbar {
    background-color: #ffffff !important;
    /* Force white */
    color: #a5b7d2;
    font-size: 14px;
    font-family: 'Titillium Web', sans-serif;
    font-weight: 500;
    line-height: 1.875;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    z-index: 1001;
    padding: 12px 0;
}

.header-topbar .container-fluid {
    display: flex;
    justify-content: flex-end;
    /* Default align right */
    align-items: center;
    padding: 0 15px;
    gap: 20px;
}

/* Menu (Left) */
.topbar_menu {
    margin-right: auto;
    /* Push everything else to the right */
}

.topbar_menu .menu {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.topbar_menu .menu li a {
    color: #a5b7d2;
    text-decoration: none;
    transition: all 0.3s;
}

.topbar_menu .menu li a:hover {
    color: var(--primary);
}

/* Separator */
.menu-separator {
    color: #e5e5e5;
    font-size: 12px;
}

/* Social List */
.social-list {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.social-list li a {
    color: #a5b7d2;
    transition: all 0.3s;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

/* Social Brand Colors on Hover */
.social-list li a:hover .fa-facebook-f {
    color: #3b5998;
}

.social-list li a:hover .fa-twitter {
    color: #1da1f2;
}

.social-list li a:hover .fa-linkedin-in {
    color: #0077b5;
}

.social-list li a:hover .fa-instagram {
    color: #c13584;
}

.social-list li a:hover .fa-youtube {
    color: #ff0000;
}

/* Contact Info */
.topbar-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.topbar-info li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a5b7d2;
}

.topbar-info li i {
    color: var(--primary);
}

@media (max-width: 991px) {
    .header-topbar {
        display: none;
    }
}

/* Menu (Left) */
.topbar_menu {
    justify-self: start;
}

.topbar_menu .menu {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* ... */
/* Social (Center) */
.social-list {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* ... */
/* Info (Right) */
.topbar-info {
    justify-self: end;
    /* ... rest is same */

    .topbar_menu .menu li a {
        color: #a5b7d2;
        text-decoration: none;
        transition: all 0.3s;
    }

    .topbar_menu .menu li a:hover {
        color: var(--primary);
    }

    /* Separator */
    .menu-separator {
        color: #e5e5e5;
        font-size: 12px;
    }

    /* Social List */
    .social-list {
        display: flex;
        align-items: center;
        gap: 15px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .social-list li a {
        color: #a5b7d2;
        transition: all 0.3s;
        font-size: 18px;
        /* Slightly larger for easier hover target */
    }

    /* Social Brand Colors on Hover */
    .social-list li a:hover .fa-facebook-f {
        color: #3b5998;
    }

    .social-list li a:hover .fa-twitter {
        color: #1da1f2;
    }

    .social-list li a:hover .fa-linkedin-in {
        color: #0077b5;
    }

    .social-list li a:hover .fa-instagram {
        color: #c13584;
    }

    .social-list li a:hover .fa-youtube {
        color: #ff0000;
    }

    /* Contact Info */
    .topbar-info {
        display: flex;
        align-items: center;
        gap: 15px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .topbar-info li {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #a5b7d2;
    }

    .topbar-info li i {
        color: var(--primary);
        /* Orange used as brand color */
    }

    @media (max-width: 991px) {
        .header-topbar {
            display: none;
        }
    }
}

/* ========================================
   Page Layout V5
   ======================================== */
.page-container {
    padding: 80px 0;
    background: var(--gray-50);
}

.page-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

@media (max-width: 992px) {
    .page-wrapper {
        grid-template-columns: 1fr;
    }
}

.content-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.content-body {
    padding: 40px;
}

.content-body h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--gray-900);
    position: relative;
    padding-bottom: 15px;
}

.content-body h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.sidebar-sticky {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 30px;
    margin-bottom: 30px;
}

.sidebar-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-900);
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    margin-bottom: 12px;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-600);
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
    color: var(--primary);
    transform: translateX(5px);
}

.sidebar-menu a i {
    font-size: 12px;
    color: var(--primary);
}

.help-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: var(--radius-md);
    padding: 35px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(254, 76, 28, 0.3);
}

.help-card i.bg-icon {
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 120px;
    opacity: 0.15;
    transform: rotate(-15deg);
}

.help-card h4 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.help-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.help-card .btn-light {
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
    width: 100%;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: var(--transition);
}

.help-card .btn-light:hover {
    background: var(--gray-100);
    transform: translateY(-3px);
}

/* ========================================
   Utilities
======================================== */
.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.mt-1 {
    margin-top: 0.25rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.mt-6 {
    margin-top: 4rem !important;
}

.mt-7 {
    margin-top: 5rem !important;
}

.mt-8 {
    margin-top: 6rem !important;
}