/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Top Navigation Bar */
.top-navbar {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 8px 0;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1001;
}

.top-navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-nav-left {
    display: flex;
    align-items: center;
}

.top-nav-email {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: color 0.2s;
}

.top-nav-email:hover {
    color: #1976d2;
}

.top-nav-email i {
    font-size: 14px;
}

.top-nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: color 0.2s;
}

.top-nav-phone:hover {
    color: #1976d2;
}

.top-nav-phone i {
    font-size: 14px;
}

.top-nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-nav-link {
    text-decoration: none;
    color: #333;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.top-nav-link:hover {
    color: #1976d2;
}

.top-nav-link i {
    font-size: 10px;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background-color: #fff;
    min-width: 180px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    margin-top: 8px;
    border-radius: 4px;
    padding: 8px 0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #333;
    font-size: 13px;
    transition: background-color 0.2s;
}

.dropdown-content a:hover {
    background-color: #f5f5f5;
    color: #1976d2;
}

/* Main Navigation Bar */
.main-navbar {
    background-color: #fff;
    padding: 12px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 33px;
    z-index: 1000;
}

.main-navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text-main {
    font-size: 24px;
    font-weight: 700;
    color: #d32f2f;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    justify-content: center;
    margin: 0 40px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
    white-space: nowrap;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: #1976d2;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #1976d2;
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mega Menu */
.mega-menu-wrapper {
    position: relative;
}

.mega-menu {
    display: none;
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    width: 100vw;
    overflow: hidden;
}

.mega-menu.active {
    display: block;
}

.mega-menu-container {
    display: flex;
    min-height: 500px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.mega-menu-left {
    flex: 1;
    padding: 40px 30px;
    background-color: #fff;
    overflow-y: auto;
    max-height: 600px;
}

.mega-menu-header {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #1976d2;
}

.mega-menu-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.mega-menu-section {
    margin-bottom: 0;
}

.mega-menu-main-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.mega-menu-learn-link {
    display: inline-block;
    color: #1976d2;
    text-decoration: none;
    font-size: 14px;
    margin-top: 8px;
    transition: color 0.2s;
}

.mega-menu-learn-link:hover {
    color: #1565c0;
    text-decoration: underline;
}

.mega-menu-category {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.mega-menu-section-desc {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 12px;
}

.mega-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-links li {
    margin-bottom: 8px;
}

.mega-menu-links a {
    color: #1976d2;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid transparent;
    background-color: transparent;
}

.mega-menu-links a:hover,
.mega-menu-links a:focus {
    background-color: #f0f7ff;
    border-color: #1976d2;
    color: #1565c0;
    box-shadow: 0 2px 8px rgba(25, 116, 210, 0.15);
}

.mega-menu-right {
    width: 350px;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    margin-right: 40px;
}

.mega-menu-image {
    flex: 1;
    overflow: hidden;
    background-color: #e0e0e0;
}

.mega-menu-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mega-menu-promo {
    background-color: #fff;
    padding: 25px;
    border-top: 3px solid #1976d2;
}

.mega-menu-promo-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.mega-menu-promo-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Mega Menu Hover Effect on Nav Link */
.mega-menu-wrapper .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.mega-menu-wrapper .nav-link i {
    font-size: 10px;
    transition: transform 0.2s;
}

.mega-menu-wrapper .nav-link.active i {
    transform: rotate(180deg);
}

.mega-menu-wrapper:hover .nav-link {
    color: #1976d2;
}

.mega-menu-wrapper .nav-link.active,
.mega-menu.active ~ .mega-menu-wrapper .nav-link {
    color: #1976d2;
}

.mega-menu-wrapper .nav-link.active::after,
.mega-menu.active ~ .mega-menu-wrapper .nav-link::after {
    width: 100%;
}

/* Solutions & Industries mega menu (2 sections) */
.solutions-mega-container {
    display: flex;
    min-height: 320px;
    width: 100%;
    padding: 0;
}

.solutions-mega-container .solutions-mega-right {
    margin-left: auto;
    margin-right: 0;
}

.solutions-industries-section {
    flex: 1;
    padding: 40px 36px;
    background-color: #fff;
}

.solutions-industries-section:first-child {
    border-right: 1px solid #e8e8e8;
}

.solutions-sector-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.solutions-sector-subtitle {
    font-size: 15px;
    font-weight: 600;
    font-style: italic;
    color: #1976d2;
    margin-bottom: 12px;
}

.solutions-sector-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.solutions-our-solutions {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.solutions-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solutions-links li {
    margin-bottom: 8px;
}

.solutions-links a {
    color: #1976d2;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid transparent;
    background-color: transparent;
}

.solutions-links a:hover,
.solutions-links a:focus {
    background-color: #f0f7ff;
    border-color: #1976d2;
    color: #1565c0;
    box-shadow: 0 2px 8px rgba(25, 116, 210, 0.15);
}

/* Products mega menu (2 product sections) */
.products-mega-container {
    display: flex;
    min-height: 380px;
    width: 100%;
    padding: 0;
}

.products-mega-container .products-mega-right {
    margin-left: auto;
    margin-right: 0;
}

.product-section {
    flex: 1;
    padding: 40px 36px;
    background-color: #fff;
}

.product-section:first-child {
    border-right: 1px solid #e8e8e8;
}

.product-brand {
    font-weight: 700;
    color: #1565c0;
}

.product-brand-muted {
    font-weight: 500;
    font-size: 0.88em;
    color: #555;
}

.product-main-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.product-menu-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-menu-links a {
    display: block;
    font-size: 14px;
    color: #1976d2;
    line-height: 1.5;
    padding: 10px 14px;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid transparent;
    background-color: transparent;
    transition: all 0.2s ease;
}

.product-menu-links a:hover,
.product-menu-links a:focus {
    background-color: #f0f7ff;
    border-color: #1976d2;
    color: #1565c0;
    box-shadow: 0 2px 8px rgba(25, 116, 210, 0.15);
}

/* Main Navbar Support Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown .nav-link i {
    font-size: 10px;
    transition: transform 0.2s;
}

.nav-dropdown.open .nav-link i {
    transform: rotate(180deg);
}

.nav-dropdown.open .nav-link {
    color: #1976d2;
}

.nav-dropdown.open .nav-link::after {
    width: 100%;
}

.nav-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    margin-top: 12px;
    border-radius: 4px;
    padding: 8px 0;
}

.nav-dropdown.open .nav-dropdown-content {
    display: block;
}

.nav-dropdown-content a {
    display: block;
    padding: 10px 16px;
    margin: 0 8px 6px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: all 0.2s ease;
    border-radius: 6px;
    border: 1px solid transparent;
    background-color: transparent;
}

.nav-dropdown-content a:hover,
.nav-dropdown-content a:focus {
    background-color: #f0f7ff;
    border-color: #1976d2;
    color: #1565c0;
    box-shadow: 0 2px 8px rgba(25, 116, 210, 0.15);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

a.button-10 {
    text-decoration: none;
}

.button-10 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
    border-radius: 6px;
    border: none;
    color: #fff;
    background: #1974d0;
    background-origin: border-box;
    box-shadow: 0px 0.5px 1.5px rgba(25, 116, 208, 0.25), inset 0px 0.8px 0px -0.25px rgba(255, 255, 255, 0.2);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    cursor: pointer;
    white-space: nowrap;
}

.button-10:focus {
    box-shadow: inset 0px 0.8px 0px -0.25px rgba(255, 255, 255, 0.2), 0px 0.5px 1.5px rgba(25, 116, 208, 0.25), 0px 0px 0px 3.5px rgba(25, 116, 208, 0.5);
    outline: 0;
}

/* Mobile menu toggle (hidden on desktop) */
.mobile-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-right: 8px;
    padding: 0;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    color: #333;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    flex-shrink: 0;
}

.mobile-nav-toggle:hover {
    background: #f5f5f5;
    border-color: #1976d2;
    color: #1976d2;
}

.mobile-nav-toggle i {
    font-size: 18px;
}

.mobile-nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1998;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.main-navbar.mobile-menu-open .mobile-nav-backdrop {
    display: block;
    opacity: 1;
}

body.mobile-nav-open {
    overflow: hidden;
}

/* Contact CTA cloned into mobile drawer (injected by main.js); hidden on desktop */
.mobile-nav-footer {
    display: none;
}

.mobile-nav-contact-btn {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-center {
        gap: 20px;
        margin: 0 20px;
    }
    
    .nav-link {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .top-nav-right {
        gap: 15px;
    }
    
    .top-nav-link {
        font-size: 12px;
    }
    
    .nav-center {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 13px;
    }
}

@media (max-width: 992px) {
    .mega-menu {
        width: 100vw;
        left: 0;
        right: 0;
    }
    
    .mega-menu-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .mega-menu-right {
        width: 280px;
        margin-right: 20px;
    }
    
    .mega-menu-left {
        padding: 30px 20px;
    }
    
    .solutions-mega-container {
        flex-direction: column;
        min-height: auto;
    }
    
    .solutions-mega-container .solutions-mega-right {
        margin-left: 0;
    }
    
    .solutions-industries-section {
        padding: 30px 24px;
    }
    
    .solutions-industries-section:first-child {
        border-right: none;
        border-bottom: 1px solid #e8e8e8;
    }
    
    .products-mega-container {
        flex-direction: column;
        min-height: auto;
    }
    
    .product-section {
        padding: 30px 24px;
    }
    
    .product-section:first-child {
        border-right: none;
        border-bottom: 1px solid #e8e8e8;
    }
}

@media (max-width: 768px) {
    .top-navbar {
        display: none;
    }

    .main-navbar {
        top: 0;
    }
    
    .mobile-nav-toggle {
        display: flex;
        order: 2;
        margin-left: auto;
        margin-right: 0;
    }

    .main-navbar .container {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 0;
        position: relative;
    }

    .main-navbar .nav-left {
        order: 1;
    }

    .main-navbar .nav-right {
        display: none;
    }
    
    .nav-center {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        width: min(100%, 380px);
        height: 100vh;
        height: 100dvh;
        margin: 0;
        padding: 64px 16px 16px;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        background: #fff;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
        z-index: 1999;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .main-navbar.mobile-menu-open .nav-center {
        transform: translateX(0);
    }

    .main-navbar.mobile-menu-open .mobile-nav-toggle {
        position: relative;
        z-index: 2002;
    }

    .mobile-nav-footer {
        display: block;
        margin-top: auto;
        padding-top: 20px;
        padding-bottom: max(12px, env(safe-area-inset-bottom, 0px));
        border-top: 1px solid #e8e8e8;
        flex-shrink: 0;
        background: #fff;
    }
    
    .logo {
        height: 35px;
    }
    
    .logo-text-main {
        font-size: 20px;
    }

    .mega-menu-wrapper {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .mega-menu-wrapper .nav-link {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        padding: 14px 4px;
        white-space: normal;
    }

    .nav-dropdown {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .nav-dropdown .nav-link {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        padding: 14px 4px;
        white-space: normal;
    }

    .nav-dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        border: none;
        padding: 0 0 12px 8px;
        margin-top: 0;
        min-width: 0;
    }

    .nav-dropdown.open .nav-dropdown-content {
        display: block;
    }

    .nav-dropdown-content a {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .mega-menu {
        position: relative;
        top: auto !important;
        left: auto;
        right: auto;
        width: 100%;
        max-width: 100%;
        display: none;
        box-shadow: none;
        border-top: 1px solid #f0f0f0;
        background: #fafafa;
        overflow: visible;
    }

    .mega-menu.active {
        display: block;
    }

    .mega-menu-section-desc {
        display: none;
    }

    .mega-menu-promo-text {
        font-size: 13px;
    }

    .mega-menu-image {
        max-height: 140px;
        overflow: hidden;
    }

    .mega-menu-img {
        max-height: 140px;
        object-fit: cover;
    }
    
    .mega-menu-container {
        flex-direction: column;
    }
    
    .mega-menu-columns {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .mega-menu-left {
        padding: 16px 12px;
    }

    .mega-menu-section {
        padding-bottom: 8px;
    }

    .mega-menu-category {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .mega-menu-right {
        width: 100%;
        margin-right: 0;
    }

    .solutions-mega-container {
        flex-direction: column;
    }

    .solutions-industries-section {
        padding: 16px 12px;
        border-bottom: 1px solid #eee;
    }

    .solutions-industries-section:first-child {
        border-right: none;
    }

    .solutions-sector-title {
        font-size: 17px;
        margin-bottom: 6px;
    }

    .solutions-sector-subtitle {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .solutions-sector-desc {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .products-mega-container {
        flex-direction: column;
    }

    .product-section {
        padding: 16px 12px;
        border-bottom: 1px solid #eee;
    }

    .product-section:first-child {
        border-right: none;
    }

    .product-main-title {
        font-size: 15px;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    background: #f5f5f5;
    overflow: hidden;
}

.hero-container {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    padding: 60px 0;
}

.hero-container > .hero-visual {
    padding: 60px 0;
}

.hero-text {
    flex: 1;
    max-width: 600px;
    color: #fff;
    position: relative;
    z-index: 2;
}

.hero-navigation {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.hero-nav-dots {
    display: flex;
    gap: 4px;
}

.hero-nav-dots span {
    width: 8px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.7);
    display: block;
}

.hero-nav-arrow {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.hero-title-large {
    font-size: 64px;
    margin-top: 5px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-cta-button {
    display: inline-block;
    background-color: #fff;
    color: #1976d2;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.hero-visual {
    width: 100%;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-container .hero-video-container {
    position: relative;
    width: 100%;
    height: 600px;
    margin: 0;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.hero-cards {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    padding: 40px 0;
}

.hero-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 150px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hero-card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF8C00 0%, #D32F2F 100%);
    border-radius: 8px;
    color: #fff;
    font-size: 24px;
}

.hero-card-text {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-align: center;
}

/* Responsive Hero Section */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 40px;
    }
    
    .hero-title-large {
        font-size: 52px;
    }
    
    .hero-content {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        padding: 40px 0;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-visual {
        max-width: 100%;
    }
    
    .hero-video-container {
        height: 400px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-title-large {
        font-size: 44px;
    }
    
    .hero-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .hero-card {
        min-width: 120px;
        padding: 20px 25px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-title-large {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-video-container {
        height: 300px;
    }
    
    .hero-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .hero-card {
        min-width: 100px;
        padding: 15px 20px;
    }
    
    .hero-card-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .hero-card-text {
        font-size: 12px;
    }
}

/* About Section */
.about-section {
    position: relative;
    width: 100%;
    background: linear-gradient(to bottom, #ffffff 0%, #e0e0e0 100%);
    padding: 120px 0;
    overflow: hidden;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.about-content {
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
}

.about-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.about-highlight {
    color: #1976d2;
    display: inline-block;
    position: relative;
}

.about-description {
    font-size: 20px;
    line-height: 1.7;
    color: #4a4a4a;
    max-width: 850px;
    margin: 0 auto;
    font-weight: 400;
}

/* Subtle background elements */
.about-section::before,
.about-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}

.about-section::before {
    top: -200px;
    left: -200px;
    background: radial-gradient(circle, #1976d2 0%, transparent 70%);
}

.about-section::after {
    bottom: -200px;
    right: -200px;
    background: radial-gradient(circle, #1976d2 0%, transparent 70%);
}

/* Responsive About Section */
@media (max-width: 1200px) {
    .about-title {
        font-size: 48px;
    }
    
    .about-description {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .about-section {
        padding: 100px 0;
    }
    
    .about-container {
        padding: 0 30px;
    }
    
    .about-title {
        font-size: 40px;
        white-space: normal;
    }
    
    .about-description {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-container {
        padding: 0 20px;
    }
    
    .about-title {
        font-size: 32px;
        margin-bottom: 30px;
        white-space: normal;
    }
    
    .about-description {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .about-section::before,
    .about-section::after {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 26px;
    }
    
    .about-description {
        font-size: 15px;
    }
}

/* Latest Insights Section */
.insights-section {
    width: 100%;
    background-color: #fff;
    position: relative;
}

.insights-header {
    background: linear-gradient(90deg, #1976d2 0%, #1565c0 25%, #1a237e 50%, #4a148c 75%, #6a1b9a 100%);
    background-size: 200% 100%;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.insights-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.02) 2px,
            rgba(255, 255, 255, 0.02) 4px
        );
    pointer-events: none;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(20px, 20px);
    }
}


.insights-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
    text-align: center;
}

.insights-title {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.insights-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.5;
}

.insights-filters {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.insights-filter-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 500;
}

.insights-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.insights-filter-btn {
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    backdrop-filter: blur(10px);
}

.insights-filter-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.insights-filter-btn.active {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.insights-articles {
    padding: 0 0 80px;
    background-color: #fff;
    margin-top: -60px;
    position: relative;
    z-index: 5;
}

.insights-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.insights-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.insights-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.insights-card-type {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(to right, #fff 0%, #e3f2fd 50%, #1976d2 100%);
    color: #1976d2;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 20px 20px 0;
    border-radius: 4px;
    border: 1px solid rgba(25, 118, 210, 0.2);
}

.insights-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    margin-top: 12px;
}

.insights-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.insights-card:hover .insights-card-image img {
    transform: scale(1.05);
}

.insights-card-content {
    padding: 24px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.insights-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.4;
}

.insights-card-summary {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.insights-card-link {
    color: #1976d2;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s;
    align-self: flex-start;
}

.insights-card-link:hover {
    color: #1565c0;
}

/* Responsive Insights Section */
@media (max-width: 1200px) {
    .insights-container {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .insights-header {
        padding: 60px 0 100px;
    }
    
    .insights-title {
        font-size: 42px;
    }
    
    .insights-subtitle {
        font-size: 20px;
    }
    
    .insights-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 30px;
    }
    
    .insights-articles {
        margin-top: -50px;
        padding: 0 0 60px;
    }
}

@media (max-width: 768px) {
    .insights-header {
        padding: 50px 0 80px;
    }
    
    .insights-header-content {
        padding: 0 20px;
    }
    
    .insights-title {
        font-size: 32px;
    }
    
    .insights-subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .insights-filter-buttons {
        gap: 8px;
    }
    
    .insights-filter-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .insights-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .insights-articles {
        margin-top: -40px;
        padding: 0 0 50px;
    }
}

/* News Section */
.news-section {
    width: 100%;
    background-color: #2c2c2c;
    padding: 100px 0;
}

.news-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.news-content {
    display: block;
}

.news-left {
    display: flex;
    flex-direction: column;
}

.news-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.news-articles {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 50px;
}

.news-article {
    padding: 20px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.news-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../logo/1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 0;
}

.news-article:hover::before {
    opacity: 0.3;
    transform: scale(1);
}

.news-article:hover {
    background-color: rgba(255, 255, 255, 0.05);
    transition: background-color 0.3s ease;
}

.news-article:last-child {
    border-bottom: none;
    padding-bottom: 20px;
}

.news-article-title {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 16px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

.news-article-title + .news-article-desc {
    margin-top: -8px;
}

.news-article-desc {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.55;
    margin: 0 0 4px;
    position: relative;
    z-index: 1;
}

.news-article-tagline {
    margin: 16px 0 0;
    padding-left: 16px;
    border-left: 3px solid #64b5f6;
    font-size: 17px;
    font-weight: 600;
    font-style: italic;
    color: #90caf9;
    line-height: 1.45;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
}

.news-article-link {
    color: #1976d2;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s;
}

.news-article-link:hover {
    color: #1565c0;
}

.news-button {
    display: inline-block;
    background-color: #1976d2;
    color: #fff;
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    align-self: flex-start;
}

.news-button:hover {
    background-color: #1565c0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}


/* Building Section */
.building-section {
    width: 100%;
    overflow: hidden;
}

.building-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.building-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Responsive News Section */
@media (max-width: 1200px) {
    .news-content {
        gap: 40px;
    }
    
    .news-title {
        font-size: 40px;
    }
}

@media (max-width: 992px) {
    .news-section {
        padding: 80px 0;
    }
    
    .news-container {
        padding: 0 30px;
    }
    
    .news-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .news-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .news-articles {
        gap: 30px;
        margin-bottom: 40px;
    }
    
    
}

@media (max-width: 768px) {
    .news-section {
        padding: 60px 0;
    }
    
    .news-container {
        padding: 0 20px;
    }
    
    .news-title {
        font-size: 28px;
    }
    
    .news-article-title {
        font-size: 18px;
    }
    
    .news-article-desc {
        font-size: 15px;
    }
    
    .news-article-tagline {
        font-size: 15px;
        margin-top: 14px;
        padding-left: 12px;
    }
}

/* Footer */
.footer {
    width: 100%;
    background-color: #f5f5f5;
}

.footer-main {
    padding: 80px 0 60px;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr minmax(320px, 1.5fr) 0.85fr 0.85fr;
    gap: 40px;
    justify-content: center;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    line-height: 1.5;
    white-space: nowrap;
}

.footer-links a:hover {
    color: #1976d2;
}

.footer-trust-bar {
    width: 100%;
    background: linear-gradient(180deg, #f8f9fa 0%, #eef1f4 100%);
    border-top: 1px solid #e0e0e0;
    padding: 28px 40px 32px;
}

.footer-trust-inner {
    max-width: 1400px;
    margin: 0 auto 24px;
}

.footer-trust-intro {
    font-size: 15px;
    color: #333;
    line-height: 1.55;
    margin-bottom: 12px;
}

.footer-trust-iso {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

.footer-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #fff;
    background: #1976d2;
    padding: 4px 10px;
    border-radius: 4px;
    margin-right: 10px;
    vertical-align: middle;
}

.footer-partners {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px dashed #cfd8dc;
}

.footer-partners-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #666;
    margin-bottom: 14px;
}

.footer-partners-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.footer-partner-slot {
    min-width: 120px;
    height: 48px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: #90a4ae;
    background: #fff;
    border: 1px dashed #b0bec5;
    border-radius: 6px;
}

.footer-partners-hint {
    font-size: 12px;
    color: #78909c;
    margin-top: 12px;
    margin-bottom: 0;
}

.page-flow-diagram {
    margin: 24px 0 8px;
    padding: 20px;
    background: #f5f7fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow-x: auto;
}

.page-flow-diagram svg {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.page-flow-caption {
    font-size: 13px;
    color: #555;
    margin-top: 12px;
    line-height: 1.5;
}

.footer-bottom {
    display: flex;
    width: 100%;
    min-height: 80px;
}

.footer-bottom-left {
    flex: 1;
    background-color: #2c2c2c;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}

.footer-social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: #fff;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

.footer-stock {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.footer-stock-symbol {
    font-weight: 700;
}

.footer-stock-price {
    color: #4caf50;
}

.footer-stock-change {
    color: #4caf50;
    font-size: 12px;
}

.footer-bottom-right {
    background: linear-gradient(to right, #1976d2 0%, #1565c0 100%);
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 400px;
}

.footer-copyright {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
    font-size: 14px;
}

.footer-logo-separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-img {
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo-text {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

/* Responsive Footer */
@media (max-width: 1400px) {

    .footer-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .footer-main {
        padding: 60px 0 40px;
    }
    
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        padding: 0 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
    }
    
    .footer-bottom-left {
        padding: 20px 30px;
        gap: 20px;
    }
    
    .footer-bottom-right {
        min-width: 100%;
        padding: 20px 30px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-trust-bar {
        padding: 22px 20px 26px;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 20px;
    }
    
    .footer-links a {
        white-space: normal;
    }
    
    .footer-bottom-left {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 20px;
    }
    
    .footer-legal {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .footer-separator {
        display: none;
    }
    
    .footer-bottom-right {
        padding: 20px;
    }
    
    .footer-copyright {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .footer-logo-separator {
        display: none;
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-links a {
        white-space: normal;
    }
}

/* Main Content */
main {
    min-height: calc(100vh - 140px);
    padding: 40px 20px;
}

/* ===== Page Template (Products, Services, etc.) ===== */
.page-hero {
    background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #3949ab 100%);
    color: #fff;
    padding: 60px 20px 80px;
}

.page-hero-container {
    max-width: 1100px;
    margin: 0 auto;
}

.page-hero-breadcrumb {
    font-size: 14px;
    margin-bottom: 16px;
    opacity: 0.9;
}

.page-hero-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.page-hero-breadcrumb a:hover {
    text-decoration: underline;
}

.page-hero-sep {
    margin: 0 8px;
    opacity: 0.7;
}

.page-hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.page-hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    max-width: 700px;
    opacity: 0.95;
}

.page-content {
    padding: 60px 20px 80px;
    background: #fff;
}

.page-content-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-section {
    margin-bottom: 48px;
}

.page-section:last-child {
    margin-bottom: 0;
}

.page-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 16px;
}

.page-section-text {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 16px;
}

.page-section-text:last-child {
    margin-bottom: 0;
}

.page-section-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-section-list li {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.page-section-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #3949ab;
    border-radius: 50%;
}

.page-section-cta {
    text-align: center;
    padding: 40px 20px;
    background: #f5f5f9;
    border-radius: 8px;
}

.page-section-cta .page-section-title {
    margin-bottom: 12px;
}

.page-section-cta .page-section-text {
    margin-bottom: 24px;
}

/* ===== Contact Page - Premium Design ===== */
@keyframes contactFadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes contactShine {
    to {
        transform: translateX(100%) rotate(15deg);
    }
}

/* Contact Hero - Full impact */
.contact-hero {
    position: relative;
    padding: 72px 24px 96px;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, #0d1440 0%, #1a237e 35%, #283593 65%, #3949ab 100%);
    z-index: 0;
}

.contact-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.06) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 45%);
    z-index: 1;
}

.contact-hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(0,0,0,0.03), transparent);
    z-index: 1;
}

.contact-hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.contact-hero-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-bottom: 12px;
}

.contact-hero-title {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    text-shadow: 0 2px 24px rgba(0,0,0,0.2);
}

.contact-hero-subtitle {
    font-size: 19px;
    line-height: 1.65;
    max-width: 560px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Contact Page Content */
.contact-page {
    padding: 64px 24px 100px;
    background: linear-gradient(180deg, #f8f9fc 0%, #fff 120px);
}

.contact-page-container {
    max-width: 1240px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    margin-bottom: 56px;
    animation: contactFadeInUp 0.6s ease-out forwards;
}

.contact-intro-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #3949ab;
    margin-bottom: 12px;
}

.contact-intro-title {
    font-size: 36px;
    font-weight: 800;
    color: #0d1440;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
    line-height: 1.2;
}

.contact-intro-text {
    font-size: 18px;
    line-height: 1.75;
    color: #555;
    max-width: 600px;
    margin: 0 auto 24px;
}

.contact-intro-line {
    width: 64px;
    height: 4px;
    background: linear-gradient(90deg, #3949ab, #7986cb);
    border-radius: 2px;
    margin: 0 auto;
}

/* Contact grid: 4 cards left, map right */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
    align-items: start;
    margin-bottom: 64px;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-card {
    position: relative;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 4px 24px rgba(26, 35, 126, 0.06);
    border: 1px solid rgba(57, 73, 171, 0.12);
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26, 35, 126, 0.12);
    border-color: rgba(57, 73, 171, 0.25);
}

.contact-card:hover .contact-card-action {
    color: #1a237e;
}

.contact-card-static {
    cursor: default;
}

.contact-card-static:hover {
    transform: none;
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(145deg, #1a237e 0%, #3949ab 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card-link:hover .contact-card-icon {
    transform: scale(1.06);
    box-shadow: 0 8px 24px rgba(26, 35, 126, 0.35);
}

.contact-card-title {
    font-size: 12px;
    font-weight: 700;
    color: #3949ab;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.contact-card-value {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    color: #1a237e;
    margin-bottom: 12px;
}

.contact-card-action {
    font-size: 13px;
    font-weight: 600;
    color: #5c6bc0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.25s ease, transform 0.25s ease;
}

.contact-card-action i {
    font-size: 11px;
    transition: transform 0.25s ease;
}

.contact-card-link:hover .contact-card-action i {
    transform: translateX(4px);
}

.contact-card-static .contact-card-action {
    display: none;
}

/* Map - right column */
.contact-map-wrap {
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(26, 35, 126, 0.1);
    border: 1px solid rgba(57, 73, 171, 0.1);
}

.contact-map-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 20px 24px 14px;
    background: linear-gradient(180deg, rgba(248,249,252,0.98) 0%, #fff 100%);
    border-bottom: 1px solid rgba(57, 73, 171, 0.08);
}

.contact-map-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a237e;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-map-title i {
    color: #3949ab;
    font-size: 16px;
}

.contact-map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #3949ab;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 10px;
    background: rgba(57, 73, 171, 0.08);
    transition: background 0.25s ease, color 0.25s ease;
}

.contact-map-link:hover {
    background: rgba(57, 73, 171, 0.15);
    color: #1a237e;
}

.contact-map-inner {
    position: relative;
    width: 100%;
    padding-bottom: 56%;
    height: 0;
    overflow: hidden;
}

.contact-map-inner iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* CTA Section - Bold close */
.contact-cta {
    text-align: center;
    padding: 56px 32px;
    background: linear-gradient(145deg, #1a237e 0%, #283593 50%, #3949ab 100%);
    border-radius: 24px;
    box-shadow: 0 16px 48px rgba(26, 35, 126, 0.25);
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.contact-cta-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 10px;
}

.contact-cta-title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    position: relative;
}

.contact-cta-text {
    font-size: 17px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
}

.contact-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    position: relative;
}

.contact-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.contact-cta-btn-primary {
    background: #fff;
    color: #1a237e;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.contact-cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

.contact-cta-btn-secondary {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
}

.contact-cta-btn-secondary:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-map-inner {
        padding-bottom: 52%;
    }
}

@media (max-width: 768px) {
    .page-hero-title {
        font-size: 32px;
    }
    .page-hero-subtitle {
        font-size: 16px;
    }
    .page-section-title {
        font-size: 24px;
    }

    .contact-hero {
        padding: 48px 20px 64px;
    }

    .contact-hero-title {
        font-size: 36px;
    }

    .contact-hero-subtitle {
        font-size: 16px;
    }

    .contact-hero-pill {
        padding: 10px 18px;
        font-size: 14px;
    }

    .contact-page {
        padding: 40px 20px 64px;
    }

    .contact-intro-title {
        font-size: 28px;
    }

    .contact-intro-text {
        font-size: 16px;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-card {
        padding: 24px 20px;
    }

    .contact-map-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 20px 14px;
    }

    .contact-cta {
        padding: 40px 24px;
    }

    .contact-cta-title {
        font-size: 26px;
    }

    .contact-cta-text {
        font-size: 15px;
    }

    .contact-cta-buttons {
        flex-direction: column;
    }

    .contact-cta-btn {
        justify-content: center;
    }

    .contact-map-inner {
        padding-bottom: 58%;
    }
}

/* ============================================
   Policy / Legal document pages
   ============================================ */
.policy-hero {
    position: relative;
    padding: 64px 24px 80px;
}

.policy-hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.policy-hero-title {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.policy-hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto 20px;
    opacity: 0.95;
}

.policy-doc-meta {
    font-size: 14px;
    opacity: 0.9;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.policy-doc-meta i {
    font-size: 13px;
}

.policy-page {
    padding: 56px 24px 100px;
    background: linear-gradient(180deg, #f8f9fc 0%, #fff 80px);
}

.policy-page-container {
    max-width: 820px;
    margin: 0 auto;
}

.policy-doc {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(26, 35, 126, 0.08);
    padding: 48px 56px 56px;
    border: 1px solid rgba(26, 35, 126, 0.06);
}

.policy-doc-section {
    margin-bottom: 40px;
}

.policy-doc-section:last-of-type {
    margin-bottom: 32px;
}

.policy-doc-h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(26, 35, 126, 0.15);
    letter-spacing: -0.01em;
}

.policy-doc-p {
    font-size: 16px;
    line-height: 1.75;
    color: #37474f;
    margin-bottom: 14px;
}

.policy-doc-p:last-child {
    margin-bottom: 0;
}

.policy-doc-card {
    background: linear-gradient(135deg, #f5f7ff 0%, #e8ecff 100%);
    border: 1px solid rgba(26, 35, 126, 0.12);
    border-radius: 12px;
    padding: 20px 24px;
    margin: 16px 0 24px;
}

.policy-doc-card p {
    margin: 6px 0;
    font-size: 15px;
    color: #37474f;
}

.policy-doc-card .policy-doc-strong {
    font-weight: 700;
    color: #1a237e;
    font-size: 16px;
}

.policy-doc-card a {
    color: #283593;
    text-decoration: none;
    font-weight: 500;
}

.policy-doc-card a:hover {
    text-decoration: underline;
}

.policy-doc-list {
    margin: 12px 0 20px 24px;
    padding: 0;
    list-style: none;
}

.policy-doc-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.7;
    color: #37474f;
}

.policy-doc-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #3949ab;
    border-radius: 50%;
}

.policy-doc-list li strong {
    color: #1a237e;
}

.policy-doc a {
    color: #283593;
    text-decoration: none;
    font-weight: 500;
}

.policy-doc a:hover {
    text-decoration: underline;
}

.policy-doc-footer {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(26, 35, 126, 0.12);
    text-align: center;
}

.policy-doc-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: #fff !important;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.policy-doc-link:hover {
    text-decoration: none !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 35, 126, 0.35);
}

@media (max-width: 992px) {
    .policy-hero {
        padding: 56px 20px 64px;
    }

    .policy-hero-title {
        font-size: 36px;
    }

    .policy-hero-subtitle {
        font-size: 17px;
    }

    .policy-doc {
        padding: 36px 32px 44px;
    }

    .policy-doc-h2 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .policy-hero {
        padding: 48px 20px 56px;
    }

    .policy-hero-title {
        font-size: 30px;
    }

    .policy-hero-subtitle {
        font-size: 16px;
    }

    .policy-page {
        padding: 40px 20px 64px;
    }

    .policy-doc {
        padding: 28px 20px 36px;
    }

    .policy-doc-h2 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .policy-doc-p,
    .policy-doc-list li {
        font-size: 15px;
    }

    .policy-doc-card {
        padding: 16px 18px;
    }

    .policy-doc-footer {
        margin-top: 32px;
        padding-top: 24px;
    }

    .policy-doc-link {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ============================================
   Ana Sayfa - Video hero, intro, solutions, why, cta
   ============================================ */

@keyframes homeFadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes homeHeroReveal {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes homeBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

@keyframes homeGradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes homeShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.section-ani {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.section-ani.section-in-view {
    opacity: 1;
    transform: translateY(0);
}

.section-ani .solutions-card,
.section-ani .why-item {
    opacity: 0;
}

.section-ani.section-in-view .solutions-card { animation: homeFadeInUp 0.6s ease forwards; }
.section-ani.section-in-view .solutions-card:nth-child(1) { animation-delay: 0.1s; }
.section-ani.section-in-view .solutions-card:nth-child(2) { animation-delay: 0.2s; }
.section-ani.section-in-view .solutions-card:nth-child(3) { animation-delay: 0.3s; }
.section-ani.section-in-view .solutions-card:nth-child(4) { animation-delay: 0.4s; }

.section-ani.section-in-view .why-item { animation: homeFadeInUp 0.5s ease forwards; }
.section-ani.section-in-view .why-item:nth-child(1) { animation-delay: 0.1s; }
.section-ani.section-in-view .why-item:nth-child(2) { animation-delay: 0.2s; }
.section-ani.section-in-view .why-item:nth-child(3) { animation-delay: 0.3s; }

.hero-reveal {
    animation: homeHeroReveal 1s ease 0.3s forwards;
    opacity: 0;
}

/* Video Hero – tam ekran, tüm cihazlara uyumlu */
.video-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-hero-media {
    position: absolute;
    inset: 0;
}

.video-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

.video-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 15, 45, 0.5) 0%, rgba(26, 35, 126, 0.4) 50%, rgba(15, 20, 55, 0.7) 100%);
    pointer-events: none;
}

.video-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 720px;
}

.video-hero-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
}

.video-hero-title {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #fff;
    margin: 0 0 16px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}

.video-hero-subtitle {
    font-size: clamp(16px, 2.2vw, 20px);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.video-hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    z-index: 2;
    animation: homeBounce 2.5s ease-in-out infinite;
}

.video-hero-scroll:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
}

/* Intro / Who we are */
.intro-section {
    padding: 80px 24px 72px;
    background: #fff;
}

.intro-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #1a237e;
    margin-bottom: 16px;
}

.intro-title {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 700;
    line-height: 1.25;
    color: #1a237e;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
}

.intro-text {
    font-size: 17px;
    line-height: 1.7;
    color: #37474f;
    margin: 0;
}

.intro-media-note {
    font-size: 14px;
    line-height: 1.6;
    color: #546e7a;
    margin: 24px auto 0;
    max-width: 640px;
}

.intro-line {
    width: 64px;
    height: 4px;
    background: linear-gradient(90deg, #1a237e, #3949ab);
    margin: 32px auto 0;
    border-radius: 2px;
    transition: width 0.4s ease;
}

.intro-section:hover .intro-line {
    width: 120px;
}

/* Solutions / Offerings */
.solutions-section {
    padding: 72px 24px 88px;
    background: linear-gradient(180deg, #f8f9fc 0%, #fff 100%);
}

.solutions-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.solutions-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #1a237e;
    margin-bottom: 12px;
    text-align: center;
}

.solutions-title {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 700;
    color: #1a237e;
    text-align: center;
    margin: 0 0 48px;
    letter-spacing: -0.02em;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.solutions-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    padding: 28px 24px;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(26, 35, 126, 0.08);
    box-shadow: 0 4px 20px rgba(26, 35, 126, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.solutions-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(26, 35, 126, 0.18);
    border-color: rgba(26, 35, 126, 0.2);
}

.solutions-card:hover .solutions-card-icon {
    transform: scale(1.08);
}

.solutions-card:hover .solutions-card-link i {
    transform: translateX(4px);
}

.solutions-card-link i {
    transition: transform 0.25s ease;
}

.solutions-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: #fff;
    border-radius: 10px;
    font-size: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.solutions-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a237e;
    margin: 0 0 10px;
}

.solutions-card-desc {
    font-size: 14px;
    line-height: 1.55;
    color: #546e7a;
    margin: 0 0 20px;
    flex-grow: 1;
}

.solutions-card-link {
    font-size: 14px;
    font-weight: 600;
    color: #283593;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.solutions-card:hover .solutions-card-link {
    color: #1a237e;
}

/* Gallery: Split layout – solda görsel, sağda koyu panel */
.gallery-split {
    padding: 0;
    background: #f5f6f8;
    position: relative;
    overflow: hidden;
}

.gallery-split-inner {
    display: flex;
    flex-direction: row;
    max-width: 1600px;
    margin: 0 auto;
    min-height: 520px;
}

.gallery-split-image {
    flex: 1;
    min-width: 0;
    position: relative;
    overflow: hidden;
}

.gallery-split-track {
    position: relative;
    width: 100%;
    padding-bottom: 65%;
    background: #0a0e1a;
}

.slider-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 0;
    transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease, opacity 0.25s ease, visibility 0.25s ease;
}

.slider-hero-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
    transform: translateX(0) scale(1);
    filter: blur(0);
    transition: opacity 0.3s ease, transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

/* Çıkış: ileri gidiyorsa sola kay + küçül + blur */
.slider-hero-slide.exit-next {
    z-index: 3;
    opacity: 1;
    visibility: visible;
    transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease, opacity 0.4s ease 0.35s;
    transform: translateX(-42%) scale(0.88);
    filter: blur(8px);
}

/* Çıkış: geri gidiyorsa sağa kay + küçül + blur */
.slider-hero-slide.exit-prev {
    z-index: 3;
    opacity: 1;
    visibility: visible;
    transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease, opacity 0.4s ease 0.35s;
    transform: translateX(42%) scale(0.88);
    filter: blur(8px);
}

/* Giriş: ileri (yeni sağdan gelir) */
.slider-hero-slide.enter-next {
    z-index: 4;
    opacity: 1;
    visibility: visible;
    transform: translateX(42%) scale(0.88);
    filter: blur(8px);
    transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease 0.15s, opacity 0.3s ease;
}

.slider-hero-slide.enter-next.enter-done {
    transform: translateX(0) scale(1);
    filter: blur(0);
}

/* Giriş: geri (yeni soldan gelir) */
.slider-hero-slide.enter-prev {
    z-index: 4;
    opacity: 1;
    visibility: visible;
    transform: translateX(-42%) scale(0.88);
    filter: blur(8px);
    transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease 0.15s, opacity 0.3s ease;
}

.slider-hero-slide.enter-prev.enter-done {
    transform: translateX(0) scale(1);
    filter: blur(0);
}

.slider-hero-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-hero-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Sağ panel: koyu, tipografi odaklı */
.gallery-split-panel {
    width: 42%;
    min-width: 340px;
    background: #0d1324;
    padding: 48px 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gallery-panel-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 12px;
}

.gallery-panel-title {
    font-size: clamp(22px, 2.8vw, 32px);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 24px;
}

.gallery-panel-caption {
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.02em;
    line-height: 1.35;
    margin: 0 0 28px;
    transition: opacity 0.35s ease;
}

.gallery-panel-progress {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
}

.gallery-progress-current {
    color: #fff;
}

.gallery-progress-sep {
    margin: 0 4px;
    opacity: 0.6;
}

.gallery-panel-bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 32px;
}

.gallery-panel-fill {
    height: 100%;
    background: linear-gradient(90deg, #1a237e, #3949ab);
    border-radius: 2px;
    width: 20%;
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-panel-nav {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.gallery-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.gallery-nav-btn:hover {
    background: rgba(26, 35, 126, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.gallery-nav-btn:active {
    transform: translateY(0);
}

.gallery-nav-btn i {
    font-size: 12px;
}

.gallery-panel-dots {
    display: flex;
    gap: 12px;
}

.gallery-split-panel .slider-hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.gallery-split-panel .slider-hero-dot:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
}

.gallery-split-panel .slider-hero-dot.active {
    background: #fff;
    border-color: #fff;
    transform: scale(1.15);
}

@media (max-width: 1024px) {
    .gallery-split-inner {
        flex-direction: column;
        min-height: 0;
    }
    .gallery-split-image {
        order: 1;
    }
    .gallery-split-track {
        padding-bottom: 56%;
    }
    .gallery-split-panel {
        width: 100%;
        min-width: 0;
        padding: 40px 24px 36px;
        order: 2;
    }
}

@media (max-width: 600px) {
    .gallery-split-panel {
        padding: 32px 20px 28px;
    }
    .gallery-panel-title {
        margin-bottom: 18px;
    }
    .gallery-panel-caption {
        font-size: 17px;
        margin-bottom: 22px;
    }
    .gallery-panel-nav {
        flex-wrap: wrap;
        margin-bottom: 24px;
    }
    .gallery-nav-btn {
        padding: 12px 18px;
        font-size: 13px;
    }
}

/* Why A+S */
.why-section {
    padding: 80px 24px 88px;
    background: #fff;
}

.why-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.why-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #1a237e;
    margin-bottom: 12px;
    text-align: center;
}

.why-title {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 700;
    color: #1a237e;
    text-align: center;
    margin: 0 0 48px;
    letter-spacing: -0.02em;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.why-item {
    text-align: center;
    padding: 0 16px;
    transition: transform 0.3s ease;
}

.why-item:hover {
    transform: translateY(-4px);
}

.why-item:hover .why-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(26, 35, 126, 0.2);
}

.why-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8eaf6 0%, #c5cae9 100%);
    color: #1a237e;
    border-radius: 14px;
    font-size: 24px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-item-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a237e;
    margin: 0 0 10px;
}

.why-item-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #546e7a;
    margin: 0;
}

/* CTA */
.cta-section {
    padding: 72px 24px 80px;
    background: linear-gradient(-45deg, #1a237e, #283593, #3949ab, #1a237e);
    background-size: 400% 400%;
    animation: homeGradientShift 12s ease infinite;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
    animation: homeShine 6s ease-in-out infinite;
    pointer-events: none;
}

.cta-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

.cta-text {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.95;
    margin: 0 0 32px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-btn:hover {
    transform: translateY(-3px) scale(1.03);
}

.cta-btn-primary {
    background: #fff;
    color: #1a237e;
}

.cta-btn-primary:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-section + .news-section {
    padding: 80px 0 100px;
}

/* Ana sayfa - responsive */
@media (max-width: 992px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .video-hero-content {
        padding: 0 20px;
    }

    .video-hero-label {
        font-size: 11px;
        letter-spacing: 0.15em;
    }

    .video-hero-scroll {
        bottom: 24px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .intro-section {
        padding: 56px 20px 56px;
    }

    .intro-title {
        font-size: 24px;
    }

    .intro-text {
        font-size: 16px;
    }

    .solutions-section {
        padding: 56px 20px 64px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .solutions-card {
        padding: 24px 20px;
    }

    .why-section {
        padding: 56px 20px 64px;
    }

    .why-grid {
        gap: 32px;
    }

    .cta-section {
        padding: 56px 20px 64px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .cta-section + .news-section {
        padding: 60px 0 80px;
    }
}

