/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Performance optimizations */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    will-change: transform;
}

/* Reduce animations on mobile for better performance */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

:root {
    --primary-color: #000000;
    --primary-dark: #1a1a1a;
    --primary-light: #333333;
    --secondary-color: #2d2d2d;
    --text-dark: #000000;
    --text-light: #666666;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --gradient-red: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Gotham', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Performance: Reduce repaints */
* {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

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

/* ============================================
   HEADER
   ============================================ */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.sticky {
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 160px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: flex-end;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 15px;
    font-family: 'Gotham', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s ease;
    letter-spacing: 0.3px;
}

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

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient-red);
    color: white;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--primary-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 700;
    letter-spacing: 0.3px;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
    touch-action: manipulation;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: auto;
}

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

.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);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding: 1rem 0 6rem;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.hero-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
    gap: 3rem;
    padding-top: 0.5rem;
}

.hero-logo {
    flex-shrink: 0;
}

.hero-logo img {
    height: 160px;
    width: auto;
    transition: transform 0.3s ease;
}

.hero-logo img:hover {
    transform: scale(1.05);
}

.hero-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.hero-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    font-family: 'Gotham', 'Montserrat', sans-serif;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

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

/* Dropdown Menu */
.hero-menu .menu-dropdown {
    position: relative;
}

.hero-menu .menu-dropdown > span {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 15px;
    font-family: 'Gotham', 'Montserrat', sans-serif;
    cursor: default;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    pointer-events: none;
}

.hero-menu .menu-dropdown > span::after {
    content: '▼';
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.hero-menu .menu-dropdown:hover > span::after {
    transform: rotate(180deg);
}

.hero-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 180px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0.5rem;
}

.hero-menu .menu-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hero-menu .dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border-bottom: none;
    width: auto;
}

.hero-menu .dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 2rem;
}

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

.hero-menu .btn {
    margin-left: 1rem;
}

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

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

.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);
}

@media (max-width: 968px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 4rem 2rem 2rem;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        gap: 1.5rem;
    }
    
    .hero-menu.active {
        right: 0;
    }
    
    .hero-menu a {
        width: 100%;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .hero-menu .menu-dropdown {
        width: 100%;
    }
    
    .hero-menu .menu-dropdown > span {
        width: 100%;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .hero-menu .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
        background: transparent;
        display: none;
    }
    
    .hero-menu .menu-dropdown:hover .dropdown-menu,
    .hero-menu .menu-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .hero-menu .dropdown-menu a {
        padding: 0.5rem 0 0.5rem 1.5rem;
        border-bottom: 1px solid var(--border-color);
    }
    
    .hero-menu .btn {
        width: 100%;
        margin-left: 0;
        margin-top: 1rem;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: center;
}

#heroText {
    animation-delay: 0.2s;
}

#heroImage {
    animation-delay: 0.5s;
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    #heroText {
        order: 1;
    }
    
    #heroImage {
        order: 2;
    }
}

.hero-text {
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
    cursor: default;
}

.hero-title .letter {
    display: inline-block;
    transition: color 0.2s ease;
    color: var(--text-dark);
}

.hero-title:hover .letter {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.hero-description {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    z-index: 1;
    margin-top: 3rem;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.device-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    opacity: 0;
    transform: translateY(80px);
    animation: slideUpFade 1s ease-out 0.3s forwards;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(80px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.device-img {
    max-width: 120%;
    width: 120%;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.25));
    transition: transform 0.3s ease;
}

.device-img:hover {
    transform: translateY(-10px);
}

.hero-bg-shape {
    position: absolute;
    width: 800px;
    height: 800px;
    background: var(--gradient-red);
    border-radius: 50% 40% 60% 30%;
    opacity: 0.2;
    bottom: -200px;
    right: -300px;
    z-index: 0;
    filter: blur(120px);
    animation: floatShape 10s ease-in-out infinite;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        border-radius: 50% 40% 60% 30%;
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
        border-radius: 40% 50% 30% 60%;
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
        border-radius: 60% 30% 50% 40%;
    }
}

/* ============================================
   WHO FOR & ABOUT SECTION
   ============================================ */
.who-for {
    padding: 6rem 0;
    background: var(--bg-light);
    position: relative;
}

.who-for-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header-left {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'Gotham', 'Montserrat', sans-serif;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 400;
    font-family: 'Gotham', 'Montserrat', sans-serif;
}

/* Sol Taraf: Kimler İçin */
.who-for-left {
    position: relative;
}

.who-for-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.who-for-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.6s ease-out forwards;
}

.who-for-item:nth-child(1) {
    animation-delay: 0.1s;
}

.who-for-item:nth-child(2) {
    animation-delay: 0.2s;
}

.who-for-item:nth-child(3) {
    animation-delay: 0.3s;
}

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

.who-for-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.item-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    opacity: 0;
    animation: fadeInScale 0.6s ease-out forwards;
}

.item-image img:nth-child(1) {
    animation-delay: 0.2s;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.who-for-item:hover .item-image img {
    transform: scale(1.05);
}

.item-content {
    flex: 1;
}

.item-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.item-text {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Sağ Taraf: Hakkımızda */
.about-right {
    position: sticky;
    top: 100px;
    background: var(--gradient-red);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.3);
    color: white;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.about-text {
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* ============================================
   PARTNERS SECTION
   ============================================ */
.partners {
    padding: 6rem 0;
    background: var(--bg-light);
}

.partners .section-header {
    margin-bottom: 4rem;
}

.partners .section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 4rem;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
    padding: 2rem 0;
}

.partner-logo {
    flex: 0 0 auto;
}

.partner-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.partner-logo img,
.partner-logo-img {
    max-height: 200px;
    max-width: 350px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
    padding: 1rem;
}

.partner-logo:nth-child(1) img { animation-delay: 0.1s; }
.partner-logo:nth-child(2) img { animation-delay: 0.2s; }
.partner-logo:nth-child(3) img { animation-delay: 0.3s; }
.partner-logo:nth-child(4) img { animation-delay: 0.4s; }
.partner-logo:nth-child(5) img { animation-delay: 0.5s; }
.partner-logo:nth-child(6) img { animation-delay: 0.6s; }

.partner-logo-link:hover .partner-logo-img,
.partner-logo:hover img {
    transform: scale(1.15);
    filter: grayscale(0%);
    opacity: 1;
}

.partners-logos:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    padding: 6rem 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

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

.features-text {
    z-index: 2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.features-list {
    list-style: none;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.features-image {
    position: relative;
    z-index: 1;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-stack {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
    width: 100%;
    z-index: 2;
}

.stack-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.stack-mobile {
    width: 450px;
    max-width: 90%;
    height: auto;
    opacity: 0;
    transform: translateY(60px) scale(0.9);
    animation: slideUpScale 1s ease-out 0.5s forwards;
}

@keyframes slideUpScale {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    padding: 6rem 0;
    background: var(--bg-light);
}

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

.faq-left {
    z-index: 2;
}

.faq-right {
    position: relative;
    z-index: 1;
}

.faq-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 0.8s ease-out 0.3s forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.faq-list {
    max-width: 100%;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
    touch-action: manipulation;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 10;
    position: relative;
    pointer-events: auto;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   NEWSLETTER SECTION (MINIMAL)
   ============================================ */
.newsletter {
    padding: 4rem 0;
    background: var(--bg-light);
    position: relative;
}

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

.newsletter-title-minimal {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.newsletter-form-minimal {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form-minimal input[type="email"] {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Gotham', 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
}

.newsletter-form-minimal input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-form-minimal .btn {
    padding: 1rem 2rem;
    white-space: nowrap;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.form-group input[type="text"],
.form-group input[type="email"] {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-group label {
    color: var(--text-light);
    font-size: 0.95rem;
    cursor: pointer;
}

.newsletter-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.05) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.05) 75%);
    background-size: 30px 30px;
    background-position: 0 0, 0 15px, 15px -15px, -15px 0px;
    opacity: 0.3;
    z-index: 1;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--gradient-red);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-logo img {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

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

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

.footer-contact {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

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

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

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page {
    padding: 1rem 0 6rem;
    background: var(--bg-light);
    min-height: 80vh;
}

.contact-page .hero-header {
    padding-top: 0.5rem;
}

.contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'Gotham', 'Montserrat', sans-serif;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    font-family: 'Gotham', 'Montserrat', sans-serif;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

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

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-family: 'Gotham', 'Montserrat', sans-serif;
}

.contact-card p {
    color: var(--text-light);
    font-family: 'Gotham', 'Montserrat', sans-serif;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-social {
    background: var(--gradient-red);
    padding: 2rem;
    border-radius: 16px;
    color: white;
}

.contact-social h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    font-family: 'Gotham', 'Montserrat', sans-serif;
}

.contact-social .social-links {
    margin-top: 1rem;
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

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

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-form label {
    font-weight: 600;
    color: var(--text-dark);
    font-family: 'Gotham', 'Montserrat', sans-serif;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Gotham', 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-page {
    padding: 1rem 0 6rem;
    background: var(--bg-light);
    min-height: 80vh;
}

.about-page .hero-header {
    padding-top: 0.5rem;
}

/* Pioneering Minds Section */
.pioneering-section {
    margin: 4rem 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.pioneering-title {
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.2;
}

.title-line-red {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: 'Gotham', 'Montserrat', sans-serif;
    margin-bottom: 0.5rem;
}

.title-line-black {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    font-family: 'Gotham', 'Montserrat', sans-serif;
}

/* Compact Team Grid - Görseldeki gibi küçük kartlar */
.team-grid-compact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.team-card-compact {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    grid-column: span 1;
}

.team-card-compact:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.team-card-light .team-info-box-compact {
    background: #f5f5f5;
}

.team-card-dark .team-info-box-compact {
    background: #2d2d2d;
}


.team-photo-wrapper-compact {
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 3;
    max-height: 400px;
    overflow: hidden;
    background: var(--bg-light);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.team-photo-compact {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.3s ease;
}

.team-card-compact:hover .team-photo-compact {
    transform: scale(1.05);
}

.team-info-box-compact {
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 85px;
}

.team-name-compact {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Gotham', 'Montserrat', sans-serif;
    margin: 0;
}

.team-card-dark .team-name-compact {
    color: white;
}

.team-role-compact {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    font-family: 'Gotham', 'Montserrat', sans-serif;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.team-card-dark .team-role-compact {
    color: white;
}

.arrow-compact {
    font-size: 1rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    display: inline-block;
}

.team-card-compact:hover .arrow-compact {
    transform: translateX(3px);
}

.team-bio-compact {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
    background: white;
}

.team-bio-compact.active {
    max-height: 2000px;
    padding: 1.5rem;
}

.team-bio-compact p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-family: 'Gotham', 'Montserrat', sans-serif;
    margin-bottom: 1rem;
}

.team-bio-compact p:last-child {
    margin-bottom: 0;
}

/* Team Modal Styles */
.team-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow-y: auto;
}

.team-modal-content {
    background: white;
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.team-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-light);
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
    line-height: 1;
}

.team-modal-close:hover {
    color: var(--text-dark);
}

.team-modal-body {
    padding: 2.5rem;
}

.team-modal-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.team-modal-photo {
    width: 150px;
    height: 200px;
    object-fit: cover;
    object-position: center top;
    border-radius: 12px;
    flex-shrink: 0;
}

.team-modal-info h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Gotham', 'Montserrat', sans-serif;
    margin: 0 0 0.5rem 0;
}

.team-modal-role {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'Gotham', 'Montserrat', sans-serif;
    margin: 0;
}

.team-modal-bio {
    margin-bottom: 2rem;
}

.team-modal-bio p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-family: 'Gotham', 'Montserrat', sans-serif;
    margin-bottom: 1.5rem;
}

.team-modal-bio p:last-child {
    margin-bottom: 0;
}

.team-modal-social {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.team-modal-social h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Gotham', 'Montserrat', sans-serif;
    margin: 0 0 1.5rem 0;
}

.team-social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.team-social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-family: 'Gotham', 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.team-social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.team-social-link svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .team-modal-content {
        margin: 1rem;
        max-height: 95vh;
    }

    .team-modal-body {
        padding: 1.5rem;
    }

    .team-modal-header {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .team-modal-photo {
        width: 120px;
        height: 160px;
        margin: 0 auto;
    }

    .team-modal-info h2 {
        font-size: 1.5rem;
    }
}

/* Eski stiller (geriye dönük uyumluluk için) */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.team-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.team-card-light .team-info-box {
    background: #f5f5f5;
}

.team-card-dark .team-info-box {
    background: #2d2d2d;
}

.team-photo-wrapper {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: var(--bg-light);
    position: relative;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-photo {
    transform: scale(1.05);
}

.team-info-box {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Gotham', 'Montserrat', sans-serif;
    margin: 0;
}

.team-card-dark .team-name {
    color: white;
}

.team-role {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    font-family: 'Gotham', 'Montserrat', sans-serif;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.team-card-dark .team-role {
    color: white;
}

.arrow {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.team-card:hover .arrow {
    transform: translateX(5px);
}

.team-bio {
    padding: 2rem;
    background: white;
}

.team-bio p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    font-family: 'Gotham', 'Montserrat', sans-serif;
    margin-bottom: 1.5rem;
}

.team-bio p:last-child {
    margin-bottom: 0;
}

@media (max-width: 968px) {
    .pioneering-section {
        margin: 2rem 0;
        padding: 0 1rem;
    }
    
    .pioneering-title {
        margin-bottom: 2rem;
    }
    
    .title-line-red,
    .title-line-black {
        font-size: 1.75rem;
    }
    
    .team-grid-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .team-card-compact {
        grid-column: span 1;
    }
    
    .team-photo-wrapper-compact {
        aspect-ratio: 2 / 3;
        max-height: 350px;
        height: auto;
    }
    
    .team-info-box-compact {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1.25rem 1.5rem;
        min-height: auto;
    }
    
    .team-name-compact {
        font-size: 1.1rem;
    }
    
    .team-role-compact {
        font-size: 0.85rem;
    }
    
    .team-bio-compact.active {
        padding: 1rem;
    }
    
    .team-bio-compact p {
        font-size: 0.9rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-photo-wrapper {
        height: 300px;
    }
    
    .team-info-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1rem 1.5rem;
    }
    
    .team-name {
        font-size: 1.25rem;
    }
    
    .team-role {
        font-size: 0.9rem;
    }
    
    .team-bio {
        padding: 1.5rem;
    }
    
    .team-bio p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .title-line-red,
    .title-line-black {
        font-size: 1.5rem;
    }
    
    .team-grid-compact {
        grid-template-columns: 1fr;
    }
    
    .team-card-compact {
        grid-column: span 1;
    }
    
    .team-photo-wrapper-compact {
        aspect-ratio: 2 / 3;
        max-height: 400px;
        height: auto;
    }
    
    .team-info-box-compact {
        padding: 1.25rem 1.5rem;
    }
    
    .team-name-compact {
        font-size: 1.2rem;
    }
    
    .team-role-compact {
        font-size: 0.9rem;
    }

    .team-photo-wrapper {
        height: 250px;
    }
}

.team-section {
    margin: 4rem 0;
}

.team-member {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.team-member:nth-child(1) {
    animation-delay: 0.1s;
}

.team-member:nth-child(2) {
    animation-delay: 0.3s;
}

.member-image {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-light);
}

.member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-photo {
    transform: scale(1.05);
}

.member-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.member-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-family: 'Gotham', 'Montserrat', sans-serif;
}

.member-role {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-family: 'Gotham', 'Montserrat', sans-serif;
}

.member-bio {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    font-family: 'Gotham', 'Montserrat', sans-serif;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 4rem 0;
}

.mv-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.mv-card:nth-child(1) {
    animation-delay: 0.2s;
}

.mv-card:nth-child(2) {
    animation-delay: 0.4s;
}

.mv-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-family: 'Gotham', 'Montserrat', sans-serif;
}

.mv-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    font-family: 'Gotham', 'Montserrat', sans-serif;
}

.values-section {
    margin: 4rem 0;
}

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

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }

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

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

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-family: 'Gotham', 'Montserrat', sans-serif;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    font-family: 'Gotham', 'Montserrat', sans-serif;
}

/* ============================================
   WEBINARS & BLOG PAGES
   ============================================ */
.webinars-page,
.blog-page {
    padding: 1rem 0 6rem;
    background: var(--bg-light);
    min-height: 80vh;
}

.webinars-page .hero-header,
.blog-page .hero-header {
    padding-top: 0.5rem;
}

/* Blog Layout */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    margin-top: 3rem;
}

.blog-main {
    min-width: 0;
}

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.blog-post-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    gap: 2rem;
    padding: 2rem;
}

.blog-post-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.blog-post-image {
    flex: 0 0 300px;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--gradient-red);
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-post-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 600;
    font-family: 'Gotham', 'Montserrat', sans-serif;
}

.blog-post-date {
    color: var(--text-light);
}

.blog-post-author {
    color: var(--primary-color);
}

.blog-post-category {
    color: var(--text-light);
}

.blog-post-category a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-post-category a:hover {
    color: var(--primary-dark);
}

.category-list a.active {
    color: var(--primary-color);
    font-weight: 700;
    padding-left: 0.5rem;
}

.blog-post-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'Gotham', 'Montserrat', sans-serif;
    line-height: 1.3;
}

.blog-post-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-title a:hover {
    color: var(--primary-color);
}

.blog-post-excerpt {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-family: 'Gotham', 'Montserrat', sans-serif;
}

.blog-post-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-family: 'Gotham', 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    margin-top: auto;
}

.blog-post-link:hover {
    color: var(--primary-dark);
    gap: 0.75rem;
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-family: 'Gotham', 'Montserrat', sans-serif;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

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

.category-list li {
    margin-bottom: 0.75rem;
}

.category-list a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-family: 'Gotham', 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.category-list a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.popular-post-item {
    display: flex;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.popular-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.popular-post-image {
    flex: 0 0 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--gradient-red);
}

.popular-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-post-content {
    flex: 1;
}

.popular-post-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-family: 'Gotham', 'Montserrat', sans-serif;
    line-height: 1.4;
}

.popular-post-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.popular-post-title a:hover {
    color: var(--primary-color);
}

.popular-post-date {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
    font-family: 'Gotham', 'Montserrat', sans-serif;
}

.widget-text {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-family: 'Gotham', 'Montserrat', sans-serif;
}

.sidebar-newsletter {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-newsletter input {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Gotham', 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
}

.sidebar-newsletter input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.sidebar-newsletter .btn {
    width: 100%;
}

/* Blog Detail Page */
.blog-detail-page {
    padding: 1rem 0 6rem;
    background: var(--bg-light);
    min-height: 80vh;
}

.blog-detail-container {
    max-width: 900px;
    margin: 3rem auto 0;
}

.blog-detail-article {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--shadow-sm);
}

.blog-detail-header {
    margin-bottom: 2rem;
}

.blog-back-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: 'Gotham', 'Montserrat', sans-serif;
    transition: color 0.3s ease;
}

.blog-back-link:hover {
    color: var(--primary-dark);
}

.blog-detail-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 600;
    font-family: 'Gotham', 'Montserrat', sans-serif;
}

.blog-detail-date {
    color: var(--text-light);
}

.blog-detail-author {
    color: var(--primary-color);
}

.blog-detail-category {
    color: var(--text-light);
}

.blog-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: 'Gotham', 'Montserrat', sans-serif;
}

.blog-detail-excerpt {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-family: 'Gotham', 'Montserrat', sans-serif;
}

.blog-detail-image {
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
}

.blog-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-detail-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-family: 'Gotham', 'Montserrat', sans-serif;
}

.blog-detail-content p {
    margin-bottom: 1.5rem;
}

.blog-detail-content h2,
.blog-detail-content h3,
.blog-detail-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Gotham', 'Montserrat', sans-serif;
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.blog-detail-content li {
    margin-bottom: 0.5rem;
}

.blog-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

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

.blog-detail-content code {
    background: var(--bg-light);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.blog-detail-content pre {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 2rem 0;
}

.blog-detail-content pre code {
    background: none;
    padding: 0;
}

.blog-detail-content a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.blog-detail-content a:hover {
    border-bottom-color: var(--primary-color);
}

.share-whatsapp {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

.share-whatsapp:hover {
    background: #20BA5A;
    border-color: #20BA5A;
    color: white;
}

.blog-detail-footer {
    border-top: 2px solid var(--border-color);
    padding-top: 2rem;
}

.blog-share h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'Gotham', 'Montserrat', sans-serif;
}

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

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: white;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Gotham', 'Montserrat', sans-serif;
}

.share-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.share-btn svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .blog-detail-article {
        padding: 2rem 1.5rem;
    }
    
    .blog-detail-title {
        font-size: 2rem;
    }
    
    .blog-detail-excerpt {
        font-size: 1.125rem;
    }
    
    .blog-detail-content {
        font-size: 1rem;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Blog Responsive */
@media (max-width: 968px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-sidebar {
        order: -1;
    }
    
    .blog-post-item {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .blog-post-image {
        flex: 1;
        width: 100%;
        height: 250px;
    }
}

.page-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

/* Popular Webinars Section */
.popular-webinars-section {
    margin-bottom: 4rem;
}

.all-webinars-section {
    margin-top: 4rem;
}

.section-header-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-title-inline {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Gotham', 'Montserrat', sans-serif;
    margin: 0;
}

.view-all-count {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
    font-family: 'Gotham', 'Montserrat', sans-serif;
}

/* Webinars Carousel */
.webinars-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1rem 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    position: relative;
}

.webinars-carousel::-webkit-scrollbar {
    display: none;
}

.webinar-card-carousel {
    flex: 0 0 380px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: white;
}

.carousel-prev {
    left: -25px;
}

.carousel-next {
    right: -25px;
}

.webinars-grid,
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.webinar-card,
.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.webinar-thumbnail {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--gradient-red);
}

.webinar-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.webinar-image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-red);
}

.webinar-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: 'Gotham', 'Montserrat', sans-serif;
}

.webinar-image,
.blog-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    background: var(--gradient-red);
}

.webinar-content,
.blog-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.webinar-categories {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Gotham', 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.webinar-presenter {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-family: 'Gotham', 'Montserrat', sans-serif;
}

.webinar-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
    font-family: 'Gotham', 'Montserrat', sans-serif;
}

.webinar-views {
    color: var(--text-light);
}

.webinar-card-carousel .webinar-content {
    padding: 1.25rem;
}

.webinar-card-carousel .webinar-thumbnail {
    height: 220px;
}

.webinar-date,
.blog-date {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-family: 'Gotham', 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.webinar-title,
.blog-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-family: 'Gotham', 'Montserrat', sans-serif;
    line-height: 1.4;
}

.webinar-description,
.blog-excerpt {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
    font-family: 'Gotham', 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
}

.webinar-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.webinar-link,
.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-family: 'Gotham', 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.webinar-link:hover,
.blog-link:hover {
    color: var(--primary-dark);
}

.webinar-links .btn {
    margin: 0;
    min-width: 180px;
    text-align: center;
    font-size: 0.95rem;
    padding: 0.875rem 1.5rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: white;
}

.webinar-links .btn-primary {
    background: var(--gradient-red);
    color: white;
    border: none;
}

.webinar-links .btn-primary:hover {
    background: var(--primary-dark);
    color: white;
}

.webinar-links .btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.webinar-links .btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

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

.webinar-links .btn-outline:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Webinar Modal */
.webinar-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

.webinar-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 0;
    position: relative;
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.3s ease;
}

.webinar-modal-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: var(--gradient-red);
    border-radius: 20px 20px 0 0;
}

.webinar-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.webinar-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 2rem;
    color: var(--text-dark);
    cursor: pointer;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-family: 'Gotham', 'Montserrat', sans-serif;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.webinar-modal-close:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

.webinar-modal-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'Gotham', 'Montserrat', sans-serif;
    line-height: 1.3;
    padding: 2rem 3rem 0;
}

.webinar-modal-meta {
    margin-bottom: 2rem;
    padding: 0 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.webinar-modal-date {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
    font-family: 'Gotham', 'Montserrat', sans-serif;
}

.webinar-modal-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-family: 'Gotham', 'Montserrat', sans-serif;
    white-space: pre-wrap;
    padding: 0 3rem;
    margin-bottom: 2rem;
}

.webinar-modal-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0 3rem 3rem;
    margin-top: 2rem;
}

.webinar-modal-links .btn {
    flex: 1;
    min-width: 200px;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: white;
}

.webinar-modal-links .btn-primary {
    background: var(--gradient-red);
    color: white;
    border: none;
}

.webinar-modal-links .btn-primary:hover {
    background: var(--primary-dark);
    color: white;
}

.webinar-modal-links .btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.webinar-modal-links .btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .webinar-modal-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .webinar-modal-title {
        font-size: 1.5rem;
        padding-right: 2rem;
    }
    
    .webinar-modal-description {
        font-size: 1rem;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 968px) {
    .hero-content,
    .features-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-image,
    .features-image {
        order: -1;
    }

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .who-for-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-right {
        position: relative;
        top: 0;
        order: -1;
    }

    .item-image {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

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

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

    .btn-header {
        display: none;
    }

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

    .hero {
        padding: 4rem 0;
    }

    .hero-image {
        margin-top: 2rem;
        min-height: 350px;
    }

    .device-img {
        max-width: 100%;
        width: 100%;
    }

    .hero-bg-shape {
        width: 500px;
        height: 500px;
        bottom: -100px;
        right: -150px;
    }

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

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

    .hero-description {
        font-size: 0.9rem;
    }

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

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

    .who-for,
    .features,
    .faq {
        padding: 4rem 0;
    }

    .who-for-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .faq-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .faq-image {
        order: -1;
    }

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

    .newsletter-form-minimal .btn {
        width: 100%;
    }

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

    .webinars-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .about-right {
        position: relative;
        top: 0;
        padding: 2rem;
    }

    .team-member {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem;
    }

    .member-image {
        height: 300px;
        margin-bottom: 2rem;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

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

    .about-title {
        font-size: 1.75rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .who-for-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .item-image {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }

    .item-title {
        font-size: 1.1rem;
    }

    .item-text {
        font-size: 0.9rem;
    }

    .who-for-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .who-for-card {
        padding: 2rem;
    }

    .card-devices {
        height: 250px;
    }

    .device-laptop {
        max-height: 200px;
    }

    .device-mobile {
        max-height: 150px;
    }

    .features-image {
        min-height: 400px;
    }

    .device-stack {
        height: 400px;
    }

    .stack-mobile {
        width: 300px;
        max-width: 85%;
    }

    .partners .section-title {
        font-size: 2rem;
    }

    .partners-logos {
        gap: 2rem;
        padding: 1rem 0;
    }

    .partner-logo img,
    .partner-logo-img {
        max-height: 120px;
        max-width: 200px;
    }

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

    .newsletter-form {
        padding: 2rem 1.5rem;
    }
}

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

    .section-title {
        font-size: 1.75rem;
    }

    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

