/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Enhanced Color Palette */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --gold-color: #f39c12;
    --success-color: #27ae60;
    --dark-color: #1a252f;
    --light-color: #ecf0f1;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-success: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    --gradient-warning: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    --gradient-purple: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    --gradient-blue: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    --shadow-luxury: 0 20px 60px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 30px 80px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px rgba(102, 126, 234, 0.3);
    --border-radius: 20px;
}

/* Advanced Animations */
@keyframes morphing {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(102, 126, 234, 0.4);
    }

    50% {
        box-shadow: 0 0 40px rgba(102, 126, 234, 0.8);
    }
}

@keyframes rotate-3d {
    0% {
        transform: rotateY(0deg) rotateX(0deg);
    }

    25% {
        transform: rotateY(90deg) rotateX(10deg);
    }

    50% {
        transform: rotateY(180deg) rotateX(0deg);
    }

    75% {
        transform: rotateY(270deg) rotateX(-10deg);
    }

    100% {
        transform: rotateY(360deg) rotateX(0deg);
    }
}

@keyframes slide-in-bounce {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }

    60% {
        transform: translateX(10px);
        opacity: 0.8;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes floating-up {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-10px) rotate(1deg);
    }

    66% {
        transform: translateY(-20px) rotate(-1deg);
    }
}

@keyframes icon-flip-3d {
    0% {
        transform: rotateY(0deg) scale(1);
    }

    50% {
        transform: rotateY(180deg) scale(1.1);
    }

    100% {
        transform: rotateY(360deg) scale(1);
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes typewriter {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink {
    0%, 50% {
        border-color: transparent;
    }

    51%, 100% {
        border-color: var(--secondary-color);
    }
}

/* Navigation Enhanced */
.luxury-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1rem 0;
    position: relative;
}

    .luxury-navbar::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--gradient-primary);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .luxury-navbar.scrolled::before {
        transform: scaleX(1);
    }

    .luxury-navbar.scrolled {
        padding: 0.5rem 0;
        box-shadow: var(--shadow-luxury);
        background: rgba(255, 255, 255, 0.98);
    }

/* Enhanced Buttons */
.btn-luxury {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
}

    .btn-luxury::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        transition: left 0.5s;
    }

    .btn-luxury:hover::before {
        left: 100%;
    }

    .btn-luxury:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: var(--shadow-hover);
        color: white;
    }

/* Hero Section Enhanced */
.hero-section {
    background: var(--gradient-primary);
    color: white;
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%), radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
        animation: morphing 8s ease-in-out infinite;
    }

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: floating-up 6s ease-in-out infinite;
}

    .particle:nth-child(1) {
        left: 10%;
        animation-delay: 0s;
    }

    .particle:nth-child(2) {
        left: 20%;
        animation-delay: 1s;
    }

    .particle:nth-child(3) {
        left: 30%;
        animation-delay: 2s;
    }

    .particle:nth-child(4) {
        left: 40%;
        animation-delay: 3s;
    }

    .particle:nth-child(5) {
        left: 50%;
        animation-delay: 4s;
    }

    .particle:nth-child(6) {
        left: 60%;
        animation-delay: 5s;
    }

    .particle:nth-child(7) {
        left: 70%;
        animation-delay: 1.5s;
    }

    .particle:nth-child(8) {
        left: 80%;
        animation-delay: 2.5s;
    }

    .particle:nth-child(9) {
        left: 90%;
        animation-delay: 3.5s;
    }

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
    background: linear-gradient(45deg, #fff, #f1c40f, #fff);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
}

.typewriter-text {
    overflow: hidden;
    border-right: 3px solid;
    white-space: nowrap;
    animation: typewriter 3s steps(40) 1s both, blink 1s step-end infinite;
}

/* Enhanced Product Cards */
.product-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-luxury);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    height: 100%;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

    .product-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient-primary);
        transform: translateX(-100%);
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .product-card::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: conic-gradient(from 0deg, transparent, rgba(102, 126, 234, 0.1), transparent);
        opacity: 0;
        transition: opacity 0.5s ease;
        animation: rotate-3d 10s linear infinite;
    }

    .product-card:hover::before {
        transform: translateX(0);
    }

    .product-card:hover::after {
        opacity: 1;
    }

    .product-card:hover {
        transform: translateY(-15px) rotateX(5deg);
        box-shadow: var(--shadow-hover);
    }

.product-icon {
    font-size: 4rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.product-card:hover .product-icon {
    animation: icon-bounce-modern 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: scale(1.1);
}

/* Enhanced Feature Items */
.feature-item {
    text-align: center;
    padding: 3rem 2rem;
    margin-bottom: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-luxury);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

    .feature-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.1), transparent);
        transition: left 0.6s ease;
    }

    .feature-item:hover::before {
        left: 100%;
    }

    .feature-item:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-hover);
    }

.feature-icon {
    font-size: 4rem;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}

.feature-item:hover .feature-icon {
    animation: icon-pulse-glow 0.8s ease;
    transform: scale(1.2);
}

/* Enhanced Stats Section */
.stats-section {
    background: var(--dark-color);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

    .stats-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 25% 25%, rgba(52, 152, 219, 0.2) 0%, transparent 50%), radial-gradient(circle at 75% 75%, rgba(155, 89, 182, 0.2) 0%, transparent 50%);
    }

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

    .stat-item:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.1);
        box-shadow: var(--shadow-glow);
    }

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    display: block;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

/* Floating Action Buttons */
.floating-icons {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.floating-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow-luxury);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
}

    .floating-icon:hover {
        transform: scale(1.1) rotate(10deg);
        box-shadow: var(--shadow-hover);
        color: white;
    }

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-spinner {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Enhanced Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 10px;
    border: 2px solid #f1f1f1;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--gradient-secondary);
    }

/* Enhanced Logo Styles */
.brand-logo {
    height: 50px;
    width: auto;
    max-width: 50px;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.luxury-brand:hover .brand-logo {
    animation: pulse-glow 1s ease;
    transform: scale(1.1);
}

/* Hero Illustration Enhanced */
.hero-illustration {
    position: relative;
    text-align: center;
}

.illustration-container {
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.hero-icon {
    font-size: 18rem;
    color: rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    animation: floating-up 4s ease-in-out infinite;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.element {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    animation: floating-up 4s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

    .element:hover {
        animation: icon-elastic 0.7s ease;
        transform: scale(1.2) rotate(15deg);
        background: var(--gradient-primary);
        color: white;
    }

.element-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.element-2 {
    top: 25%;
    right: 12%;
    animation-delay: 1s;
}

.element-3 {
    bottom: 25%;
    left: 15%;
    animation-delay: 2s;
}

.element-4 {
    bottom: 15%;
    right: 8%;
    animation-delay: 1.5s;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .floating-icons {
        right: 1rem;
        gap: 0.5rem;
    }

    .floating-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .element {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .hero-icon {
        font-size: 12rem;
    }

    .product-card {
        padding: 2rem;
    }
}

/* Hover Effects for Lists */
.list-unstyled li {
    transition: all 0.3s ease;
    padding: 0.3rem 0;
    border-radius: 8px;
}

    .list-unstyled li:hover {
        background: rgba(52, 152, 219, 0.1);
        transform: translateX(5px);
        padding-left: 1rem;
    }

/* Enhanced CTA Section */
.cta-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        animation: rotate-3d 20s linear infinite;
    }

/* Success Animation */
@keyframes success-bounce {
    0%, 20%, 60%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    80% {
        transform: translateY(-10px);
    }
}

.success-animation {
    animation: success-bounce 2s ease;
}


/* Tech Icons */
.tech-icons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.tech-icon {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    animation: floating-up 3s ease-in-out infinite;
    cursor: pointer;
}

    .tech-icon:hover {
        color: white;
        animation: icon-morph 0.8s ease;
        transform: scale(1.2);
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    }

    .tech-icon:nth-child(1) {
        animation-delay: 0s;
    }

    .tech-icon:nth-child(2) {
        animation-delay: 0.5s;
    }

    .tech-icon:nth-child(3) {
        animation-delay: 1s;
    }

    .tech-icon:nth-child(4) {
        animation-delay: 1.5s;
    }

    .tech-icon:nth-child(5) {
        animation-delay: 2s;
    }

/* Feature Badges */
.feature-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

    .badge-item:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

/* Stats Mini */
.stat-mini {
    padding: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .stat-mini:hover {
        transform: scale(1.1);
    }

.bg-gradient-primary {
    background: var(--gradient-primary) !important;
}

/* Section Badges */
.section-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: var(--shadow-luxury);
}

/* Card Numbers */
.card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.4rem;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.5);
    z-index: 1000;
    border: 4px solid white;
    transition: all 0.3s ease;
}

    .card-number:hover {
        transform: scale(1.15);
        box-shadow: 0 10px 30px rgba(231, 76, 60, 0.7);
    }

/* Featured Card için özel numara stili */
.featured-card .card-number {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.5);
    border: 4px solid rgba(255, 255, 255, 0.95);
}

.featured-card:hover .card-number {
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.7);
}

/* Featured Card */
.featured-card {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

    .featured-card .product-title,
    .featured-card .product-description {
        color: white;
    }

    .featured-card .list-unstyled li {
        color: rgba(255, 255, 255, 0.9);
    }

.featured-badge {
    position: absolute;
    top: 20px;
    left: -10px;
    background: var(--gradient-warning);
    color: var(--dark-color);
    padding: 0.3rem 1rem;
    border-radius: 0 15px 15px 0;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Enhanced Feature Items */
.feature-stats {
    margin-top: 1rem;
}

    .feature-stats .badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

/* Enhanced Stats */
.stat-icon {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-description {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.8;
}

/* CTA Section Enhanced */
.cta-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        animation: rotate-3d 20s linear infinite;
    }

.cta-icons i {
    animation: floating-up 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

    .cta-icons i:hover {
        animation: icon-flip-3d 0.8s ease;
    }

    .cta-icons i:nth-child(1) {
        animation-delay: 0s;
    }

    .cta-icons i:nth-child(2) {
        animation-delay: 0.5s;
    }

    .cta-icons i:nth-child(3) {
        animation-delay: 1s;
    }

.trust-indicators {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
}

    .trust-indicators i {
        transition: all 0.3s ease;
    }

    .trust-indicators .col-md-4:hover i {
        transform: scale(1.2);
    }

/* Enhanced Floating Elements */
.element-5 {
    top: 10%;
    right: 5%;
    animation-delay: 2.5s;
}

.element-6 {
    bottom: 10%;
    left: 5%;
    animation-delay: 3s;
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Enhanced Button Styles */
.btn-luxury-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

    .btn-luxury-outline::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: white;
        transition: left 0.5s;
        z-index: -1;
    }

    .btn-luxury-outline:hover::before {
        left: 0;
    }

    .btn-luxury-outline:hover {
        color: var(--primary-color);
        border-color: white;
        transform: translateY(-3px) scale(1.05);
        box-shadow: var(--shadow-hover);
    }

/* Enhanced Particles */
.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particle-float 8s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes particle-float {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Enhanced Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-spinner {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.3);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Enhanced Floating Icons */
.floating-icons {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.floating-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow-luxury);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

    .floating-icon::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        transition: left 0.5s;
    }

    .floating-icon:hover::before {
        left: 100%;
    }

    .floating-icon:hover {
        transform: scale(1.2) rotate(10deg);
        animation: icon-pulse-glow 0.6s ease;
        box-shadow: var(--shadow-hover);
        color: white;
    }

.stat-icon:hover {
    animation: icon-bounce-modern 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
/* Enhanced Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 10px;
    border: 2px solid #f8f9fa;
    transition: all 0.3s ease;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--gradient-secondary);
        border-width: 1px;
    }

/* Success Animation */
@keyframes success-bounce {
    0%, 20%, 60%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    80% {
        transform: translateY(-10px);
    }
}

.success-animation {
    animation: success-bounce 2s ease;
}

/* Enhanced List Hover Effects */
.list-unstyled li {
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

    .list-unstyled li::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(39, 174, 96, 0.1), transparent);
        transition: left 0.3s ease;
    }

    .list-unstyled li:hover::before {
        left: 100%;
    }

    .list-unstyled li:hover {
        background: rgba(39, 174, 96, 0.05);
        transform: translateX(10px);
        padding-left: 1.5rem;
    }

/* Media Queries for Enhanced Responsiveness */
@media (max-width: 992px) {
    .floating-icons {
        right: 1rem;
        gap: 0.5rem;
    }

    .floating-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .tech-icons {
        justify-content: center;
    }

    .feature-badges {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .element {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .hero-icon {
        font-size: 12rem;
    }

    .product-card {
        padding: 2rem;
    }

    .card-number {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
        top: 16px;
        right: 16px;
        border: 3px solid white;
    }

    .tech-icon {
        font-size: 1.5rem;
    }

    .cta-icons i {
        font-size: 2rem !important;
    }

    .floating-icons {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .feature-badges {
        flex-direction: column;
        align-items: center;
    }

    .badge-item {
        margin-bottom: 0.5rem;
    }

    .trust-indicators .row > div {
        margin-bottom: 1rem;
    }

    .card-number {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        top: 14px;
        right: 14px;
        border: 3px solid white;
    }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    :root {
        --primary-color: #3498db;
        --text-color: #ecf0f1;
    }

    body {
        background-color: #1a1a1a;
        color: var(--text-color);
    }

    .product-card {
        background: #2c3e50;
        color: white;
    }

    .feature-item {
        background: #2c3e50;
        color: white;
    }
}

/* Print Styles */
@media print {
    .floating-icons,
    .loading-screen,
    .hero-particles {
        display: none !important;
    }

    .hero-section {
        background: white !important;
        color: black !important;
    }

    .stats-section {
        background: white !important;
        color: black !important;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .btn-luxury {
        border: 2px solid white;
    }

    .product-card {
        border: 2px solid var(--primary-color);
    }

    .feature-item {
        border: 2px solid var(--secondary-color);
    }
}

/* Animation Performance Optimization */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .particle,
    .hero-particles {
        display: none;
    }
}

/* Featured Card handshake ikonunu altın sarısı yap */
.featured-card .product-icon {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.4));
}

/* Hover durumunda daha parlak yap */
.featured-card:hover .product-icon {
    background: linear-gradient(135deg, #ffed4e 0%, #ff9500 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* Modern Footer Styles */
.luxury-footer {
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
    color: #ecf0f1;
    position: relative;
    overflow: hidden;
    margin-top: 6rem;
}

    .luxury-footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 80%, rgba(52, 152, 219, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(155, 89, 182, 0.1) 0%, transparent 50%), radial-gradient(circle at 40% 40%, rgba(243, 156, 18, 0.05) 0%, transparent 50%);
        animation: morphing 15s ease-in-out infinite;
    }

/* Footer Top Section */
.footer-top {
    padding: 5rem 0 3rem;
    position: relative;
    z-index: 2;
}

.footer-brand-section {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

    .footer-brand-section:hover {
        background: rgba(255, 255, 255, 0.05);
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-brand-text {
    color: #ecf0f1;
    font-weight: 800;
    font-size: 1.8rem;
    margin: 0;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: rgba(236, 240, 241, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Footer Stats */
.footer-stats {
    margin-top: 2rem;
}

.footer-stat-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .footer-stat-item:hover {
        background: rgba(52, 152, 219, 0.2);
        transform: translateY(-2px);
    }

    .footer-stat-item i {
        font-size: 1.5rem;
        color: var(--gold-color);
        margin-bottom: 0.5rem;
    }

    .footer-stat-item span {
        display: block;
        font-size: 1.2rem;
        font-weight: 700;
        color: #ecf0f1;
    }

    .footer-stat-item small {
        font-size: 0.8rem;
        color: rgba(236, 240, 241, 0.7);
    }

/* Footer Sections */
.footer-section {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

    .footer-section:hover {
        background: rgba(255, 255, 255, 0.05);
        transform: translateY(-5px);
    }

.footer-title {
    color: #ecf0f1;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(52, 152, 219, 0.3);
    display: flex;
    align-items: center;
}

    .footer-title i {
        color: var(--secondary-color);
    }

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 0.8rem;
    }

    .footer-links a {
        color: rgba(236, 240, 241, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
        padding: 0.5rem 0;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        border-radius: 8px;
        padding-left: 1rem;
        position: relative;
        overflow: hidden;
    }

        .footer-links a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 3px;
            background: var(--gradient-primary);
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }

        .footer-links a:hover::before {
            transform: translateX(0);
        }

        .footer-links a:hover {
            color: #ecf0f1;
            background: rgba(52, 152, 219, 0.1);
            transform: translateX(5px);
        }

        .footer-links a i {
            width: 20px;
            color: var(--gold-color);
            font-size: 0.9rem;
        }

/* Contact Info */
.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
}

    .contact-item:hover {
        background: rgba(52, 152, 219, 0.1);
        transform: translateX(5px);
    }

.contact-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

    .contact-details strong {
        color: #ecf0f1;
        font-weight: 600;
        font-size: 0.9rem;
    }

    .contact-details span {
        color: rgba(236, 240, 241, 0.8);
        font-size: 0.9rem;
    }

/* Newsletter Section */
.newsletter-section {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(52, 152, 219, 0.2);
}

.newsletter-title {
    color: #ecf0f1;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.newsletter-desc {
    color: rgba(236, 240, 241, 0.8);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ecf0f1;
    border-radius: 25px 0 0 25px;
}

    .newsletter-form .form-control::placeholder {
        color: rgba(236, 240, 241, 0.6);
    }

    .newsletter-form .form-control:focus {
        background: rgba(255, 255, 255, 0.15);
        border-color: var(--secondary-color);
        color: #ecf0f1;
        box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
    }

.newsletter-form .btn-luxury {
    border-radius: 0 25px 25px 0;
    padding: 0.7rem 1.5rem;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.copyright-section .copyright {
    color: rgba(236, 240, 241, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(236, 240, 241, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .social-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--gradient-primary);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .social-link:hover::before {
        opacity: 1;
    }

    .social-link:hover {
        color: white;
        transform: translateY(-3px) scale(1.1);
        box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
    }

    .social-link i {
        position: relative;
        z-index: 1;
        font-size: 1.1rem;
    }

/* Legal Links */
.legal-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.legal-link {
    color: rgba(236, 240, 241, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

    .legal-link::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--secondary-color);
        transition: width 0.3s ease;
    }

    .legal-link:hover::after {
        width: 100%;
    }

    .legal-link:hover {
        color: #ecf0f1;
    }

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

    .back-to-top.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .back-to-top:hover {
        transform: translateY(-5px) scale(1.1);
        box-shadow: 0 5px 20px rgba(52, 152, 219, 0.4);
    }

/* Responsive Design */
@media (max-width: 768px) {
    .footer-top {
        padding: 3rem 0 2rem;
    }

    .footer-brand-section,
    .footer-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .footer-bottom-right {
        align-items: flex-start;
        margin-top: 1rem;
    }

    .social-links {
        margin-bottom: 0.5rem;
    }

    .legal-links {
        justify-content: flex-start;
        gap: 1rem;
    }

    .newsletter-form .btn-luxury {
        padding: 0.7rem 1rem;
    }

    .footer-stats .row > div {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .footer-brand-section,
    .footer-section {
        padding: 1rem;
    }

    .footer-logo-container {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .legal-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Mevcut CSS kodlarına aşağıdakileri ekleyin */

/* Compact Contact Info Styles */
.contact-info-compact {
    margin-bottom: 1.5rem;
}

.contact-item-compact {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

    .contact-item-compact:hover {
        background: rgba(52, 152, 219, 0.1);
        transform: translateY(-2px);
    }

.contact-item-full {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: all 0.3s ease;
}

    .contact-item-full:hover {
        background: rgba(52, 152, 219, 0.1);
        transform: translateY(-2px);
    }

.contact-icon-compact {
    width: 35px;
    height: 35px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.contact-details-compact {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    flex: 1;
}

    .contact-details-compact strong {
        color: #ecf0f1;
        font-weight: 600;
        font-size: 0.8rem;
        line-height: 1.2;
    }

    .contact-details-compact span {
        color: rgba(236, 240, 241, 0.8);
        font-size: 0.75rem;
        line-height: 1.3;
    }

/* Newsletter Compact */
.newsletter-section-compact {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(52, 152, 219, 0.2);
}

    .newsletter-section-compact .newsletter-title {
        color: #ecf0f1;
        font-weight: 600;
        margin-bottom: 0.4rem;
        font-size: 1rem;
        display: flex;
        align-items: center;
    }

    .newsletter-section-compact .newsletter-desc {
        color: rgba(236, 240, 241, 0.8);
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }

/* Footer Padding Adjustments */
.footer-top {
    padding: 4rem 0 2.5rem;
}

.footer-brand-section,
.footer-section {
    padding: 1.5rem;
}

/* Enhanced responsiveness for compact layout */
@media (max-width: 768px) {
    .contact-info-compact .row {
        margin-bottom: 1rem;
    }

    .contact-info-compact .col-6 {
        margin-bottom: 1rem;
    }

    .contact-item-compact {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1rem;
    }

    .contact-item-full {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1rem;
    }

    .newsletter-section-compact {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .footer-top {
        padding: 3rem 0 2rem;
    }

    .contact-info-compact .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Mevcut kodların sonuna aşağıdakileri ekleyin */

/* İletişim & Destek kartı için özel genişletme */
.footer-contact-section {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

    .footer-contact-section:hover {
        background: rgba(255, 255, 255, 0.05);
        transform: translateY(-5px);
    }

/* Compact Contact Info için daha geniş alan */
.contact-info-expanded {
    margin-bottom: 1.5rem;
}

.contact-item-expanded {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-bottom: 0.8rem;
}

    .contact-item-expanded:hover {
        background: rgba(52, 152, 219, 0.1);
        transform: translateY(-2px);
    }

.contact-icon-expanded {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-details-expanded {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
}

    .contact-details-expanded strong {
        color: #ecf0f1;
        font-weight: 600;
        font-size: 0.9rem;
        line-height: 1.3;
    }

    .contact-details-expanded span {
        color: rgba(236, 240, 241, 0.8);
        font-size: 0.85rem;
        line-height: 1.4;
    }

/* Newsletter için daha kompakt tasarım */
.newsletter-section-expanded {
    margin-top: 2rem;
    padding: 1.8rem;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(52, 152, 219, 0.2);
}

    .newsletter-section-expanded .newsletter-title {
        color: #ecf0f1;
        font-weight: 600;
        margin-bottom: 0.6rem;
        font-size: 1.1rem;
        display: flex;
        align-items: center;
    }

    .newsletter-section-expanded .newsletter-desc {
        color: rgba(236, 240, 241, 0.8);
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }

/* Grid sistemi için ayarlamalar */
@media (min-width: 992px) {
    .footer-contact-wide {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .footer-products-narrow {
        flex: 0 0 19.444444%;
        max-width: 19.444444%;
    }

    .footer-services-narrow {
        flex: 0 0 19.444444%;
        max-width: 19.444444%;
    }

    .footer-brand-narrow {
        flex: 0 0 19.444444%;
        max-width: 19.444444%;
    }
}

/* Mobil uyumluluk */
@media (max-width: 991px) {
    .contact-item-expanded {
        padding: 0.8rem;
        margin-bottom: 0.6rem;
    }

    .contact-icon-expanded {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .newsletter-section-expanded {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-item-expanded {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
        padding: 1.2rem;
    }

    .newsletter-section-expanded {
        padding: 1.2rem;
    }
}

/* Footer kartları için min-height ayarı */
.footer-section,
.footer-brand-section,
.footer-contact-section {
    min-height: 450px;
}

@media (max-width: 768px) {
    .footer-section,
    .footer-brand-section,
    .footer-contact-section {
        min-height: auto;
    }
}
/* Mevcut CSS kodlarının sonuna aşağıdakileri ekleyin */

/* Brand Section Expanded */
.footer-brand-section-expanded {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 100%;
}

    .footer-brand-section-expanded:hover {
        background: rgba(255, 255, 255, 0.05);
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

/* Combined Products & Services Section */
.footer-section-combined {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

    .footer-section-combined:hover {
        background: rgba(255, 255, 255, 0.05);
        transform: translateY(-5px);
    }

    /* Enhanced footer links for combined section */
    .footer-section-combined .footer-links {
        margin-bottom: 0;
    }

        .footer-section-combined .footer-links li {
            margin-bottom: 0.6rem;
        }

        .footer-section-combined .footer-links a {
            color: rgba(236, 240, 241, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 0.3rem 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            border-radius: 6px;
            padding-left: 0.8rem;
            position: relative;
            overflow: hidden;
            font-size: 0.9rem;
        }

            .footer-section-combined .footer-links a::before {
                content: '';
                position: absolute;
                left: 0;
                top: 0;
                height: 100%;
                width: 3px;
                background: var(--gradient-primary);
                transform: translateX(-100%);
                transition: transform 0.3s ease;
            }

            .footer-section-combined .footer-links a:hover::before {
                transform: translateX(0);
            }

            .footer-section-combined .footer-links a:hover {
                color: #ecf0f1;
                background: rgba(52, 152, 219, 0.1);
                transform: translateX(5px);
            }

            .footer-section-combined .footer-links a i {
                width: 18px;
                color: var(--gold-color);
                font-size: 0.85rem;
            }

    /* Enhanced footer title for combined section */
    .footer-section-combined .footer-title {
        color: #ecf0f1;
        font-weight: 700;
        font-size: 1rem;
        margin-bottom: 1.2rem;
        padding-bottom: 0.4rem;
        border-bottom: 2px solid rgba(52, 152, 219, 0.3);
        display: flex;
        align-items: center;
    }

        .footer-section-combined .footer-title i {
            color: var(--secondary-color);
        }

/* Optimize brand section typography */
.footer-brand-section-expanded .footer-description {
    color: rgba(236, 240, 241, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-brand-section-expanded .footer-brand-text {
    color: #ecf0f1;
    font-weight: 800;
    font-size: 1.8rem;
    margin: 0;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced stats for brand section */
.footer-brand-section-expanded .footer-stats {
    margin-top: 2rem;
}

.footer-brand-section-expanded .footer-stat-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .footer-brand-section-expanded .footer-stat-item:hover {
        background: rgba(52, 152, 219, 0.2);
        transform: translateY(-2px);
    }

    .footer-brand-section-expanded .footer-stat-item i {
        font-size: 1.5rem;
        color: var(--gold-color);
        margin-bottom: 0.5rem;
    }

    .footer-brand-section-expanded .footer-stat-item span {
        display: block;
        font-size: 1.2rem;
        font-weight: 700;
        color: #ecf0f1;
    }

    .footer-brand-section-expanded .footer-stat-item small {
        font-size: 0.8rem;
        color: rgba(236, 240, 241, 0.7);
    }

/* Responsive adjustments */
@media (max-width: 991px) {
    .footer-brand-section-expanded,
    .footer-section-combined,
    .footer-contact-section {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-brand-section-expanded,
    .footer-section-combined,
    .footer-contact-section {
        padding: 1.5rem;
    }

        .footer-section-combined .mb-4 {
            margin-bottom: 2rem !important;
        }

        .footer-section-combined .footer-links a {
            font-size: 0.85rem;
            padding: 0.4rem 0;
        }
}

@media (max-width: 576px) {
    .footer-brand-section-expanded,
    .footer-section-combined,
    .footer-contact-section {
        padding: 1.2rem;
    }

        .footer-brand-section-expanded .footer-logo-container {
            flex-direction: column;
            text-align: center;
            gap: 0.5rem;
        }

        .footer-brand-section-expanded .footer-brand-text {
            font-size: 1.5rem;
        }
}

/* Min-height adjustment for all sections */
.footer-brand-section-expanded,
.footer-section-combined,
.footer-contact-section {
    min-height: 500px;
}

@media (max-width: 768px) {
    .footer-brand-section-expanded,
    .footer-section-combined,
    .footer-contact-section {
        min-height: auto;
    }
}

/* ===== COMPACT LAYOUT STYLES ===== */
/* Site genelinde daha kompakt bir yapı için optimizasyonlar */

/* Kompakt Hero Section */
.compact-hero .hero-section {
    padding: 6rem 0 3rem;
    min-height: 70vh;
}

.compact-hero .hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.compact-hero .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Kompakt Sections */
.compact-section {
    padding: 3rem 0 !important;
}

    .compact-section.py-5 {
        padding: 2.5rem 0 !important;
    }

    .compact-section.py-4 {
        padding: 2rem 0 !important;
    }

/* Kompakt Product Cards */
.compact-cards .product-card {
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.compact-cards .product-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.compact-cards .product-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.compact-cards .product-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Kompakt Feature Items */
.compact-features .feature-item {
    padding: 2rem 1.5rem;
    margin-bottom: 1.5rem;
}

.compact-features .feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.compact-features .feature-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Kompakt Stats Section */
.compact-stats .stats-section {
    padding: 4rem 0;
}

.compact-stats .stat-item {
    padding: 1.5rem;
}

.compact-stats .stat-number {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.compact-stats .stat-label {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.compact-stats .stat-description {
    font-size: 0.85rem;
}

/* Kompakt Footer */
.compact-footer .footer-top {
    padding: 3rem 0 2rem;
}

.compact-footer .footer-brand-section-expanded,
.compact-footer .footer-section-combined,
.compact-footer .footer-contact-section {
    padding: 1.5rem;
    min-height: 350px;
}

.compact-footer .footer-stat-item {
    padding: 0.8rem;
}

.compact-footer .contact-item-expanded {
    padding: 0.8rem;
    margin-bottom: 0.6rem;
}

.compact-footer .newsletter-section-expanded {
    padding: 1.5rem;
    margin-top: 1.5rem;
}

/* Kompakt Spacing Utilities */
.compact-mb-1 {
    margin-bottom: 0.5rem !important;
}

.compact-mb-2 {
    margin-bottom: 1rem !important;
}

.compact-mb-3 {
    margin-bottom: 1.5rem !important;
}

.compact-mb-4 {
    margin-bottom: 2rem !important;
}

.compact-mb-5 {
    margin-bottom: 2.5rem !important;
}

.compact-mt-1 {
    margin-top: 0.5rem !important;
}

.compact-mt-2 {
    margin-top: 1rem !important;
}

.compact-mt-3 {
    margin-top: 1.5rem !important;
}

.compact-mt-4 {
    margin-top: 2rem !important;
}

.compact-mt-5 {
    margin-top: 2.5rem !important;
}

.compact-py-1 {
    padding: 0.5rem 0 !important;
}

.compact-py-2 {
    padding: 1rem 0 !important;
}

.compact-py-3 {
    padding: 1.5rem 0 !important;
}

.compact-py-4 {
    padding: 2rem 0 !important;
}

.compact-py-5 {
    padding: 2.5rem 0 !important;
}

/* Kompakt Typography */
.compact-text .display-1 {
    font-size: 4rem !important;
}

.compact-text .display-2 {
    font-size: 3.5rem !important;
}

.compact-text .display-3 {
    font-size: 3rem !important;
}

.compact-text .display-4 {
    font-size: 2.5rem !important;
}

.compact-text .display-5 {
    font-size: 2rem !important;
}

.compact-text .display-6 {
    font-size: 1.5rem !important;
}

.compact-text .lead {
    font-size: 1.1rem !important;
    margin-bottom: 1rem !important;
}

.compact-text h1 {
    font-size: 2.2rem !important;
}

.compact-text h2 {
    font-size: 1.8rem !important;
}

.compact-text h3 {
    font-size: 1.5rem !important;
}

.compact-text h4 {
    font-size: 1.3rem !important;
}

.compact-text h5 {
    font-size: 1.1rem !important;
}

.compact-text h6 {
    font-size: 1rem !important;
}

/* Kompakt Buttons */
.compact-buttons .btn-luxury {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
}

.compact-buttons .btn-luxury-outline {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
}

/* Kompakt Grid Gaps */
.compact-grid .row {
    --bs-gutter-y: 1.5rem;
}

.compact-grid .g-4 {
    --bs-gutter-y: 1.5rem;
}

.compact-grid .g-5 {
    --bs-gutter-y: 2rem;
}

/* Kompakt Logo */
.compact-logo .brand-logo {
    height: 40px;
    max-width: 40px;
}

.compact-logo .footer-logo {
    height: 50px;
}

/* Kompakt Navigation */
.compact-nav .luxury-navbar {
    padding: 0.5rem 0;
}

    .compact-nav .luxury-navbar.scrolled {
        padding: 0.3rem 0;
    }

/* Kompakt Floating Icons */
.compact-floating .floating-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
}

.compact-floating .floating-icons {
    gap: 0.8rem;
}

/* Kompakt Responsive Adjustments */
@media (max-width: 1200px) {
    .compact-text .hero-title {
        font-size: 2.5rem !important;
    }

    .compact-cards .product-card {
        padding: 1.8rem;
    }
}

@media (max-width: 992px) {
    .compact-section {
        padding: 2.5rem 0 !important;
    }

    .compact-hero .hero-section {
        padding: 5rem 0 2.5rem;
        min-height: 60vh;
    }

    .compact-text .hero-title {
        font-size: 2.2rem !important;
    }

    .compact-footer .footer-brand-section-expanded,
    .compact-footer .footer-section-combined,
    .compact-footer .footer-contact-section {
        min-height: auto;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .compact-section {
        padding: 2rem 0 !important;
    }

    .compact-hero .hero-section {
        padding: 4rem 0 2rem;
        min-height: 50vh;
    }

    .compact-text .hero-title {
        font-size: 2rem !important;
    }

    .compact-cards .product-card {
        padding: 1.5rem;
    }

    .compact-features .feature-item {
        padding: 1.5rem 1rem;
    }

    .compact-stats .stats-section {
        padding: 3rem 0;
    }

    .compact-footer .footer-top {
        padding: 2.5rem 0 1.5rem;
    }
}

@media (max-width: 576px) {
    .compact-section {
        padding: 1.5rem 0 !important;
    }

    .compact-hero .hero-section {
        padding: 3rem 0 1.5rem;
    }

    .compact-text .hero-title {
        font-size: 1.8rem !important;
    }

    .compact-cards .product-card {
        padding: 1.2rem;
    }

    .compact-features .feature-item {
        padding: 1.2rem 0.8rem;
    }

    .compact-stats .stat-item {
        padding: 1rem;
    }

    .compact-footer .footer-brand-section-expanded,
    .compact-footer .footer-section-combined,
    .compact-footer .footer-contact-section {
        padding: 1.2rem;
    }
}

/* Kompakt Animation Optimizations */
.compact-animations .element {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

.compact-animations .hero-icon {
    font-size: 10rem;
}

/* Kompakt Utility Classes */
.compact-space-sm {
    margin: 0.5rem !important;
}

.compact-space-md {
    margin: 1rem !important;
}

.compact-space-lg {
    margin: 1.5rem !important;
}

.compact-space-xl {
    margin: 2rem !important;
}

.compact-padding-sm {
    padding: 0.5rem !important;
}

.compact-padding-md {
    padding: 1rem !important;
}

.compact-padding-lg {
    padding: 1.5rem !important;
}

.compact-padding-xl {
    padding: 2rem !important;
}

/* Global Compact Mode */
.compact-mode {
    line-height: 1.4;
}

    .compact-mode .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .compact-mode section {
        padding: 2rem 0;
    }

        .compact-mode section.hero-section {
            padding: 4rem 0 2rem;
            min-height: 60vh;
        }

    .compact-mode .product-card,
    .compact-mode .feature-item {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .compact-mode .luxury-footer .footer-top {
        padding: 2.5rem 0 1.5rem;
    }

    .compact-mode .stats-section {
        padding: 3rem 0;
    }

/* ===== END COMPACT LAYOUT STYLES ===== */

/* Contact ikonları için modern efekt */
.contact-icon-expanded:hover,
.contact-icon-compact:hover,
.contact-icon:hover {
    animation: icon-elastic 0.7s ease;
}

/* Social media ikonları için modern hover */
.social-link:hover i {
    animation: icon-flip-3d 0.6s ease;
}

/* Card numaraları için modern hover efekti */
.card-number:hover {
    transform: scale(1.15);
    animation: icon-pulse-glow 0.5s ease;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.7);
}

/* Featured card için özel animasyon */
.featured-card:hover .card-number {
    animation: icon-morph 0.8s ease;
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.7);
}

/* Logo için modern hover animasyonu */
.luxury-brand:hover .brand-logo {
    animation: icon-bounce-modern 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: scale(1.1);
}

/* Footer logo için modern efekt */
.footer-logo-container:hover .footer-logo {
    animation: icon-elastic 0.7s ease;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

/* Trust indicators için modern animasyon */
.trust-indicators .col-md-4:hover i {
    animation: icon-flip-3d 0.6s ease;
    transform: scale(1.2);
}

/* Back to top button için modern efekt */
.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    animation: icon-pulse-glow 0.6s ease;
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.4);
}

/* Loading spinner için modern animasyon (mevcut spin'i değiştir) */
@keyframes modern-spin {
    0% {
        transform: rotate(0deg) scale(1);
        border-radius: 50%;
    }

    25% {
        transform: rotate(90deg) scale(1.05);
        border-radius: 30%;
    }

    50% {
        transform: rotate(180deg) scale(1);
        border-radius: 50%;
    }

    75% {
        transform: rotate(270deg) scale(1.05);
        border-radius: 30%;
    }

    100% {
        transform: rotate(360deg) scale(1);
        border-radius: 50%;
    }
}

.loading-spinner {
    animation: modern-spin 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

/* Performans optimizasyonu için will-change */
.product-icon,
.feature-icon,
.element,
.tech-icon,
.floating-icon,
.stat-icon,
.contact-icon,
.social-link i,
.card-number,
.brand-logo,
.footer-logo,
.loading-spinner {
    will-change: transform;
}

/* Animasyon tercihlerini azaltanlar için */
@media (prefers-reduced-motion: reduce) {
    .product-card:hover .product-icon,
    .feature-item:hover .feature-icon,
    .element:hover,
    .tech-icon:hover,
    .floating-icon:hover,
    .stat-icon:hover,
    .contact-icon:hover,
    .social-link:hover i,
    .card-number:hover,
    .luxury-brand:hover .brand-logo,
    .footer-logo-container:hover .footer-logo {
        animation: none;
        transition: transform 0.2s ease;
        transform: scale(1.1);
    }
}
