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

:root {
    /* Primary Colors - Premium Blue Palette */
    --primary-color: #2563eb;
    --primary-light: #3b82f6;
    --primary-dark: #1d4ed8;
    --secondary-color: #1e40af;
    --accent-color: #6366f1;

    /* Neutral Colors */
    --dark-color: #0f172a;
    --dark-light: #1e293b;
    --light-color: #f8fafc;
    --text-color: #334155;
    --text-light: #64748b;
    --border-color: #e2e8f0;

    /* Accent Colors */
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;

    /* Premium Gradients */
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #6366f1 50%, #8b5cf6 100%);
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e3a5f 25%, #2563eb 50%, #6366f1 75%, #8b5cf6 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-glow: linear-gradient(135deg, rgba(99, 102, 241, 0.5) 0%, rgba(139, 92, 246, 0.5) 100%);

    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);

    /* Animation Timing */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    /* Slightly more transparent for better glass effect */
    backdrop-filter: blur(12px) saturate(110%);
    /* Enhanced blur and saturation */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    /* Softer, deeper shadow */
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    /* Subtle border for definition */
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    /* Increased padding */
}

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

.logo-text {
    display: flex;
    align-items: baseline;
    gap: 8px;
    line-height: 1;
}

.logo-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.logo-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-color);
    letter-spacing: 0.5px;
}

.logo img {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}

.logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(37, 99, 235, 0.4));
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin-left: 4rem;
    /* Increased spacing from logo */
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    padding: 0.6rem 1.2rem;
    /* Added padding for hover area */
    border-radius: 50px;
    /* Pill shape */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    white-space: nowrap;
    /* Prevent text wrapping */
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.08);
    /* Subtle background pill */
}

/* Updated underline animation to be more subtle inside the pill */
.nav-menu a::after {
    display: none;
    /* Removed old underline */
}

/* Anchor scroll offset for fixed navbar (footer links) */
#misyon, #vizyon, #degerler {
    scroll-margin-top: 100px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Mobile menu button animation when active */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section - Split Layout Premium Design */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark-color);
    overflow: hidden;
}

.hero.hero-split {
    padding: 100px 0 60px;
}

/* Background Elements */
.hero-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: glowPulse 8s ease-in-out infinite;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.hero-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.35) 0%, transparent 70%);
    bottom: -150px;
    left: 10%;
    animation-delay: -4s;
}

@keyframes glowPulse {

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

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Split Content Layout */
.hero-split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Hero Text Side */
.hero-text {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(99, 102, 241, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {

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

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

.hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.05;
    letter-spacing: -0.03em;
    animation: fadeInUp 1s ease;
    color: white;
    -webkit-text-fill-color: unset;
    background: none;
}

.hero-title .text-gradient {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    max-width: 500px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s backwards;
    justify-content: flex-start;
}

/* Hero Trust Items */
.hero-trust {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.trust-check {
    color: #10b981;
    font-weight: bold;
}

/* Hero Visual Side - Floating Cards */
.hero-visual {
    position: relative;
    height: 500px;
    animation: fadeInRight 1s ease 0.3s backwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

.hero-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-card .card-icon {
    font-size: 1.8rem;
}

.hero-card .card-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-card .card-info span:first-child {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-card .card-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

/* Main Card */
.hero-card-main {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(139, 92, 246, 0.2) 100%);
    border-color: rgba(99, 102, 241, 0.4);
    z-index: 5;
    animation: cardFloat 6s ease-in-out infinite;
}

.hero-card-main .card-icon {
    font-size: 2.5rem;
}

.hero-card-main .card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-card-main .card-label {
    font-size: 1rem;
    font-weight: 600;
}

.hero-card-main .card-status {
    font-size: 0.85rem;
    color: #10b981;
    font-weight: 500;
}

.hero-card-main .card-indicator {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    margin-left: auto;
    animation: pulse 2s ease infinite;
}

/* Floating Cards Positions */
.hero-card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.hero-card-2 {
    top: 15%;
    right: 5%;
    animation-delay: -1s;
}

.hero-card-3 {
    bottom: 25%;
    left: 5%;
    animation-delay: -2s;
}

.hero-card-4 {
    bottom: 15%;
    right: 10%;
    animation-delay: -3s;
}

/* Floating Stats */
.hero-stats-floating {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 50px;
}

.floating-stat {
    text-align: center;
    color: white;
}

.floating-stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.floating-stat span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Hero Split */
@media (max-width: 992px) {
    .hero-split-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        order: 1;
    }

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

    .hero-trust {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-visual {
        display: none;
        height: auto;
        margin-top: 2rem;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
}

/* =========================================================
   Home Hero (Product-focused)
   ========================================================= */
.home-hero .hero-split-content {
    gap: 3rem;
}

.home-hero .hero-subtitle {
    max-width: 560px;
}

.hero-visual--product {
    height: auto;
}

.hero-media {
    position: relative;
    max-width: 520px;
    margin-left: auto;
}

.home-hero .hero-media {
    animation: fadeInRight 1s ease 0.2s backwards;
}

.hero-media-frame {
    position: relative;
    border-radius: 28px;
    padding: 10px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.55), rgba(139, 92, 246, 0.35));
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.45), 0 0 60px rgba(99, 102, 241, 0.2);
}

.hero-media-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.22), transparent 55%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.14), transparent 60%);
    pointer-events: none;
}

.hero-media-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.06);
}

/* Hero image variant: avoid cropping on product PNGs */
.hero-media-img--contain {
    object-fit: contain;
    background: #fff;
    padding: 10px;
}

.hero-media-chips {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.hero-chip:nth-child(1) {
    top: 12%;
    left: -6%;
}

.hero-chip:nth-child(2) {
    top: 20%;
    right: -8%;
}

.hero-chip:nth-child(3) {
    bottom: 22%;
    left: -4%;
}

.hero-chip:nth-child(4) {
    bottom: 14%;
    right: -6%;
}

.hero-media-footnote {
    margin-top: 14px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    text-align: right;
}

@media (max-width: 992px) {
    .hero-media {
        margin: 0 auto;
        max-width: 560px;
    }

    .hero-media-footnote {
        text-align: center;
    }

    .hero-chip:nth-child(1),
    .hero-chip:nth-child(3) {
        left: 4%;
    }

    .hero-chip:nth-child(2),
    .hero-chip:nth-child(4) {
        right: 4%;
    }
}

/* ---------------------------------------------------------
   Home hero WARM variant (premium, luxurious background)
   --------------------------------------------------------- */
.home-hero--warm {
    background: url('../images/luxury-living-room-knx.png') no-repeat center center;
    background-size: cover;
    position: relative;
}

.home-hero--warm::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 20, 10, 0.70) 100%);
    pointer-events: none;
    z-index: 1;
}

.home-hero--warm .hero-split-content {
    z-index: 2;
}

.home-hero--warm .hero-grid-pattern {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    opacity: 0.3;
    z-index: 1;
}

.home-hero--warm .hero-glow-1,
.home-hero--warm .hero-glow-2 {
    opacity: 0.3;
    filter: blur(100px);
}

.home-hero--warm .hero-glow-1 {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.5) 0%, transparent 70%);
}

.home-hero--warm .hero-glow-2 {
    background: radial-gradient(circle, rgba(234, 179, 8, 0.4) 0%, transparent 70%);
}

.home-hero--warm .hero-text {
    color: #fff;
}

.home-hero--warm .hero-badge {
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.3);
    color: rgba(255, 255, 255, 0.95);
}

.home-hero--warm .badge-dot {
    background: #f59e0b;
}

.home-hero--warm .hero-title {
    color: #fff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.home-hero--warm .hero-title .text-gradient {
    background: linear-gradient(135deg, #fcd34d 0%, #f59e0b 50%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-hero--warm .hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.hero-points {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: grid;
    gap: 10px;
    max-width: 560px;
}

.hero-points li {
    position: relative;
    padding-left: 26px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.hero-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.4);
    transform: translateY(-50%);
}

.home-hero--warm .hero-trust .trust-item {
    color: rgba(255, 255, 255, 0.8);
}

.home-hero--warm .trust-check {
    color: #f59e0b;
}

.home-hero--warm .btn-primary {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
    border: none;
}

.home-hero--warm .btn-primary:hover {
    box-shadow: 0 14px 40px rgba(245, 158, 11, 0.45);
    background: linear-gradient(135deg, #fbbf24 0%, #ea580c 100%);
}

.home-hero--warm .hero-media {
    max-width: 480px;
    z-index: 2;
}

.home-hero--warm .hero-media-frame {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.home-hero--warm .hero-media-img {
    background: transparent;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.4));
}

.home-hero--warm .hero-media-footnote {
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 992px) {
    .home-hero--warm .hero-points {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .hero-media-frame {
        border-radius: 22px;
        padding: 8px;
    }

    .hero-media-img {
        border-radius: 16px;
    }

    .hero-chip {
        font-size: 0.82rem;
        padding: 9px 10px;
    }
}

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

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

/* Buttons - Modern Premium Style */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    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: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.35), 0 0 20px rgba(99, 102, 241, 0.2);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Features Section - Glassmorphism Cards */
.features {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--light-color) 0%, #ffffff 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    filter: blur(40px);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(99, 102, 241, 0.1);
}

.feature-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.feature-card--visual {
    padding: 0;
    text-align: center;
}

.feature-card--visual .feature-media {
    position: relative;
    aspect-ratio: 16 / 9;
    width: 100%;
    overflow: hidden;
    background: var(--light-color);
    border-radius: 20px 20px 0 0;
}

.feature-card--visual .feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Ürün görseli kırpılmadan (dosya en-boy oranı + contain) */
.feature-card--visual .feature-media--full-image {
    aspect-ratio: 1024 / 974;
    background: #12151a;
}

.feature-card--visual .feature-media--full-image img {
    object-fit: contain;
}

/* Dikey ekran görüntüleri: tam genişlikte 16:9 kutu içinde üst/merkez odak */
.feature-card--visual .feature-media--portrait-phone img {
    object-position: center 18%;
}

.feature-card--visual:hover .feature-media img {
    transform: scale(1.04);
}

/* Ürün kartı: ilk vitrin overlay — lacivert gradient, ince marka + model */
.feature-media-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2.25rem 1.25rem 1rem;
    background: linear-gradient(
        to top,
        rgba(15, 23, 42, 0.92) 0%,
        rgba(15, 23, 42, 0.55) 42%,
        rgba(15, 23, 42, 0) 100%
    );
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.35rem;
}

.feature-media-overlay__brand {
    margin: 0;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.72);
}

.feature-media-overlay__detail {
    margin: 0;
    max-width: 16rem;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.88);
}

.feature-card--visual-product .feature-card-body {
    padding: 1.35rem 1.75rem 1.75rem;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    background: linear-gradient(180deg, #f8fafc 0%, #fff 55%);
}

.feature-card-body--caption {
    padding-top: 0.75rem;
}

.feature-product-caption {
    margin: 0 0 0.65rem;
    padding: 0 0.25rem;
    font-size: 0.6875rem;
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: 0.03em;
    color: #64748b;
    text-align: center;
}

.feature-card--visual-product .feature-card-body h3 {
    margin: 0 0 0.5rem;
    padding: 0;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
}

.feature-card--visual-product .feature-card-body p {
    padding: 0;
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.65;
}

.feature-card--visual > h3 {
    margin-top: 1.5rem;
    padding: 0 2rem;
}

.feature-card--visual > p {
    padding: 0 2rem 2rem;
}

/* =========================================================
   Feature SHOWCASE – large side-by-side cards
   ========================================================= */
.features-showcase {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
}

.feature-showcase-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 4px 6px rgba(15, 23, 42, 0.04),
        0 12px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.06);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-showcase-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 8px 16px rgba(15, 23, 42, 0.06),
        0 24px 60px rgba(15, 23, 42, 0.12),
        0 0 60px rgba(99, 102, 241, 0.08);
}

/* Reverse layout for second card */
.feature-showcase-card--reverse {
    direction: rtl;
}

.feature-showcase-card--reverse > * {
    direction: ltr;
}

/* Media (image) column */
.feature-showcase-media {
    position: relative;
    min-height: 420px;
    overflow: hidden;
}

.feature-showcase-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-showcase-card:hover .feature-showcase-media img {
    transform: scale(1.05);
}

.feature-showcase-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.08) 0%,
        rgba(15, 23, 42, 0) 50%,
        rgba(15, 23, 42, 0.06) 100%
    );
    pointer-events: none;
}

/* Product image variant — contain on dark bg */
.feature-showcase-media--product {
    background: linear-gradient(160deg, #0f172a 0%, #1e293b 100%);
}

.feature-showcase-media--product img {
    object-fit: contain;
    padding: 2rem;
}

/* Body (text) column */
.feature-showcase-body {
    padding: 2.5rem 2.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-showcase-badge {
    display: inline-block;
    width: fit-content;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #6366f1);
    margin-bottom: 1rem;
}

.feature-showcase-badge--green {
    background: linear-gradient(135deg, #059669, #10b981);
}

.feature-showcase-badge--amber {
    background: linear-gradient(135deg, #d97706, #f59e0b);
}

.feature-showcase-badge--teal {
    background: linear-gradient(135deg, #0d9488, #14b8a6);
}

.feature-showcase-badge--purple {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
}

.feature-showcase-badge--orange {
    background: linear-gradient(135deg, #ea580c, #f97316);
}

.feature-showcase-body h3 {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--dark-color);
    margin: 0 0 0.85rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.feature-showcase-body p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-light);
    margin: 0 0 1.5rem;
}

/* Feature list */
.feature-showcase-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: grid;
    gap: 0.65rem;
}

.feature-showcase-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.935rem;
    line-height: 1.55;
    color: var(--text-color);
}

.feature-showcase-check {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(99, 102, 241, 0.12));
    color: #2563eb;
    font-size: 0.7rem;
    font-weight: 800;
    margin-top: 1px;
}

.feature-showcase-check--green {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.12), rgba(16, 185, 129, 0.12));
    color: #059669;
}

.feature-showcase-check--amber {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.12), rgba(245, 158, 11, 0.12));
    color: #d97706;
}

.feature-showcase-check--teal {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.12), rgba(20, 184, 166, 0.12));
    color: #0d9488;
}

.feature-showcase-check--purple {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(139, 92, 246, 0.12));
    color: #7c3aed;
}

.feature-showcase-check--orange {
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.12), rgba(249, 115, 22, 0.12));
    color: #ea580c;
}

/* Brand tags */
.feature-showcase-brands {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    padding-top: 0.25rem;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    padding-top: 1rem;
}

.feature-showcase-brands-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #94a3b8;
    margin-right: 0.25rem;
}

.feature-showcase-brand-tag {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #475569;
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.08);
    transition: all 0.25s ease;
}

.feature-showcase-brand-tag:hover {
    background: rgba(37, 99, 235, 0.06);
    border-color: rgba(37, 99, 235, 0.18);
    color: #2563eb;
}

/* Compact grid – 4 small cards under the showcase */
.features-grid--compact {
    grid-template-columns: repeat(4, 1fr);
}

/* ── Showcase responsive ── */
@media (max-width: 992px) {
    .feature-showcase-card {
        grid-template-columns: 1fr;
    }

    .feature-showcase-card--reverse {
        direction: ltr;
    }

    .feature-showcase-media {
        min-height: 300px;
    }

    .feature-showcase-body {
        padding: 2rem 2rem 2.25rem;
    }

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

@media (max-width: 600px) {
    .feature-showcase-media {
        min-height: 240px;
    }

    .feature-showcase-body {
        padding: 1.5rem 1.25rem 1.75rem;
    }

    .feature-showcase-body h3 {
        font-size: 1.35rem;
    }

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

/* Services Section - Modern Timeline */
.services {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--light-color) 100%);
}

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

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl), 0 0 60px rgba(99, 102, 241, 0.15);
}

.service-image {
    height: 180px;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.95) contrast(1.05);
    transform: scale(1.02);
}

.service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.55), rgba(15, 23, 42, 0) 60%);
    pointer-events: none;
}

.service-placeholder {
    font-size: 4rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: transform 0.4s ease;
}

.service-card:hover .service-placeholder {
    transform: scale(1.15) rotate(-5deg);
}

.service-number {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.service-card h3 {
    padding: 1.5rem 2rem 0.75rem;
    color: var(--dark-color);
    font-size: 1.4rem;
    font-weight: 700;
}

.service-card>p {
    padding: 0 2rem 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.service-list {
    list-style: none;
    padding: 0 2rem 2rem;
    margin: 0;
}

.service-list li {
    color: var(--text-color);
    padding: 0.4rem 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

/* About Section - Premium Design */
/* About Section - Modern Premium Redesign */
.about {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-bg-overlay {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text .section-title {
    font-size: clamp(2.2rem, 5vw, 3rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-weight: 800;
}

.about-text .section-title span {
    background: linear-gradient(135deg, var(--primary-color) 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text .lead {
    font-size: 1.25rem;
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.about-text p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* Modern Feature List */
.about-features-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.about-feature-icon {
    width: 38px;
    height: 38px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

/* Stats Glassmorphism Container */
.about-stats-container {
    position: relative;
    padding: 20px;
}

.stats-glass-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.stat-glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 2.5rem 1.5rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.03),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.2);
}

.stat-glass-card:hover::before {
    opacity: 1;
}

.stat-glass-card.wide {
    grid-column: span 2;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--dark-color) 0%, #0f172a 100%);
    border: none;
}

.stat-glass-card.wide .stat-number {
    color: white;
    font-size: 2.8rem;
}

.stat-glass-card.wide .stat-label {
    color: rgba(255, 255, 255, 0.7);
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.stat-decoration {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    opacity: 0.05;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.stat-glass-card:hover .stat-decoration {
    transform: scale(2);
    opacity: 0.1;
}

/* Image Decoration beneath stats */
.about-image-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    z-index: 1;
    opacity: 0.4;
    pointer-events: none;
}

.about-deco-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(1) opacity(0.3);
}

/* Actions */
.about-actions {
    margin-top: 1rem;
}

@media (max-width: 1024px) {
    .about-content {
        gap: 3rem;
    }
}

@media (max-width: 912px) {
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-features-modern {
        justify-items: center;
    }
    
    .about-feature-item {
        justify-content: center;
    }
    
    .about-actions {
        display: flex;
        justify-content: center;
    }
    
    .about-stats-container {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .about-features-modern {
        grid-template-columns: 1fr;
    }
    
    .stats-glass-grid {
        gap: 1rem;
    }
    
    .stat-glass-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
}

.about-placeholder {
    font-size: 8rem;
}

/* Projects Section */
.projects {
    padding: 5rem 0;
    background: var(--light-color);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.project-image {
    position: relative;
    height: 250px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-year {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.project-placeholder {
    font-size: 5rem;
    transition: transform 0.3s ease;
}

.project-card:hover .project-placeholder {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.project-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.project-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.project-info {
    padding: 1.5rem;
}

.project-info h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.project-info p {
    color: var(--text-color);
    font-size: 0.95rem;
}

/* Products Section - Premium Cards */
.products {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--light-color) 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: var(--gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl), 0 0 60px rgba(99, 102, 241, 0.15);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.product-image {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 8px 6px;
    filter: saturate(0.95);
    position: relative;
    z-index: 1;
}

.product-image::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.product-card:hover .product-image::after {
    opacity: 0.2;
}

.product-placeholder {
    font-size: 4rem;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
}

.product-card:hover .product-placeholder {
    transform: scale(1.15) rotate(8deg);
}

.product-card h3 {
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.product-card>p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

.product-features {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.product-features li {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.products-cta {
    text-align: center;
    margin-top: 3rem;
}

.products-cta-text {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* Blog Section */
.blog {
    padding: 5rem 0;
    background: var(--light-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    height: 200px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0) 65%);
    pointer-events: none;
    z-index: 1;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.95) contrast(1.05);
    position: relative;
    z-index: 0;
}

.blog-placeholder {
    font-size: 4rem;
}

.blog-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.blog-content p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-link:hover {
    color: var(--secondary-color);
    gap: 10px;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--text-color);
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Social Media Card Styles */
.social-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    color: white;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
}

.social-link.linkedin {
    background: linear-gradient(135deg, #0077B5, #00a0dc);
}

.social-link.linkedin:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 119, 181, 0.4);
}

.footer-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
    text-decoration: underline;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #25D366 !important;
    font-weight: 600;
}

.whatsapp-link:hover {
    color: #128C7E !important;
}

.whatsapp-icon {
    font-size: 1.2em;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 8px 40px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6), 0 12px 50px rgba(0, 0, 0, 0.3);
}

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

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 8px 40px rgba(0, 0, 0, 0.2);
    }

    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 8px 40px rgba(37, 211, 102, 0.3);
    }
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-icon-svg {
        width: 28px;
        height: 28px;
    }
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* ===== PREMIUM FOOTER REDESIGN ===== */
.footer {
    background: #0f172a;
    /* Deep slate/blue */
    color: #94a3b8;
    /* Muted text */
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Typographic Logo */
/* Footer Logo */
.footer-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-col h4 {
    color: white;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.contact-list li {
    position: relative;
    padding-left: 0;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 1.5rem;
}

.rights {
    color: #64748b;
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: white;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
        gap: 1.5rem;
    }
}

/* Page Header - Modern Premium Design */
.page-header {
    padding: 160px 0 80px;
    background: var(--dark-color);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(139, 92, 246, 0.3) 0%, transparent 50%);
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Active Nav Link */
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    width: 100%;
}

/* Services Detail Page */
.services-detail {
    padding: 5rem 0;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.service-detail-card.reverse {
    grid-template-columns: 1fr 150px;
}

.service-detail-card.reverse .service-detail-icon {
    order: 2;
}

.service-detail-icon {
    font-size: 6rem;
    text-align: center;
}

.service-detail-content h2 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.service-detail-content p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.service-features-list li {
    color: var(--text-color);
    font-size: 1rem;
}

/* CTA Section - Premium Dark Design */
.cta-section {
    padding: 5rem 0;
    background: var(--dark-color);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(99, 102, 241, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(139, 92, 246, 0.25) 0%, transparent 50%);
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* ===== PROJECTS PAGE - NEW DESIGN ===== */
.projects-page {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--light-color) 50%, #ffffff 100%);
}

/* Projects Summary Bar */
.projects-summary {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 2rem 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.summary-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.summary-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.summary-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

/* Filter Buttons */
.projects-filter {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.7rem 1.8rem;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.04);
}

.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

/* Projects Grid - New Design */
.projects-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}

/* Project Card - New */
.project-card-new {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(30px);
}

.project-card-new.revealed {
    opacity: 1;
    transform: translateY(0);
}

.project-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), 0 0 40px rgba(99, 102, 241, 0.08);
}

/* Project Card Image Area */
.project-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card-new:hover .project-card-image img {
    transform: scale(1.08);
}

/* Placeholder Styles */
.project-placeholder-new {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: all 0.5s ease;
}

.project-placeholder-new svg {
    width: 56px;
    height: 56px;
    color: rgba(255, 255, 255, 0.7);
    transition: transform 0.4s ease;
}

.project-card-new:hover .project-placeholder-new svg {
    transform: scale(1.15);
}

.project-placeholder-villa {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.project-placeholder-ticari {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* Type Badges */
.project-type-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.badge-villa {
    background: rgba(17, 153, 142, 0.9);
    color: white;
}

.badge-daire {
    background: rgba(37, 99, 235, 0.9);
    color: white;
}

.badge-ticari {
    background: rgba(245, 87, 108, 0.9);
    color: white;
}

/* Unit Badge */
.project-unit-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark-color);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

/* Card Content */
.project-card-content {
    padding: 1.5rem;
}

.project-card-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.6rem;
    transition: color 0.3s ease;
}

.project-card-new:hover .project-card-content h3 {
    color: var(--primary-color);
}

.project-location {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 0.8rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.project-location svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.project-desc {
    font-size: 0.92rem;
    color: var(--text-color);
    line-height: 1.6;
}

/* Projects CTA Section */
.projects-cta-section {
    padding: 5rem 0;
    background: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.projects-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(99, 102, 241, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(139, 92, 246, 0.25) 0%, transparent 50%);
}

.projects-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.projects-cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.projects-cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.projects-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Legacy tag styles kept for compatibility */
.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag {
    background: var(--light-color);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Projects Page Responsive */
@media (max-width: 768px) {
    .projects-summary {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    .projects-grid-new {
        grid-template-columns: 1fr;
    }
    .projects-filter {
        gap: 0.5rem;
    }
    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .projects-summary {
        gap: 1rem;
    }
    .summary-number {
        font-size: 1.5rem;
    }
}

/* Stats Section - Premium Design */
.stats-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--light-color) 0%, #ffffff 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-box {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(99, 102, 241, 0.1);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stat-box h3 {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Brands Overview */
.brands-overview {
    padding: 4rem 0;
    background: var(--light-color);
}

.brands-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.brand-showcase-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.brand-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.brand-showcase-card:hover::before {
    transform: scaleX(1);
}

.brand-showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(99, 102, 241, 0.1);
}

.brand-logo-area {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.brand-logo-area h3 {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.brand-showcase-logo {
    max-width: 160px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: grayscale(0%);
}

.brand-showcase-card:hover .brand-showcase-logo {
    transform: scale(1.1);
}

/* Text Logo Styles */
.text-logo {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 3px;
    transition: all 0.4s ease;
}

.eae-logo {
    color: #E31E24;
    font-family: 'Inter', sans-serif;
}

.hager-logo {
    color: #00A651;
    font-family: 'Inter', sans-serif;
}

.interra-logo {
    background: linear-gradient(135deg, #0066CC, #00AAFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Inter', sans-serif;
}

.brand-showcase-card:hover .text-logo {
    transform: scale(1.1);
}

.brand-showcase-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Products Page */
.products-page {
    padding: 5rem 0;
}

.product-category {
    margin-bottom: 5rem;
}

.category-title {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
}

.product-brand {
    position: absolute;
    top: 15px;
    left: 15px;
    background: white;
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-model {
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: monospace;
}

/* Brands Section */
.brands-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.brands-section h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.brands-section>.container>p {
    color: var(--text-color);
    margin-bottom: 4rem;
    text-align: center;
    font-size: 1.1rem;
}

.brand-category {
    margin-bottom: 4rem;
}

.brand-category h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.brand-item {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.brand-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.brand-desc {
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.8;
}

/* Blog Page */
.blog-page {
    padding: 5rem 0;
}

.blog-category {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Newsletter Section */
.newsletter-section {
    padding: 5rem 0;
    background: var(--gradient);
    color: white;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.newsletter-form button {
    white-space: nowrap;
}

/* Contact Page */
.contact-page {
    padding: 5rem 0;
}

.form-description {
    color: var(--text-color);
    margin-bottom: 2rem;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: var(--light-color);
}

.map-section h2 {
    text-align: center;
    color: var(--dark-color);
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* Logo Link */
.logo a {
    display: flex;
    align-items: center;
}

/* Blog Post Page */
.blog-post-header {
    padding: 150px 0 60px;
    background: var(--gradient);
    color: white;
}

.blog-post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.blog-post-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blog-excerpt {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 800px;
}

.blog-post-content {
    padding: 4rem 0;
}

.blog-post-content .container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
}

.blog-post-body {
    max-width: 800px;
}

.blog-featured-image {
    width: 100%;
    height: 400px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}

.blog-image-placeholder {
    font-size: 8rem;
}

.blog-text h2 {
    color: var(--dark-color);
    font-size: 2rem;
    margin: 2.5rem 0 1rem;
}

.blog-text h3 {
    color: var(--dark-color);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.blog-text p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.blog-text ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.blog-text li {
    color: var(--text-color);
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.blog-text blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: var(--light-color);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--dark-color);
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 3rem 0;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.blog-share {
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
}

.blog-share h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
}

.share-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.share-btn.whatsapp {
    background: #25D366;
}

.share-btn.twitter {
    background: #1DA1F2;
}

.share-btn.facebook {
    background: #1877F2;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.sidebar-widget h3 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.related-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-post {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.related-post:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.related-icon {
    font-size: 2rem;
}

.cta-widget {
    background: var(--gradient);
    color: white;
    text-align: center;
}

.cta-widget h3 {
    color: white;
}

.cta-widget p {
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

/* Custom Notification */
.custom-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: translateX(450px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 1rem;
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.custom-notification.success .notification-icon {
    background: #10b981;
    color: white;
}

.custom-notification.error .notification-icon {
    background: #ef4444;
    color: white;
}

.custom-notification.warning .notification-icon {
    background: #f59e0b;
    color: white;
}

.custom-notification.info .notification-icon {
    background: var(--primary-color);
    color: white;
}

.notification-text {
    flex: 1;
}

.notification-text h4 {
    margin: 0 0 0.5rem 0;
    color: var(--dark-color);
    font-size: 1.1rem;
}

.notification-text p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.notification-close:hover {
    background: var(--light-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        margin: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-menu li {
        margin: 0;
        padding: 0;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
    }

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

    /* Mobile Logo Optimization */
    .logo img {
        height: 60px;
        padding: 10px 18px;
    }

    .logo-subtitle {
        display: none;
    }

    .logo-name {
        font-size: 1.4rem;
    }

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

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

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

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

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

    .page-header h1 {
        font-size: 2rem;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .service-detail-card.reverse .service-detail-icon {
        order: 1;
    }

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

    .newsletter-form {
        flex-direction: column;
    }

    .logo a img {
        height: 70px;
    }

    .blog-post-header h1 {
        font-size: 2rem;
    }

    .blog-post-content .container {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
    }

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

/* Medium Mobile Screens - Icon + OGEM only */
@media (max-width: 640px) {
    .logo-subtitle {
        display: none;
    }

    .logo-name {
        font-size: 1.5rem;
    }

    .logo img {
        height: 58px;
        padding: 10px 18px;
    }
}

@media (max-width: 480px) {

    /* Extra Small Screens - Logo Only */
    .logo-text {
        display: none;
    }

    .logo img {
        height: 55px;
        padding: 8px 16px;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

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

/* Hakkımızda Sayfası Stilleri */

/* Company Story Section */
.company-story {
    padding: 5rem 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-text h2 {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.story-text .lead {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.story-text p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stat-box h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-box p {
    color: var(--text-color);
    font-size: 0.95rem;
}

/* Mission Vision Values Section */
.mvv-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.mvv-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.mvv-card:hover::before {
    transform: scaleX(1);
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(99, 102, 241, 0.1);
}

.mvv-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 24px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.mvv-card h3 {
    color: var(--dark-color);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.mvv-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1rem;
    padding-left: 0;
}

.values-list strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Why Choose Us Section */
.why-us {
    padding: 5rem 0;
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.why-card {
    background: var(--light-color);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.why-card h4 {
    color: var(--dark-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.why-card p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Expertise Section */
.expertise {
    padding: 5rem 0;
    background: var(--light-color);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.expertise-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.expertise-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.expertise-card h4 {
    color: var(--dark-color);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.expertise-card p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Partners & Certifications Section */
.partners {
    padding: 5rem 0;
    background: white;
}

.partners-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.cert-box {
    background: var(--light-color);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cert-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cert-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.cert-box h4 {
    color: var(--dark-color);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.cert-box p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for About Page */
@media (max-width: 968px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

    .why-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .expertise-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .partners-content {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .story-text h2 {
        font-size: 2.2rem;
    }

    .story-text .lead {
        font-size: 1.1rem;
    }

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

    .stat-box {
        padding: 1.5rem;
    }

    .mvv-card {
        padding: 2rem 1.5rem;
    }

    .mvv-icon {
        font-size: 3rem;
    }

    .mvv-card h3 {
        font-size: 1.5rem;
    }

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

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

    .partners-content {
        grid-template-columns: 1fr;
    }

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

    .btn-large {
        width: 100%;
    }
}

/* Kurumsal Sayfa - Profesyonel Minimal Tasarım */

.page-header--corporate {
    padding: 140px 0 70px;
    background: var(--dark-color);
}

.page-header--corporate::before {
    background: none;
}

.page-header--corporate::after {
    opacity: 0.5;
}

.page-header-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.75rem;
}

.page-header--corporate h1 {
    font-size: clamp(2.5rem, 5vw, 3.25rem);
    font-weight: 700;
}

/* Company Story - Kurumsal */
.company-story--corporate {
    padding: 5rem 0;
    background: #fafbfc;
}

.story-content--with-image {
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-width: 100%;
}

/* Mobil görünüm - görsel tam genişlik, oran korunur */
@media (max-width: 968px) {
    .story-content--with-image {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-image {
        order: 2;
        max-width: 100%;
    }

    .story-image img {
        width: 100%;
        max-height: 50vh;
        object-fit: cover;
        object-position: center;
    }
}

.story-stats--corporate {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-box--corporate {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.stat-box--corporate:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
    transform: none;
}

.stat-number {
    display: block;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat-box--corporate p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* MVV - Kurumsal */
.mvv-section--corporate {
    padding: 5rem 0;
    background: white;
}

.mvv-card--corporate {
    padding: 2.5rem 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.mvv-card--corporate::before {
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(1);
}

.mvv-card--corporate:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: none;
}

.mvv-number {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    font-variant-numeric: tabular-nums;
    margin-bottom: 1rem;
}

.mvv-card--corporate h3 {
    text-align: left;
    font-size: 1.35rem;
}

.mvv-card--corporate p {
    text-align: left;
}

/* Why Us - Kurumsal */
.why-us--corporate {
    padding: 5rem 0;
    background: #fafbfc;
}

.section-header--corporate h2 {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--dark-color);
}

.section-header--corporate p {
    font-size: 1rem;
    color: var(--text-light);
}

.why-card--corporate {
    background: white;
    padding: 2rem 1.75rem;
    border-radius: 8px;
    text-align: left;
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.why-card--corporate:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
    transform: none;
}

.why-card--corporate h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.why-card--corporate p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Expertise - Kurumsal */
.expertise--corporate {
    padding: 5rem 0;
    background: white;
}

.expertise-card--corporate {
    padding: 1.75rem 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.expertise-card--corporate:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: none;
}

.expertise-card--corporate h4 {
    font-size: 1.05rem;
}

/* Partners - Kurumsal */
.partners--corporate {
    padding: 5rem 0;
    background: #fafbfc;
}

.partners-content--corporate {
    gap: 1.5rem;
}

.cert-box--corporate {
    background: white;
    padding: 2rem 1.75rem;
    border-radius: 8px;
    text-align: left;
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.cert-box--corporate:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
    transform: none;
}

.cert-box--corporate h4 {
    font-size: 1.1rem;
}

/* Kurumsal Sayfa Responsive */
@media (max-width: 968px) {
    .story-stats--corporate {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .story-stats--corporate {
        grid-template-columns: 1fr;
    }

    .stat-box--corporate {
        padding: 1.5rem;
    }

    .mvv-card--corporate {
        padding: 2rem 1.5rem;
    }

    .why-card--corporate {
        padding: 1.5rem;
    }
}

/* Ana Sayfa Profesyonel İyileştirmeler (legacy - global çakışma olmasın diye scope edildi) */

/* Hero Badge */
.hero--legacy .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp 1s ease;
}

/* Hero Title h1 */
.hero--legacy .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

/* Hero Particles Background */
.hero--legacy .hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero--legacy .hero-particles::before,
.hero--legacy .hero-particles::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float 20s infinite ease-in-out;
}

.hero--legacy .hero-particles::before {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.hero--legacy .hero-particles::after {
    bottom: 10%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float {

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

    50% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

/* Hero Stats */
.hero--legacy .hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.hero--legacy .hero-stat {
    text-align: center;
}

.hero--legacy .hero-stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.3rem;
}

.hero--legacy .hero-stat span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Button Icon */
.hero--legacy .btn-icon {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.hero--legacy .btn:hover .btn-icon {
    transform: translateX(5px);
}

/* ========== Partner Brands Section ========== */
.partner-brands {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    padding: 3rem 0;
    overflow: hidden;
    position: relative;
}

/* Static / professional variant (homepage) */
.partner-brands--static {
    overflow: visible;
}

.section-header--compact {
    margin-bottom: 2.25rem;
}

.partner-brands--static .section-header p {
    max-width: 720px;
}

.partner-brands--static .brand-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    align-items: center;
}

.partner-brands--static .brand-item {
    height: 88px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(2, 6, 23, 0.06);
    box-shadow: 0 8px 30px rgba(2, 6, 23, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.partner-brands--static .brand-item img {
    max-height: 56px;
    max-width: 80%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: saturate(0.9);
    opacity: 0.95;
}

.partner-brands--static .brand-item--knx {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(99, 102, 241, 0.06));
}

.partner-brands--static .brand-item--knx span {
    font-weight: 800;
    letter-spacing: 0.12em;
    color: rgba(15, 23, 42, 0.88);
}

.partner-brands--static .brand-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(2, 6, 23, 0.09);
    border-color: rgba(37, 99, 235, 0.25);
}

@media (max-width: 992px) {
    .partner-brands--static .brand-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .partner-brands--static .brand-row {
        grid-template-columns: 1fr;
    }
}

.partner-brands::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.2), transparent);
}

.brands-header {
    text-align: center;
    margin-bottom: 2rem;
}

.brands-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.5rem 1.5rem;
    background: rgba(99, 102, 241, 0.08);
    border-radius: 50px;
    border: 1px solid rgba(99, 102, 241, 0.15);
}

.brands-track {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, white 15%, white 85%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, white 15%, white 85%, transparent);
}

.brands-slider {
    display: flex;
    gap: 3rem;
    animation: scrollBrands 40s linear infinite;
    width: max-content;
    will-change: transform;
}

.brands-slider:hover {
    animation-play-state: paused;
}

@keyframes scrollBrands {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

.brand-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    min-width: 140px;
    padding: 1rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-logo img {
    height: 56px;
    max-width: 140px;
    width: auto;
    object-fit: contain;
    opacity: 1;
    transition: all 0.4s ease;
}

.brand-logo img.brand-img--dahua {
    max-width: 170px;
}

.brand-logo:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
}

.brand-logo:hover img {
    opacity: 1;
}

/* Mobile responsive for brands */
@media (max-width: 768px) {
    .partner-brands {
        padding: 2rem 0;
    }

    .brands-slider {
        gap: 2rem;
    }

    .brand-logo {
        height: 60px;
        min-width: 110px;
        padding: 0.8rem 1.2rem;
    }

    .brand-logo img {
        height: 44px;
        max-width: 120px;
    }

    .brand-logo img.brand-img--dahua {
        max-width: 150px;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: var(--light-color);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 6rem;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.testimonial-text {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(37, 99, 235, 0.1);
}

.testimonial-author strong {
    color: var(--dark-color);
    font-size: 1.05rem;
}

.testimonial-author span {
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* About Section Enhancements */
.section-badge {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-text .lead {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: var(--light-color);
    border-radius: 10px;
}

.about-feature-icon {
    width: 30px;
    height: 30px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.about-feature span:last-child {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.about-stats-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-grid-home {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
}

.stat-home {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-home:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-home h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-home p {
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 500;
}

/* Blog CTA */
.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Blog Category Badge on Cards */
.blog-content .blog-category {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

/* Responsive Design for New Sections */
@media (max-width: 968px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .hero-stat strong {
        font-size: 1.5rem;
    }

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

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

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

@media (max-width: 768px) {
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-stat strong {
        font-size: 1.8rem;
    }

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

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .about-text .lead {
        font-size: 1.1rem;
    }

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

    .stat-home {
        padding: 2rem 1.5rem;
    }

    .stat-home h3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}

/* Services & Projects Enhancements */

/* Service Number Badge */
.service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.service-card {
    position: relative;
}

/* Service List */
.service-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.service-list li {
    color: var(--text-color);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    padding-left: 0;
}

/* Services CTA */
.services-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Projects CTA */
.projects-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Enhanced Project Card */
.project-info {
    position: relative;
}

/* Responsive for Service Cards */
@media (max-width: 968px) {
    .service-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .service-list {
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .service-number {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .service-card h3 {
        padding-right: 60px;
    }
}

/* Products Section Enhancements */

.products-cta {
    text-align: center;
    margin-top: 3rem;
}

.products-cta-text {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Enhanced Product Features */
.product-features li {
    font-size: 0.9rem;
}

/* Responsive Products */
@media (max-width: 768px) {
    .products-cta-text {
        font-size: 1rem;
    }
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

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

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

/* ===== Products Section Styles (products page) ===== */
.products-section {
    padding: 5rem 0;
    background: var(--light-color);
}

/* Brand Tabs */
.brand-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.brand-tab {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.brand-tab:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.brand-tab.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.brand-tab .tab-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 4px;
}

.brand-tab .tab-icon {
    font-size: 1.25rem;
}

.brand-tab .tab-text-logo {
    font-size: 1rem;
    font-weight: 800;
    color: #FF0000;
    letter-spacing: 1px;
}

.brand-tab.active .tab-text-logo {
    color: white;
}

/* Products Grid */
.products-section .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

/* Product Card */
.products-section .product-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.products-section .product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.products-section .product-card:hover::before {
    transform: scaleX(1);
}

.products-section .product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.products-section .product-card.hidden {
    display: none;
}

.products-section .product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.products-section .product-image {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.products-section .product-icon {
    font-size: 3rem;
}

.products-section .product-brand-tag {
    display: inline-block;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.products-section .product-card h3 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.products-section .product-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.products-section .product-card .btn {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: var(--gradient-hero);
}

.cta-content {
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.btn-light {
    background: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .brand-tabs {
        gap: 0.5rem;
    }

    .brand-tab {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .brand-tab span:last-child {
        display: none;
    }

    .brand-tab .tab-logo,
    .brand-tab .tab-icon {
        width: 24px;
        height: 24px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }
}

/* ===== Products Page Redesign ===== */
.products-overview-intro {
    padding: 4rem 0 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.products-overview-card {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(320px, 1fr);
    gap: 2rem;
    padding: 2rem;
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 28px;
    box-shadow: var(--shadow-md);
}

.products-overview-copy h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--dark-color);
    line-height: 1.15;
    margin: 0.75rem 0 1rem;
}

.products-overview-copy p {
    color: var(--text-color);
    font-size: 1.02rem;
    line-height: 1.8;
    max-width: 60ch;
}

.products-overview-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.75rem;
}

.products-overview-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.overview-metric {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 150px;
    padding: 1.5rem;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(37, 99, 235, 0.05) 0%, rgba(99, 102, 241, 0.08) 100%);
    border: 1px solid rgba(37, 99, 235, 0.08);
}

.overview-metric strong {
    color: var(--dark-color);
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
}

.overview-metric span {
    margin-top: 0.5rem;
    color: var(--text-light);
    font-size: 0.92rem;
}

.brand-showcase-v2 {
    padding: 2rem 0 5rem;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.brand-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.brand-showcase-v2-card {
    padding: 1.75rem;
    border-radius: 24px;
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.brand-showcase-v2-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.18);
}

.brand-showcase-v2-card--featured {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(99, 102, 241, 0.12) 100%);
    border-color: rgba(37, 99, 235, 0.16);
}

.brand-showcase-v2-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.brand-showcase-v2-logo {
    max-width: 132px;
    height: 40px;
    object-fit: contain;
}

.brand-showcase-v2-badge {
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.12);
    color: var(--primary-color);
    font-size: 0.78rem;
    font-weight: 700;
}

.brand-showcase-v2-card h3 {
    font-size: 1.35rem;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.brand-showcase-v2-card p {
    color: var(--text-color);
    font-size: 0.96rem;
    line-height: 1.7;
}

.brand-showcase-v2-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.25rem;
}

.brand-showcase-v2-tags li {
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.82rem;
    font-weight: 600;
}

.brand-showcase-v2-link {
    display: inline-flex;
    align-items: center;
    margin-top: 1.25rem;
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
}

.product-strategy-section {
    padding: 0 0 5rem;
    background: #ffffff;
}

.product-strategy-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.product-strategy-card {
    padding: 1.75rem;
    border-radius: 24px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.product-strategy-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-strategy-card h3 {
    color: var(--dark-color);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.product-strategy-card p {
    color: var(--text-color);
    line-height: 1.7;
}

.featured-brand-section {
    padding: 0 0 5rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.featured-brand-panel {
    padding: 2.5rem;
    border-radius: 32px;
    background: var(--dark-color);
    color: white;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    position: relative;
}

.featured-brand-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.25), transparent 35%),
        radial-gradient(circle at bottom right, rgba(99, 102, 241, 0.2), transparent 30%);
    pointer-events: none;
}

.featured-brand-header,
.featured-brand-grid,
.featured-brand-footer {
    position: relative;
    z-index: 1;
}

.featured-brand-header {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 2rem;
    align-items: end;
    margin-bottom: 2rem;
}

.featured-brand-header h2 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    line-height: 1.15;
    margin-top: 0.75rem;
}

.featured-brand-header p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
}

.featured-brand-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.featured-product-family {
    min-height: 100%;
    padding: 1.5rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.featured-product-media {
    height: 180px;
    margin-bottom: 1rem;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
}

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

.featured-product-family-type {
    display: inline-block;
    margin-bottom: 0.9rem;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.featured-product-family h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.featured-product-family p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.94rem;
    line-height: 1.7;
}

.featured-product-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1rem;
}

.featured-product-tags li {
    padding: 0.42rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-size: 0.76rem;
    font-weight: 600;
}

.featured-brand-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.featured-brand-footer p {
    max-width: 58ch;
    color: rgba(255, 255, 255, 0.82);
}

.featured-brand-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.other-brands-section {
    padding: 0 0 5rem;
    background: #f8fafc;
}

.other-brands-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.other-brand-card {
    padding: 1.75rem;
    background: white;
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: var(--shadow-sm);
}

.other-brand-media {
    height: 180px;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 1.25rem;
    background: #eef2ff;
}

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

.other-brand-logo {
    height: 38px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.25rem;
}

.other-brand-card h3 {
    color: var(--dark-color);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.other-brand-card p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.other-brand-card ul {
    padding-left: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.catalog-guidance-section {
    padding: 0 0 5rem;
    background: #f8fafc;
}

.catalog-guidance-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem 2.25rem;
    border-radius: 28px;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    color: white;
    box-shadow: var(--shadow-xl);
}

.catalog-guidance-card h2 {
    font-size: clamp(1.7rem, 4vw, 2.4rem);
    line-height: 1.2;
    margin: 0.75rem 0 1rem;
}

.catalog-guidance-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 65ch;
}

@media (max-width: 1100px) {
    .brand-showcase-grid,
    .featured-brand-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .other-brands-grid,
    .product-strategy-grid {
        grid-template-columns: 1fr;
    }

    .featured-brand-header,
    .products-overview-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .products-overview-card,
    .featured-brand-panel,
    .catalog-guidance-card {
        padding: 1.5rem;
    }

    .products-overview-metrics,
    .brand-showcase-grid,
    .featured-brand-grid {
        grid-template-columns: 1fr;
    }

    .featured-brand-footer,
    .catalog-guidance-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .products-overview-actions,
    .featured-brand-actions {
        width: 100%;
    }

    .products-overview-actions .btn,
    .featured-brand-actions .btn,
    .catalog-guidance-card .btn {
        width: 100%;
        text-align: center;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    /* Start hidden */
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid var(--border-color);
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.5rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.5;
    margin: 0;
}

.cookie-text a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-cookie-accept {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-cookie-accept:hover {
    background-color: var(--primary-dark);
}

.btn-cookie-reject {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cookie-reject:hover {
    background-color: var(--light-color);
    border-color: var(--text-color);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 1.5rem 20px;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        flex: 1;
        text-align: center;
    }
}

/* Breadcrumb Navigation */
.breadcrumb {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-item a:hover {
    color: white;
    text-decoration: underline;
}

.breadcrumb-separator {
    margin: 0 8px;
    font-size: 0.8rem;
    opacity: 0.6;
}

.breadcrumb-item.active {
    color: white;
    font-weight: 500;
}

/* Adjust page header to accommodate breadcrumb */
.page-header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

/* Brand Grid - Premium Glass Design */
.logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem 1rem;
    max-width: 1100px;
    margin: 0 auto;
}

.brand-item {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 1rem;
    width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.brand-item img {
    max-width: 80%;
    /* Prevent image overflow */
    max-height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: none;
    opacity: 1;
}

/* Hover Effects */
.brand-item:hover {
    transform: translateY(-5px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

.brand-item:hover img {
    transform: scale(1.05);
}

/* Responsive Grid */
@media (max-width: 768px) {
    .logo-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding: 1rem;
        /* Hide scrollbar for a cleaner look */
        scrollbar-width: none;
        -ms-overflow-style: none;
        /* Prevent margin auto centering from interfering with scroll */
        margin: 0;
        justify-content: flex-start;
    }
    
    .logo-grid::-webkit-scrollbar {
        display: none;
    }

    .brand-item {
        flex: 0 0 140px;
        scroll-snap-align: center;
        height: 80px;
        padding: 0.75rem;
        border-radius: 12px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .brand-item img {
        width: auto;
        height: auto;
        max-width: 80% !important;
        max-height: 80% !important;
        object-fit: contain;
    }
}

/* =========================================================
   KNX Interactive Experience Section
   ========================================================= */

/* =========================================================
   KNX Cinematic Experience V2 (Luxury Lights Off)
   ========================================================= */
.knx-v2-luxury {
    background-color: #000;
    color: #fff;
    padding: 0;
    overflow: hidden;
    position: relative;
    height: 100vh;
    min-height: 800px;
}

.knx-v2-luxury-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1.1); /* To allow slight zooming without showing edges */
    will-change: transform;
}

/* Simulate the lights going out */
.knx-v2-darkness {
    position: absolute;
    inset: 0;
    background: #020205; /* Deep luxury dark night color */
    opacity: 0; /* Starts hidden, animated to 0.95 */
    z-index: 2;
    pointer-events: none;
}

.knx-v2-container {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 10;
    perspective: 1000px;
}

.knx-v2-camera-rig {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform-origin: center center;
    will-change: transform;
}

.knx-v2-wall {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.real-switch-container {
    position: relative;
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 40px rgba(255,255,255,0.05); /* Make it pop from the background */
    will-change: transform;
}

.real-switch-img {
    display: block;
    width: 300px; 
    height: auto;
    border-radius: 8px;
    object-fit: contain;
}

/* This effect expands and fades out when the button is "pressed" */
.switch-press-effect {
    position: absolute;
    top: 60%; /* Adjusted to approximate button area on most vertical switches */
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
}

.knx-v2-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 50;
    pointer-events: none;
    opacity: 0;
    text-align: center;
    padding: 0 20px;
}

.knx-v2-text .knx-v2-title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 300;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 4px 20px rgba(0,0,0,0.9);
}

.knx-v2-text .knx-v2-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 300;
    color: rgba(255,255,255,0.9);
    letter-spacing: 1px;
    margin-bottom: 3rem;
    text-shadow: 0 4px 15px rgba(0,0,0,0.9);
}

.knx-v2-text .knx-v2-brand {
    font-size: 1rem;
    font-weight: 500;
    color: #a5b4fc; /* Indigo tint */
    letter-spacing: 4px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .real-switch-img {
        width: 200px;
    }
}


/* =========================================================
   Smart Life Scenarios Section
   ========================================================= */
.scenarios-section {
    padding: 100px 0;
    background-color: #fcfcfc;
}

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

.scenario-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 450px;
    box-shadow: var(--shadow-lg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--dark-color);
}

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

.scenario-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.scenario-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.scenario-card:hover .scenario-image img {
    transform: scale(1.1);
}

.scenario-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 50%, transparent 100%);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
    transition: all 0.4s ease;
}

.scenario-card:hover .scenario-overlay {
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.6) 100%);
}

.scenario-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.scenario-card:hover .scenario-icon {
    transform: translateY(-10px) scale(1.1);
}

.scenario-overlay h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.scenario-overlay p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 90%;
    opacity: 0.9;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.scenario-card:hover p {
    opacity: 1;
}

@media (max-width: 992px) {
    .scenarios-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .scenario-card {
        height: 380px;
    }
    
    .scenario-overlay {
        padding: 30px;
    }
    
    .scenario-overlay h3 {
        font-size: 1.5rem;
    }
}

/* =========================================================
   Modern Services Showcase Section
   ========================================================= */
.services-showcase {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-showcase-item {
    display: flex;
    align-items: center;
    gap: 60px;
    opacity: 1;
}

.service-showcase-item.reverse {
    flex-direction: row-reverse;
}

.service-showcase-image {
    flex: 1.2;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16 / 10;
}

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

.service-showcase-item:hover .service-showcase-image img {
    transform: scale(1.05);
}

.service-showcase-content {
    flex: 1;
    padding: 20px;
}

.service-step {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: inline-block;
    padding: 6px 16px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50px;
}

.service-showcase-content h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark-color);
    line-height: 1.2;
}

.service-showcase-content p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-features-mini {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-features-mini li {
    font-size: 1.05rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 12px;
}

.services-cta-modern {
    margin-top: 80px;
    text-align: center;
}

.services-cta-modern .btn {
    padding: 18px 40px;
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .services-showcase {
        gap: 60px;
    }

    .service-showcase-item, 
    .service-showcase-item.reverse {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .service-showcase-content {
        padding: 0;
    }

    .service-showcase-content h3 {
        font-size: 1.8rem;
    }

    .service-features-mini {
        align-items: center;
    }
}

/* Navbar Phone & Quote Button additions */
.nav-phone {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 2rem;
}
.nav-phone a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}
.nav-phone a:hover {
    color: var(--primary-color);
}
@media (max-width: 992px) {
    .nav-phone {
        display: none;
    }
}
.btn-nav-quote {
    background: var(--primary-color);
    color: white !important;
    border-radius: 50px;
    padding: 0.5rem 1.2rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease;
}
.btn-nav-quote:hover {
    background: var(--primary-dark);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    background-color: var(--primary-dark) !important;
}

/* Hero Quick Form */
.hero-quick-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 16px;
    margin-top: 1.5rem;
    max-width: 520px;
}
.quick-form-inputs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}
.quick-input {
    flex: 1 1 140px;
    padding: 0.8rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.quick-input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}
.quick-input:focus {
    outline: none;
    border-color: var(--primary-light);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}
.quick-submit {
    flex: 1 1 100%;
    margin-top: 0.5rem;
    border-radius: 50px !important;
}
@media (min-width: 576px) {
    .quick-submit {
        flex: 1 1 max-content;
        margin-top: 0;
    }
}
@media (max-width: 992px) {
    .hero-quick-form {
        margin-left: auto;
        margin-right: auto;
    }
}
