.logo-main-new {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    /* Increased from 20px */
    font-weight: 800;
    /* Extra bold */
    color: var(--text-main);
    letter-spacing: -0.5px;
    line-height: 1;
    text-transform: uppercase;
}

.logo-tagline-new {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    /* Increased from 11px */
    color: #E53935;
    /* Premium Red Accent */
    font-weight: 700;
    /* Bolder */
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
}

:root {
    /* Light Color Palette */
    --bg-dark: #ffffff;
    --bg-darker: #f8f9fa;
    --bg-card: #ffffff;
    --bg-card-hover: #f8f9fa;
    --accent-primary: #E53935;
    --accent-secondary: #c62828;
    --accent-gradient: linear-gradient(135deg, #E53935 0%, #ff6b6b 100%);
    --text-main: #1a1a2e;
    --text-muted: #5a5a6a;
    --text-highlight: #1a1a2e;
    --border-subtle: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(229, 57, 53, 0.3);

    /* Spacing */
    --grid-gap: 24px;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 40px;

    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Outfit', sans-serif;

    /* Shadows - Light Mode */
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 60px rgba(229, 57, 53, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

html,
body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    background: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* ========================================
   TYPOGRAPHY
======================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    color: var(--text-main);
    line-height: 1.15;
    letter-spacing: -0.03em;
    font-weight: 700;
}

h1 {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
}

h2 {
    font-size: clamp(28px, 4vw, 48px);
}

h3 {
    font-size: clamp(20px, 2.5vw, 28px);
}

h4 {
    font-size: clamp(18px, 2vw, 22px);
}

p {
    color: var(--text-muted);
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.85;
}

img,
video,
iframe,
svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   LAYOUT
======================================== */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

.section {
    padding: 80px 0;
}

@media (min-width: 768px) {
    .section {
        padding: 120px 0;
    }
}

/* ========================================
   HEADER
======================================== */
/* ========================================
   TOP SCROLLING BAR (TICKER)
======================================== */
.top-bar-ticker {
    background: #000;
    color: #fff;
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 1001;
}

.ticker-content {
    display: flex;
    gap: 50px;
    white-space: nowrap;
    animation: tickerMove 25s linear infinite;
    padding-left: 100%;
    /* Start off-screen */
}

/* Pause Ticker on Hover */
.top-bar-ticker:hover .ticker-content {
    animation-play-state: paused;
}

@keyframes tickerMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.top-bar-cta {
    background: var(--accent-primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    box-shadow: 0 4px 10px rgba(229, 57, 53, 0.4);
    display: none;
    /* Hidden on mobile primarily or small screens if needed */
}

@media (min-width: 768px) {
    .top-bar-cta {
        display: flex;
        align-items: center;
        gap: 5px;
    }
}

/* ========================================
   STICKY HEADER
======================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.site-header.sticky {
    padding: 12px 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.site-header.sticky {
    padding: 12px 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

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

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text-main);
    text-transform: uppercase;
}

.logo-sub {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-main);
    text-transform: uppercase;
    margin-top: 0;
}

.logo-tagline {
    font-size: 9px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: -2px;
}

.site-logo:hover .logo-main {
    color: var(--accent-primary);
}

.site-nav ul {
    display: flex;
    gap: 36px;
    list-style: none;
}

.site-nav a {
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    /* Changed to Display Font */
    font-weight: 800;
    /* Extra Bold */
    font-size: 15px;
    /* Slightly larger */
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.site-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: width 0.3s ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: white;
}

.site-nav a:hover::after,
.site-nav a.active::after {
    width: 100%;
}

.site-cta {
    background: var(--text-main);
    color: #000 !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.site-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
    opacity: 1;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2000;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background: var(--text-main);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:first-child {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:last-child {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    z-index: 1500;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

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

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--text-main);
    font-weight: 700;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active .mobile-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-overlay.active .mobile-link:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu-overlay.active .mobile-link:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-menu-overlay.active .mobile-link:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-menu-overlay.active .mobile-link:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-menu-overlay.active .mobile-link:nth-child(5) {
    transition-delay: 0.3s;
}

@media (max-width: 1024px) {

    .site-nav,
    .desktop-only {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

/* ========================================
   GLASS CARDS
======================================== */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* ========================================
   BENTO CARDS
======================================== */
/* ========================================
   BENTO CARDS (Premium Glass V4)
======================================== */
.bento-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    text-decoration: none;
    color: inherit;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.03),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    z-index: 1;
}

/* Ambient Glow Gradient */
.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(229, 57, 53, 0.04), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(229, 57, 53, 0.2);
    box-shadow:
        0 20px 60px rgba(229, 57, 53, 0.12),
        0 10px 20px rgba(0, 0, 0, 0.03),
        inset 0 0 0 1px rgba(255, 255, 255, 1);
}

/* Sophisticated Icon Container */
.bento-card i {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    font-size: 28px;
    color: var(--text-muted);
    transition: all 0.5s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    margin-bottom: 10px;
}

.bento-card:hover i {
    background: linear-gradient(135deg, #E53935 0%, #ff5252 100%);
    color: #ffffff !important;
    border-color: transparent;
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 0 10px 25px rgba(229, 57, 53, 0.3);
}

.bento-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
    letter-spacing: -0.5px;
}

.bento-card .hook-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 400;
    opacity: 0.9;
}

/* Premium Link Indicator */
.bento-card .cta-minimal {
    position: absolute;
    bottom: 35px;
    right: 35px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-primary);
    opacity: 0.6;
    transition: all 0.4s ease;
    transform: translateX(0);
}

.bento-card:hover .cta-minimal {
    opacity: 1;
    gap: 12px;
    /* Expands on hover */
}

.bento-card .cta-minimal i {
    /* Reset icon styles for the nested arrow */
    width: auto;
    height: auto;
    background: none;
    border: none;
    color: inherit;
    font-size: 12px;
    margin: 0;
    box-shadow: none;
    transform: none !important;
}

.bento-card .cta-minimal::before {
    content: 'KEŞFET';
}

/* ========================================
   BUTTONS
======================================== */
.btn-glow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--accent-primary);
    color: #fff !important;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-glow:hover {
    background: var(--accent-secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(229, 57, 53, 0.4);
    opacity: 1;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: var(--text-main);
    font-weight: 600;
    font-size: 16px;
    border: 1px solid var(--border-subtle);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

/* ========================================
   HERO SECTION
======================================== */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(229, 57, 53, 0.06) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(229, 57, 53, 0.1);
    border: 1px solid rgba(229, 57, 53, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 32px;
}

.hero-title {
    margin-bottom: 24px;
}

.hero-title .gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   STATS SECTION
======================================== */
/* ========================================
   STATS SECTION (New Grid)
======================================== */
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.hero-stat-box {
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.3s ease;
}

.hero-stat-box:hover {
    transform: translateY(-5px);
}

.hero-stat-box h3 {
    font-size: 32px;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.hero-stat-box p {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Red Box Variant */
.hero-stat-box.red {
    background: var(--accent-primary);
    color: #fff;
    box-shadow: 0 10px 30px rgba(229, 57, 53, 0.3);
}

.hero-stat-box.red p {
    color: rgba(255, 255, 255, 0.9);
}

/* White Box Variant */
.hero-stat-box.white {
    background: #fff;
    color: var(--accent-primary);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.hero-stat-box.white h3 {
    color: var(--accent-primary);
}

.hero-stat-box.white p {
    color: var(--text-muted);
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 40px;
        /* Reduced bottom padding */
        min-height: auto;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 20px;
        /* Compress content */
    }

    .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2x2 grid */
        gap: 12px;
        margin-top: 20px;
    }

    .hero-stat-box {
        padding: 15px 10px;
    }

    .hero-stat-box h3 {
        font-size: 24px;
    }

    .hero-stat-box p {
        font-size: 10px;
    }

    /* Hide decorative glow on mobile to save space */
    .hero-section::before {
        opacity: 0.5;
    }
}

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

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

.stat-card {
    text-align: center;
    padding: 40px 24px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* ========================================
   SERVICES GRID
======================================== */
.services-grid-compact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1200px) {
    .services-grid-compact {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid-compact {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   PORTFOLIO SECTION
======================================== */
.portfolio-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.portfolio-bg-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 400px;
    background: radial-gradient(ellipse at center top, rgba(229, 57, 53, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 24px;
}

.portfolio-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 12px;
}

.portfolio-main-title {
    font-size: 36px;
    margin: 0;
}

.portfolio-subtitle {
    color: var(--text-muted);
    margin-top: 8px;
    font-size: 16px;
}

.portfolio-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 15px;
}

.portfolio-view-all:hover {
    gap: 12px;
}

.portfolio-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

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

@media (max-width: 600px) {
    .portfolio-premium-grid {
        grid-template-columns: 1fr;
    }
}

.portfolio-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    transition: all 0.4s ease;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
}

.portfolio-card-inner {
    position: relative;
}

.portfolio-image-container {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #fff;
    color: #000;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-view-btn {
    transform: translateY(0);
}

.portfolio-category-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.portfolio-card-content {
    padding: 24px;
    position: relative;
}

.portfolio-card-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 4px;
}

.portfolio-card-client {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.portfolio-arrow {
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: var(--bg-card-hover);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.portfolio-card:hover .portfolio-arrow {
    background: var(--accent-primary);
    color: #fff;
}

.portfolio-bottom-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 60px;
}

.portfolio-cta-line {
    flex: 1;
    height: 1px;
    background: var(--border-subtle);
}

.portfolio-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: transparent;
    border: 1px solid var(--border-subtle);
    border-radius: 50px;
    color: var(--text-muted);
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.portfolio-cta-button:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #fff;
}

/* ========================================
   TESTIMONIALS
======================================== */
.testimonials-section {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

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

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

.testimonial-card {
    padding: 32px;
    position: relative;
}

.testimonial-quote {
    font-size: 32px;
    color: var(--accent-primary);
    opacity: 0.5;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-main);
    margin-bottom: 24px;
}

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 600;
    font-size: 15px;
    margin: 0;
}

.testimonial-role {
    font-size: 13px;
    color: var(--text-muted);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-top: 16px;
}

.testimonial-stars i {
    color: #FFD700;
    font-size: 14px;
}

/* ========================================
   WHY CHOOSE US
======================================== */
.why-section {
    padding: 100px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

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

@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

.why-card {
    padding: 32px;
    text-align: center;
}

.why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(229, 57, 53, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon i {
    font-size: 28px;
    color: var(--accent-primary);
}

.why-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 14px;
    line-height: 1.6;
}

/* ========================================
   FAQ SECTION
======================================== */
.faq-section {
    padding: 100px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-subtle);
}

.faq-question {
    width: 100%;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 17px;
    font-weight: 600;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-primary);
}

.faq-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ========================================
   CONTACT FORM
======================================== */
.contact-section {
    padding: 100px 0;
}

.contact-form-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 48px;
}

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

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

.form-group {
    margin-bottom: 20px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    background: #f9fafb;
    /* Light background for visibility */
    border: 1px solid #e5e7eb;
    /* Visible border */
    border-radius: var(--radius-md);
    color: #111827;
    /* Dark text for contrast */
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--accent-primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(229, 57, 53, 0.1);
    /* Focus ring */
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

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

.form-submit {
    width: 100%;
    margin-top: 8px;
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 20px;
}

.form-note a {
    text-decoration: underline;
}

/* ========================================
   FOOTER
======================================== */
.site-footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-subtle);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.footer-brand p {
    margin-top: 16px;
    font-size: 14px;
    max-width: 300px;
}

.footer-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--text-main);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-main);
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent-primary);
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-subtle);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-legal a:hover {
    color: var(--text-main);
}

/* ========================================
   WHATSAPP CTA
======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* ========================================
   ANIMATIONS
======================================== */
.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.fade-up {
    animation: fadeUp 0.8s ease forwards;
}

.scale-in {
    animation: scaleIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   UTILITY CLASSES
======================================== */
.text-center {
    text-align: center;
}

.text-muted {
    color: var(--text-muted);
}

.text-accent {
    color: var(--accent-primary);
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 8px;
}

.mb-2 {
    margin-bottom: 16px;
}

.mb-3 {
    margin-bottom: 24px;
}

.mb-4 {
    margin-bottom: 32px;
}

.mb-5 {
    margin-bottom: 48px;
}

.mt-0 {
    margin-top: 0;
}

.mt-3 {
    margin-top: 24px;
}

.mt-5 {
    margin-top: 48px;
}

/* ========================================
   PAGE SPECIFIC
======================================== */
.page-header {
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 16px;
}

.page-header p {
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--text-main);
}

.breadcrumb span {
    color: var(--text-muted);
}

/* Trust Badge */
.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    opacity: 0.5;
    margin-top: 48px;
}

.trust-badge {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-muted);
}

/* No-scroll for mobile menu */
.no-scroll {
    overflow: hidden;
}

/* ========================================
   FLOATING DESKTOP ACTIONS (Recovered)
======================================== */
.floating-actions-desktop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.2),
        inset 0 2px 2px rgba(255, 255, 255, 0.4),
        inset 0 -2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    text-decoration: none;
    backdrop-filter: blur(5px);
    animation: floatPulse 3s infinite;
}

@keyframes floatPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }
}

.float-btn:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 2px 2px rgba(255, 255, 255, 0.6);
    animation: none;
    /* Stop pulsing on hover */
}

.float-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.float-btn.phone {
    background: linear-gradient(135deg, #2979FF 0%, #1565C0 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.float-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: #333;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.float-btn:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Pause Ticker on Hover */
.top-bar-ticker:hover .ticker-content {
    animation-play-state: paused;
}

/* Hide on Mobile */
.floating-actions-desktop {
    display: none !important;
}

/* ========================================
   REFERENCE LOGO GRID (500x500 Premium)
======================================== */
.reference-logo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

@media (min-width: 768px) {
    .reference-logo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .reference-logo-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.logo-box {
    width: 100%;
    aspect-ratio: 1/1;
    /* 500x500 Square */
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
    transform: scale(0.9);
}

.logo-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(229, 57, 53, 0.2);
}

.logo-box:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1);
}

.logo-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(229, 57, 53, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.logo-box:hover::after {
    opacity: 1;
}