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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #495057;
    overflow-x: hidden;
    background-color: #FFFFFF;
}

/* Modern Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(33, 37, 41, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    animation: slideDown 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(33, 37, 41, 0.98);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #DC3545;
    font-weight: 600;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-brand:hover {
    transform: translateY(-1px);
    color: #C82333;
}

.navbar-logo {
    height: 100px;
    width: auto;
    filter: 
        brightness(0) invert(1)
        drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease;
    object-fit: contain;
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.02);
    filter: 
        brightness(0) invert(1)
        drop-shadow(0 4px 16px rgba(255, 255, 255, 0.4));
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.navbar-item {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-item:hover {
    transform: translateY(-1px);
}

.navbar-item:active {
    transform: translateY(0);
}

.navbar-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    border-radius: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: transparent;
    border: 1px solid transparent;
    letter-spacing: 0.3px;
}

.navbar-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: 12px;
    transform: scale(0.8);
}

.navbar-link:hover::before {
    opacity: 1;
    transform: scale(1);
}

.navbar-link:hover {
    color: white;
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.2);
    letter-spacing: 0.5px;
}

.navbar-link.active {
    color: #DC3545;
    background: rgba(220, 53, 69, 0.1);
    border-color: rgba(220, 53, 69, 0.3);
    font-weight: 600;
    position: relative;
}

.navbar-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 2px;
    background: #DC3545;
    border-radius: 1px;
    box-shadow: 0 0 8px rgba(220, 53, 69, 0.4);
}

.navbar-link.active:hover {
    color: white !important;
    background: rgba(220, 53, 69, 0.2);
    border-color: rgba(220, 53, 69, 0.4);
    transform: translateY(-1px);
}

.navbar-link.active:hover::after {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-primary {
    background: rgba(220, 53, 69, 0.9);
    color: white;
    border: 1px solid rgba(220, 53, 69, 0.3);
    padding: 0.6rem 1.2rem;
    border-radius: 15px;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    letter-spacing: 0.3px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: rgba(220, 53, 69, 1);
    border-color: rgba(220, 53, 69, 0.5);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.6rem 1.2rem;
    border-radius: 15px;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    letter-spacing: 0.3px;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-secondary:hover::before {
    left: 0;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    margin: 2px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

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

.mobile-menu ul {
    list-style: none;
    padding: 1.5rem;
}

.mobile-menu li {
    margin: 0.5rem 0;
}

.mobile-menu a {
    display: block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.mobile-menu a.active {
    color: #DC3545;
    background: rgba(220, 53, 69, 0.1);
    border-color: rgba(220, 53, 69, 0.3);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.2);
}

.mobile-menu-actions {
    margin-top: 1rem;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-btn-primary,
.mobile-btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.mobile-btn-primary {
    background: rgba(220, 53, 69, 0.9);
    color: white;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.25);
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.mobile-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.mobile-btn-primary:hover::before {
    left: 0;
}

.mobile-btn-primary:hover {
    transform: translateY(-2px);
    background: rgba(220, 53, 69, 1);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
    border-color: rgba(220, 53, 69, 0.5);
}

.mobile-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mobile-btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.mobile-btn-secondary:hover::before {
    left: 0;
}

.mobile-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.1);
}

/* Hero Section Slider */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* Modern Hero Content Styles */
.hero-content-modern {
    position: relative;
    z-index: 2;
    color: white;
    text-align: left;
    padding: 4rem 2rem;
    max-width: 600px;
    margin: 0;
    margin-left: 10%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

/* Content Badge - Daha minimal */
.content-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 0.85rem;
    animation: slideInDown 0.8s ease-out;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.content-badge i {
    color: #fff;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Hero Title - Daha minimal ve modern */
.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin: 0;
}

.title-line {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out;
    position: relative;
    letter-spacing: -0.02em;
}

.title-line.highlight {
    font-weight: 700;
    color: #DC3545;
    text-shadow: 0 2px 10px rgba(220, 53, 69, 0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.title-line::after {
    display: none;
}

/* Hero Features - Kaldırıldı, daha minimal */
.hero-features {
    display: none;
}

.feature-item {
    display: none;
}

.feature-item:hover {
    display: none;
}

.feature-item i {
    display: none;
}

.feature-item span {
    display: none;
}

/* Hero CTA - Daha minimal */
.hero-cta {
    animation: fadeInUp 1s ease-out 0.6s both;
    margin-top: 1rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    color: white;
    text-decoration: none;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-button i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.cta-button:hover i {
    transform: translateX(3px);
}

/* Legacy hero-content styles for backward compatibility */
.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 0 2rem;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s both;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 3;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-dot.active {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.2);
}

/* Copyright Text Styles */
.copyright-text {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 8px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.copyright-text:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

.copyright-main span {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    display: block;
}

.copyright-credit span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    display: block;
}

.copyright-credit i {
    color: #DC3545;
    margin-left: 4px;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}


/* Responsive adjustments for slider */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    /* Modern hero content responsive */
    .hero-content-modern {
        padding: 2rem 1.5rem;
        margin-left: 5%;
        max-width: 500px;
        text-align: left;
    }
    
    .content-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .title-line {
        font-size: 2.5rem;
    }
    
    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Copyright Text Mobile Styles */
    .copyright-text {
        bottom: 15px;
        left: 15px;
        padding: 8px 16px;
        gap: 3px;
    }
    
    .copyright-main span {
        font-size: 0.8rem;
    }
    
    .copyright-credit span {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .hero-content-modern {
        padding: 1.5rem 1rem;
        margin-left: 3%;
        max-width: 400px;
    }
    
    .title-line {
        font-size: 2rem;
    }
    
    .content-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px) translateZ(0);
    }
    to {
        opacity: 1;
        transform: translateY(0) translateZ(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px) translateZ(0);
    }
    to {
        opacity: 1;
        transform: translateY(0) translateZ(0);
    }
}

@keyframes expandLine {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes activeGlow {
    0% {
        box-shadow: 0 6px 20px rgba(220, 53, 69, 0.2), 0 0 20px rgba(220, 53, 69, 0.1);
    }
    100% {
        box-shadow: 0 6px 20px rgba(220, 53, 69, 0.2), 0 0 30px rgba(220, 53, 69, 0.15);
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

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

    .navbar-actions {
        display: none;
    }

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

    .navbar-container {
        padding: 0 1rem;
    }

    .navbar-logo {
        height: 55px;
        filter: 
            brightness(0) invert(1)
            drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
    }
}

/* Tablet & Small Laptop (769px - 1210px) */
@media (max-width: 1210px) and (min-width: 769px) {
    .navbar-container {
        padding: 0 1.2rem;
    }
    .navbar-menu {
        gap: 1.2rem;
    }
    .navbar-link {
        font-size: 0.92rem;
        padding: 0.6rem 0.8rem;
    }
    .navbar-actions .btn-primary,
    .navbar-actions .btn-secondary {
        padding: 0.6rem 1.1rem;
        font-size: 0.88rem;
    }
}

/* iPad Air Specific (820px width) */
@media (min-width: 820px) and (max-width: 834px) {
    .navbar-menu {
        display: none;
    }

    .navbar-actions {
        display: none;
    }

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

    .navbar-container {
        padding: 0 1rem;
    }

    .navbar-logo {
        height: 60px;
        filter: 
            brightness(0) invert(1)
            drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
    }
}

/* iPad Air Landscape (1180px width) */
@media (min-width: 1180px) and (max-width: 1194px) {
    .navbar-menu {
        display: none;
    }

    .navbar-actions {
        display: none;
    }

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

    .navbar-container {
        padding: 0 1.5rem;
    }

    .navbar-logo {
        height: 65px;
        filter: 
            brightness(0) invert(1)
            drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
    }
}

/* Corporate Section Styles */
.corporate-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    padding: 120px 0 80px 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.corporate-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(220, 53, 69, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(220, 53, 69, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(220, 53, 69, 0.01) 0%, transparent 50%);
    pointer-events: none;
}

.corporate-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.corporate-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.corporate-text {
    padding-right: 2rem;
}

.corporate-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 2rem;
    position: relative;
    line-height: 1.2;
    background: linear-gradient(135deg, #DC3545, #C82333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.corporate-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #DC3545, #C82333);
    border-radius: 2px;
}

.corporate-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 2rem;
}

.corporate-description p {
    margin-bottom: 1.5rem;
    text-align: justify;
}



.corporate-description strong {
    color: #DC3545;
    font-weight: 700;
    background: linear-gradient(135deg, #DC3545, #C82333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.corporate-image {
    position: relative;
}

.corporate-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 25px rgba(220, 53, 69, 0.1);
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.corporate-img:hover {
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.18),
        0 10px 30px rgba(220, 53, 69, 0.12);
}

/* Slideshow Styles */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 25px rgba(220, 53, 69, 0.1);
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    object-fit: cover;
    border-radius: 17px;
}

.slide.active {
    opacity: 1;
}

/* Responsive Design for Corporate Section */
@media (max-width: 1024px) {
    .corporate-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .corporate-text {
        padding-right: 0;
        order: 2;
    }
    
    .corporate-image {
        order: 1;
    }
    
    .corporate-title {
        font-size: 3rem;
    }
    
    .corporate-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .corporate-section {
        padding: 100px 0 60px 0;
    }
    
    .corporate-container {
        padding: 0 1.5rem;
    }
    
    .corporate-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .corporate-description {
        font-size: 1rem;
    }
    
    .corporate-img {
        height: 350px;
    }
    
    .slideshow-container {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .corporate-section {
        padding: 80px 0 40px 0;
    }
    
    .corporate-container {
        padding: 0 1rem;
    }
    
    .corporate-title {
        font-size: 2rem;
    }
    
    .corporate-description {
        font-size: 0.95rem;
    }
    
    .corporate-img {
        height: 250px;
    }
    
    .slideshow-container {
        height: 250px;
    }
}

/* E-Katalog Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 1200px;
    height: 85%;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.active .modal-container {
    transform: translate(-50%, -50%) scale(1);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #DC3545 0%, #C82333 100%);
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-header h3::before {
    content: '\f1c1';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.2rem;
}

.modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.modal-body {
    height: calc(100% - 80px);
    display: flex;
    flex-direction: column;
}

.pdf-container {
    flex: 1;
    position: relative;
    background: #f8f9fa;
}

.pdf-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: white;
}

.pdf-actions {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    justify-content: center;
}

.btn-download,
.btn-view {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-download {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.btn-view {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
}

.btn-view:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

/* Mobile Responsive Modal */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        height: 90%;
        border-radius: 15px;
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-header h3 {
        font-size: 1.2rem;
    }
    
    .modal-close {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .pdf-actions {
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-download,
    .btn-view {
        justify-content: center;
        padding: 0.875rem 1rem;
    }
}

@media (max-width: 480px) {
    .modal-container {
        width: 98%;
        height: 95%;
        border-radius: 12px;
    }
    
    .modal-header {
        padding: 0.875rem 1rem;
    }
    
    .modal-header h3 {
        font-size: 1.1rem;
    }
    
    .pdf-actions {
        padding: 0.875rem 1rem;
    }
}