/* Baret Enerji - Green-Blue-White Theme */

:root {
    --primary-green: #00cc6a;
    --dark-green: #00a855;
    --light-green: #e6fff3;
    --primary-blue: #1e90ff;
    --dark-blue: #0066cc;
    --light-blue: #e6f2ff;
    --accent-dark: #0a0e14;
    --text-dark: #0a0e14;
    --text-gray: #4a5568;
    --text-light: #718096;
    --bg-white: #ffffff;
    --bg-light: #f5f7fa;
    --bg-lighter: #fafbfc;
    --border-light: #e2e8f0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

/* Dark Theme */
body.dark-theme {
    --primary-green: #ffffff;
    --dark-green: #e0e0e0;
    --light-green: rgba(255, 255, 255, 0.1);
    --primary-blue: #ffffff;
    --dark-blue: #e0e0e0;
    --light-blue: rgba(255, 255, 255, 0.1);
    --text-dark: #f0f0f0;
    --text-gray: #b8c5d0;
    --text-light: #8b9aa8;
    --bg-white: #0a0e14;
    --bg-light: #151922;
    --bg-lighter: #0a0e14;
    --border-light: #1e2530;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
}

body {
    transition: background-color 0.3s ease, color 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 16px;
    height: 16px;
    background: var(--primary-green);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
}

.custom-cursor.hover {
    transform: translate(-50%, -50%) scale(1.5);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-lighter);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

body.dark-theme .header {
    background: transparent;
    backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    box-shadow: none;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

body.dark-theme .header.scrolled {
    background: rgba(26, 29, 35, 0.95);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    height: 65px;
    display: flex;
    align-items: center;
}

.logo {
    height: 100%;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-blue);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: var(--bg-light);
    border-radius: 10px;
    border: 1px solid var(--border-light);
}

.language-switcher a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.language-switcher a .flag {
    font-size: 1.5rem;
    line-height: 1;
    display: inline-block;
    min-width: 24px;
    text-align: center;
}

.language-switcher a.active {
    opacity: 1;
    border-bottom: 2px solid var(--primary-blue);
}

.language-switcher a:hover:not(.active) {
    opacity: 1;
    transform: scale(1.05);
}

/* Theme Toggle Button */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.theme-toggle:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: scale(1.05);
}

.theme-toggle:hover svg {
    color: white;
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.theme-toggle .sun-icon {
    display: none;
}

.theme-toggle .moon-icon {
    display: block;
}

body.dark-theme .theme-toggle .sun-icon {
    display: block;
}

body.dark-theme .theme-toggle .moon-icon {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

/* Decorative gradient elements */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

body.dark-theme .hero::before {
    background: radial-gradient(circle, rgba(0, 102, 204, 0.25) 0%, transparent 70%);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

body.dark-theme .hero::after {
    background: radial-gradient(circle, rgba(0, 102, 204, 0.2) 0%, transparent 70%);
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
    position: relative;
}

/* Bottom-right gradient element */
.hero-content::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

body.dark-theme .hero-content::after {
    background: radial-gradient(circle, rgba(0, 102, 204, 0.18) 0%, transparent 70%);
}

.hero-logo-large {
    margin-bottom: 2rem;
    animation: float 6s ease-in-out infinite;
}

.hero-logo-large img {
    height: 180px;
    width: auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--text-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

body.dark-theme .hero-title {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 4px 16px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.4);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--text-dark);
    border: 2px solid var(--border-light);
}

.btn-secondary:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Background Shapes */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-blue);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--text-gray);
    bottom: -150px;
    left: -100px;
    animation-delay: 5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--primary-blue);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

/* ============================================
   HOME PAGE SECTORS
   ============================================ */

.sectors-home-premium {
    padding: 8rem 0;
    background: var(--bg-white);
}

.section-header-premium {
    text-align: center;
    margin-bottom: 5rem;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    background: var(--light-blue);
    border: 1px solid rgba(0, 102, 204, 0.2);
    border-radius: 100px;
}

body.dark-theme .section-label {
    background: rgba(0, 102, 204, 0.15);
    border: 1px solid rgba(0, 102, 204, 0.3);
}

.section-title-premium {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    line-height: 1.2;
}

.sectors-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.sector-home-card {
    position: relative;
    display: block;
    text-decoration: none;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 380px;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.sector-home-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.sector-home-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 180px;
    overflow: hidden;
    transition: all 0.5s ease;
}

.sector-home-card:hover .sector-home-bg {
    height: 220px;
}

.sector-home-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(0.2);
}

.sector-home-card:hover .sector-home-image {
    opacity: 0.9;
    transform: scale(1.05);
    filter: grayscale(0);
}

.sector-home-content {
    position: relative;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, 
        var(--bg-white) 0%, 
        var(--bg-white) 50%,
        transparent 75%,
        transparent 100%);
}

body.dark-theme .sector-home-content {
    background: linear-gradient(to top, 
        rgba(26, 29, 35, 1) 0%, 
        rgba(26, 29, 35, 0.95) 50%,
        rgba(26, 29, 35, 0.7) 75%,
        transparent 100%);
}

.sector-home-title {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.sector-home-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 1.25rem;
}

.sector-home-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-blue);
    border: 1px solid rgba(0, 102, 204, 0.2);
    color: var(--primary-blue);
    transition: all 0.4s ease;
}

.sector-home-card:hover .sector-home-arrow {
    background: var(--primary-blue);
    color: white;
    transform: translateX(6px);
}

/* Stats Section */
.stats {
    padding: 6rem 0;
    background: var(--bg-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* ============================================
   FOOTER PREMIUM
   ============================================ */

.footer-premium {
    background: var(--bg-white);
    border-top: 1px solid var(--border-light);
    padding: 6rem 0 3rem;
    position: relative;
    width: 100%;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-logos-group {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-logo-premium {
    height: 150px;
    width: auto;
}

.footer-logo-partner {
    height: 120px;
    width: auto;
    opacity: 0.9;
}

.footer-tagline {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--primary-blue);
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--primary-blue);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-blue);
    transform: translateX(8px);
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.5;
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    color: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-blue);
}

.footer-divider {
    height: 1px;
    background: #eee;
    margin: 3rem 0;
}

.footer-bottom-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #333;
    text-decoration: none;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.footer-copyright {
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-blue);
}

/* ============================================
   SECTORS PAGE - PREMIUM
   ============================================ */

.premium-hero {
    padding: 12rem 0 6rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.premium-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, var(--light-blue) 0%, transparent 70%);
    pointer-events: none;
}

body.dark-theme .premium-hero::before {
    background: radial-gradient(circle, rgba(0, 102, 204, 0.2) 0%, transparent 70%);
}

.premium-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.premium-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.5rem;
    background: var(--light-blue);
    border: 1px solid rgba(0, 102, 204, 0.2);
    border-radius: 100px;
}

.premium-title {
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.premium-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-gray);
    line-height: 1.6;
}

.sectors-premium {
    padding: 4rem 0 8rem;
    background: var(--bg-white);
}

.sectors-premium-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.premium-card {
    position: relative;
    display: block;
    text-decoration: none;
    border-radius: 24px;
    overflow: hidden;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    height: 520px;
    box-shadow: var(--shadow-sm);
}

.premium-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, 
        var(--primary-blue) 0%, 
        transparent 50%, 
        var(--primary-blue) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.premium-card:hover::before {
    opacity: 1;
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.premium-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 280px;
    overflow: hidden;
    transition: all 0.6s ease;
}

.premium-card:hover .premium-card-bg {
    height: 320px;
}

.premium-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(0.2);
}

.premium-card:hover .premium-card-image {
    opacity: 0.8;
    transform: scale(1.05);
    filter: grayscale(0);
}

.premium-card-content {
    position: relative;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, 
        var(--bg-white) 0%, 
        var(--bg-white) 40%,
        transparent 70%,
        transparent 100%);
}

body.dark-theme .premium-card-content {
    background: linear-gradient(to top, 
        rgba(26, 29, 35, 1) 0%, 
        rgba(26, 29, 35, 0.95) 40%,
        rgba(26, 29, 35, 0.7) 70%,
        transparent 100%);
}

.premium-card-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    display: block;
}

.premium-card-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.premium-card-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.premium-card-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--light-blue);
    border: 1px solid rgba(0, 102, 204, 0.2);
    color: var(--primary-blue);
    transition: all 0.4s ease;
}

.premium-card:hover .premium-card-arrow {
    background: var(--primary-blue);
    color: white;
    transform: translateX(8px);
}

/* Sector Detail Page */
.sector-detail {
    padding: 8rem 0 6rem;
    background: var(--bg-white);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: var(--primary-blue);
    gap: 0.75rem;
}

.detail-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    padding: 4rem;
    border-radius: 32px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

.detail-hero-content {
    padding: 2rem 0;
}

.detail-label {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    display: block;
}

.detail-title {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.detail-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.detail-hero-image {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.detail-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

/* Services Premium */
.services-premium {
    max-width: 1000px;
    margin: 0 auto;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-item {
    padding: 2rem;
    border-radius: 16px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.4s ease;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    box-shadow: var(--shadow-sm);
}

.service-item:hover {
    border-color: var(--primary-blue);
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.service-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    opacity: 0.6;
    min-width: 60px;
}

.service-name {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */

/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-radius: 10px;
    border: 2px solid var(--bg-light);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    border-color: white;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-blue) var(--bg-light);
}

/* ============================================
   CUSTOM RIGHT CLICK MENU
   ============================================ */

.custom-context-menu {
    position: fixed;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
    min-width: 200px;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
    animation: contextMenuFadeIn 0.2s ease;
}

.custom-context-menu.active {
    display: block;
}

.context-menu-item {
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    border-left: 3px solid transparent;
}

.context-menu-item:hover {
    background: var(--light-blue);
    border-left-color: var(--primary-blue);
    padding-left: 1.5rem;
}

.context-menu-item svg {
    width: 18px;
    height: 18px;
    color: var(--primary-blue);
}

.context-menu-divider {
    height: 1px;
    background: var(--border-light);
    margin: 0.5rem 0;
}

@keyframes contextMenuFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .sectors-home-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sectors-premium-grid {
        grid-template-columns: 1fr;
    }
    
    .premium-card {
        height: 480px;
    }
}

@media (max-width: 768px) {
    .footer-premium {
        padding: 4rem 0 2rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-logos-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .footer-logo-premium {
        height: 100px;
    }
    
    .footer-logo-partner {
        height: 80px;
    }
    
    .footer-bottom-premium {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-logo-large img {
        height: 120px;
    }
    
    .section-title-premium {
        font-size: 2.5rem;
    }
    
    .sectors-home-grid {
        grid-template-columns: 1fr;
    }
    
    .sector-home-card {
        height: 350px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .premium-hero {
        padding: 8rem 0 4rem;
    }
    
    .premium-title {
        font-size: 2.5rem;
    }
    
    .premium-subtitle {
        font-size: 1.125rem;
    }
    
    .premium-card {
        height: 420px;
    }
    
    .premium-card-title {
        font-size: 2rem;
    }
    
    .detail-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .detail-title {
        font-size: 2.5rem;
    }
    
    .detail-description {
        font-size: 1.125rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* 2026 final delivery polish */
:focus-visible { outline: 3px solid var(--primary-green); outline-offset: 4px; }
.header { backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); box-shadow: 0 1px 0 rgba(16, 24, 40, .08); }
.hero-title-new { text-wrap: balance; letter-spacing: -.035em; }
.hero-subtitle-new { max-width: 650px; text-wrap: pretty; }
.btn-primary-new, .btn-outline-new { border-radius: 999px; box-shadow: 0 10px 30px rgba(0, 168, 232, .16); }
.sector-card-timeas, .stat-card-timeas { box-shadow: 0 16px 48px rgba(10, 22, 40, .08); }
.sector-card-timeas:hover, .stat-card-timeas:hover { transform: translateY(-6px); }
@media (max-width: 768px) {
    .hero-title-new { font-size: clamp(2.25rem, 10vw, 3.4rem) !important; }
    .sector-card-timeas { min-width: min(88vw, 340px); max-width: min(88vw, 340px); }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Mobile Menu Active States */
.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: 768px) {
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        padding: 2rem;
        border-bottom: 1px solid var(--border-light);
        gap: 1.5rem;
        box-shadow: var(--shadow-md);
        z-index: 999;
    }
    
    .language-switcher {
        justify-content: center;
    }
}

/* Mobile Navbar Fix */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding-top: 80px;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
}

/* Mobile Hero and Buttons Fix */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .hero {
        min-height: 100vh;
        padding: 80px 1rem 2rem;
        width: 100%;
        overflow: hidden;
    }
    
    .hero-content {
        padding: 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2rem;
        word-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        word-wrap: break-word;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
    
    .hero-logo-large img {
        height: 100px;
        max-width: 100%;
    }
    
    .hero-bg-shapes {
        display: none;
    }
}

/* Mobile Hamburger Menu Position Fix */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        padding: 0.5rem 0;
        margin-right: 0;
    }
    
    .nav-container {
        padding: 1rem 1rem 1rem 1rem;
        gap: 1rem;
    }
    
    .logo-wrapper {
        height: 50px;
    }
}

/* Mobile Hero Content Center Fix */
@media (max-width: 768px) {
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 1rem;
        margin: 0 auto;
    }
    
    .hero-logo-large {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .hero-title,
    .hero-subtitle {
        text-align: center;
        width: 100%;
    }
    
    .hero-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
}

/* Mobile Language Switcher and Layout Fix */
@media (max-width: 768px) {
    * {
        box-sizing: border-box;
    }
    
    html, body {
        width: 100%;
        overflow-x: hidden;
        margin: 0;
        padding: 0;
    }
    
    .header {
        width: 100%;
        left: 0;
        right: 0;
    }
    
    .hero {
        width: 100vw;
        max-width: 100%;
        margin: 0;
        padding: 80px 0 2rem;
    }
    
    .hero-content {
        max-width: 90%;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }
    
    .btn {
        width: 90%;
        max-width: 280px;
    }
}

/* About Page Styles */
.about-hero {
    padding: 12rem 0 6rem;
    background: linear-gradient(135deg, white 0%, var(--bg-light) 100%);
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content {
    padding: 6rem 0;
    background: var(--bg-white);
}

.about-section {
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.about-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.about-section p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

/* Contact Page Styles */
.contact-hero {
    padding: 12rem 0 6rem;
    background: linear-gradient(135deg, white 0%, var(--bg-light) 100%);
}

.contact-content {
    padding: 6rem 0;
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-info-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-info-card svg {
    width: 28px;
    height: 28px;
    color: var(--primary-blue);
}

.contact-info-card p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.contact-info-card a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--dark-blue);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

/* Legal Pages Styles */
.legal-page {
    padding: 12rem 0 6rem;
    background: var(--bg-white);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.legal-content .last-updated {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.legal-content ul,
.legal-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 0.75rem;
}

.legal-content a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: var(--dark-blue);
    text-decoration: underline;
}

/* Sector Features */
.sector-features {
    padding: 4rem 0;
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.features-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    color: white;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.feature-desc {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .features-title {
        font-size: 2rem;
    }
}





/* ============================================
   TIMEAS HERO - MODERN DESIGN
   ============================================ */

.hero-timeas {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero-timeas::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 144, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-content-timeas {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text-side {
    animation: fadeInLeft 0.8s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--light-blue);
    border: 1px solid rgba(30, 144, 255, 0.2);
    border-radius: 50px;
    color: var(--primary-blue);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero-title-timeas {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title-timeas::after {
    content: '';
    display: block;
    width: 100px;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, transparent 100%);
    margin-top: 1rem;
    border-radius: 3px;
}

.hero-subtitle-timeas {
    font-size: 1.25rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-cta-timeas {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary-timeas {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 2.5rem;
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(30, 144, 255, 0.3);
}

.btn-primary-timeas:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(30, 144, 255, 0.4);
}

.btn-primary-timeas svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-primary-timeas:hover svg {
    transform: translateX(4px);
}

.btn-outline-timeas {
    padding: 1.25rem 2.5rem;
    background: transparent;
    color: var(--text-dark);
    text-decoration: none;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.btn-outline-timeas:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    background: var(--light-blue);
}

.hero-stats-timeas {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.stat-item-timeas {
    display: flex;
    flex-direction: column;
}

.stat-number-timeas {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label-timeas {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

.hero-visual-side {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 0.8s ease;
}

.hero-logo-timeas {
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.hero-logo-timeas img {
    width: 100%;
    max-width: 900px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.hero-decoration-timeas {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.1) 0%, transparent 100%);
    animation: pulse 4s ease-in-out infinite;
}

.decoration-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -50px;
    animation-delay: 0s;
}

.decoration-2 {
    width: 200px;
    height: 200px;
    bottom: 50px;
    left: -30px;
    animation-delay: 1s;
}

.decoration-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 20%;
    animation-delay: 2s;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Responsive */
@media (max-width: 968px) {
    .hero-content-timeas {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title-timeas {
        font-size: 3rem;
    }
    
    .hero-title-timeas::after {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-subtitle-timeas {
        max-width: 100%;
    }
    
    .hero-cta-timeas {
        justify-content: center;
    }
    
    .hero-stats-timeas {
        justify-content: center;
    }
    
    .hero-logo-timeas img {
        max-width: 500px;
    }
}


/* ============================================
   TIMEAS SECTORS - MODERN CARDS
   ============================================ */

.sectors-timeas {
    padding: 8rem 0;
    background: var(--bg-white);
}

.section-header-timeas {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-badge-timeas {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--light-blue);
    border: 1px solid rgba(30, 144, 255, 0.2);
    border-radius: 50px;
    color: var(--primary-blue);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-badge-timeas svg {
    width: 16px;
    height: 16px;
}

.section-title-timeas {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-desc-timeas {
    font-size: 1.125rem;
    color: var(--text-gray);
}

.sectors-grid-timeas {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0 2rem;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-blue) var(--bg-light);
}

.sectors-grid-timeas::-webkit-scrollbar {
    height: 8px;
}

.sectors-grid-timeas::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 10px;
}

.sectors-grid-timeas::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 10px;
}

.sectors-grid-timeas::-webkit-scrollbar-thumb:hover {
    background: var(--dark-blue);
}

.sector-card-timeas {
    position: relative;
    background: var(--bg-white);
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    min-width: 380px;
    max-width: 380px;
    flex-shrink: 0;
}

.sector-card-timeas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.sector-card-timeas:hover::before {
    opacity: 1;
}

.sector-card-timeas:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(30, 144, 255, 0.2);
}

.sector-image-timeas {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.sector-image-timeas::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.3) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.sector-card-timeas:hover .sector-image-timeas::after {
    opacity: 1;
}

.sector-image-timeas img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95);
}

.sector-card-timeas:hover .sector-image-timeas img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.05);
}

.sector-overlay-timeas {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    transition: background 0.5s ease;
}

.sector-card-timeas:hover .sector-overlay-timeas {
    background: linear-gradient(180deg, transparent 0%, rgba(30, 144, 255, 0.3) 100%);
}

.sector-content-timeas {
    padding: 2.5rem;
    position: relative;
    background: var(--bg-white);
}

.sector-icon-timeas {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--light-blue) 0%, rgba(30, 144, 255, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(30, 144, 255, 0.15);
}

.sector-card-timeas:hover .sector-icon-timeas {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: white;
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(30, 144, 255, 0.3);
}

.sector-title-timeas {
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.875rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.sector-card-timeas:hover .sector-title-timeas {
    color: var(--primary-blue);
}

.sector-desc-timeas {
    font-size: 0.975rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.75rem;
    max-height: 5.1rem; /* 3 satır için yaklaşık */
    overflow: hidden;
    text-overflow: ellipsis;
}

.sector-link-timeas {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--light-blue);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.sector-card-timeas:hover .sector-link-timeas {
    background: var(--primary-blue);
    color: white;
    transform: translateX(4px);
}

.sector-link-timeas svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.sector-card-timeas:hover .sector-link-timeas svg {
    transform: translateX(4px);
}

/* ============================================
   TIMEAS STATS - MODERN CARDS
   ============================================ */

.stats-section-timeas {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.stats-grid-timeas {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card-timeas {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card-timeas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card-timeas:hover::before {
    transform: scaleX(1);
}

.stat-card-timeas:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(30, 144, 255, 0.15);
    border-color: var(--primary-blue);
}

.stat-icon-timeas {
    width: 64px;
    height: 64px;
    background: var(--light-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-blue);
    transition: all 0.4s ease;
}

.stat-card-timeas:hover .stat-icon-timeas {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.stat-number-big {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label-big {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.stat-desc-big {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1200px) {
    .stats-grid-timeas {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sectors-timeas {
        padding: 4rem 0;
    }
    
    .section-title-timeas {
        font-size: 2rem;
    }
    
    .sector-card-timeas {
        min-width: 300px;
        max-width: 300px;
    }
    
    .stats-grid-timeas {
        grid-template-columns: 1fr;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   TIMEAS CONTACT PAGE - MODERN DESIGN
   ============================================ */

.contact-hero-timeas {
    padding: 12rem 0 6rem;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero-timeas::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 144, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-hero-content-timeas {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-title-timeas {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-subtitle-timeas {
    font-size: 1.25rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.contact-content-timeas {
    padding: 6rem 0;
    background: var(--bg-white);
}

.contact-grid-timeas {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Form Styles */
.contact-form-timeas {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

.success-message-timeas {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(30, 144, 255, 0.1);
    border: 1px solid var(--primary-blue);
    border-radius: 12px;
    margin-bottom: 2rem;
    color: var(--primary-blue);
}

.success-message-timeas svg {
    flex-shrink: 0;
}

.success-message-timeas p {
    margin: 0;
    font-weight: 500;
}

.form-title-timeas {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-subtitle-timeas {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

.form-timeas {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row-timeas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group-timeas {
    display: flex;
    flex-direction: column;
}

.form-group-timeas label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group-timeas input,
.form-group-timeas textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-dark);
    background: var(--bg-white);
    transition: all 0.3s ease;
}

.form-group-timeas input:focus,
.form-group-timeas textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(30, 144, 255, 0.1);
}

.form-group-timeas textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-submit-timeas {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(30, 144, 255, 0.3);
}

.btn-submit-timeas:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(30, 144, 255, 0.4);
}

.btn-submit-timeas svg {
    transition: transform 0.3s ease;
}

.btn-submit-timeas:hover svg {
    transform: translateX(4px);
}

/* Info Cards */
.contact-info-timeas {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-title-timeas {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.info-cards-timeas {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card-timeas {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.info-card-timeas:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.info-icon-timeas {
    width: 56px;
    height: 56px;
    background: var(--light-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-card-timeas:hover .info-icon-timeas {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.1) rotate(-5deg);
}

.info-content-timeas h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.info-content-timeas p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.info-content-timeas a {
    font-size: 1rem;
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content-timeas a:hover {
    color: var(--dark-blue);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 968px) {
    .contact-hero-timeas {
        padding: 8rem 0 4rem;
    }
    
    .contact-title-timeas {
        font-size: 2.5rem;
    }
    
    .contact-grid-timeas {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form-row-timeas {
        grid-template-columns: 1fr;
    }
    
    .contact-form-timeas {
        padding: 2rem;
    }
}

/* ============================================
   TIMEAS ABOUT PAGE - MODERN DESIGN
   ============================================ */

.about-hero-timeas {
    padding: 12rem 0 6rem;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.about-hero-timeas::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 144, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.about-hero-content-timeas {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-title-timeas {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-subtitle-timeas {
    font-size: 1.25rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.about-content-timeas {
    padding: 6rem 0;
    background: var(--bg-white);
}

/* Story Section */
.about-story-timeas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 8rem;
}

.story-badge-timeas {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--light-blue);
    border: 1px solid rgba(30, 144, 255, 0.2);
    border-radius: 50px;
    color: var(--primary-blue);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.story-title-timeas {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.story-text-timeas {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-image-timeas {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--light-blue) 0%, rgba(30, 144, 255, 0.05) 100%);
    border-radius: 32px;
    border: 1px solid var(--border-light);
}

.story-image-timeas img {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    animation: float 6s ease-in-out infinite;
}

/* Values Section */
.values-section-timeas {
    padding: 4rem 0;
}

.section-header-center-timeas {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-title-center-timeas {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-desc-center-timeas {
    font-size: 1.125rem;
    color: var(--text-gray);
}

.values-grid-timeas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card-timeas {
    padding: 2.5rem;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.value-card-timeas:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.value-icon-timeas {
    width: 80px;
    height: 80px;
    background: var(--light-blue);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-blue);
    transition: all 0.4s ease;
}

.value-card-timeas:hover .value-icon-timeas {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.1) rotate(-5deg);
}

.value-title-timeas {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.value-desc-timeas {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 968px) {
    .about-hero-timeas {
        padding: 8rem 0 4rem;
    }
    
    .about-title-timeas {
        font-size: 2.5rem;
    }
    
    .about-story-timeas {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 5rem;
    }
    
    .story-title-timeas {
        font-size: 2rem;
    }
    
    .story-image-timeas {
        order: -1;
    }
    
    .values-grid-timeas {
        grid-template-columns: 1fr;
    }
    
    .section-title-center-timeas {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .values-grid-timeas {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   TIMEAS SECTORS PAGE - MODERN DESIGN
   ============================================ */

.sectors-hero-timeas {
    padding: 12rem 0 6rem;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.sectors-hero-timeas::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 144, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.sectors-hero-content-timeas {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.sectors-hero-title-timeas {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.sectors-hero-subtitle-timeas {
    font-size: 1.25rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Sectors List */
.sectors-list-timeas {
    padding: 6rem 0;
    background: var(--bg-white);
}

.sectors-list-grid-timeas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.sector-list-card-timeas {
    position: relative;
    display: block;
    text-decoration: none;
    border-radius: 24px;
    overflow: hidden;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 480px;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.sector-list-card-timeas::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, transparent 50%, var(--primary-blue) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.sector-list-card-timeas:hover::before {
    opacity: 1;
}

.sector-list-card-timeas:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.sector-list-image-timeas {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 240px;
    overflow: hidden;
    transition: all 0.5s ease;
}

.sector-list-card-timeas:hover .sector-list-image-timeas {
    height: 280px;
}

.sector-list-image-timeas img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(0.2);
}

.sector-list-card-timeas:hover .sector-list-image-timeas img {
    opacity: 0.9;
    transform: scale(1.08);
    filter: grayscale(0);
}

.sector-list-overlay-timeas {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    transition: background 0.5s ease;
}

.sector-list-card-timeas:hover .sector-list-overlay-timeas {
    background: linear-gradient(180deg, transparent 0%, rgba(30, 144, 255, 0.4) 100%);
}

.sector-list-content-timeas {
    position: relative;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, 
        var(--bg-white) 0%, 
        var(--bg-white) 45%,
        transparent 75%,
        transparent 100%);
}

body.dark-theme .sector-list-content-timeas {
    background: linear-gradient(to top, 
        rgba(10, 14, 20, 1) 0%, 
        rgba(10, 14, 20, 0.95) 45%,
        rgba(10, 14, 20, 0.7) 75%,
        transparent 100%);
}

.sector-list-label-timeas {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    display: block;
}

.sector-list-title-timeas {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.sector-list-card-timeas:hover .sector-list-title-timeas {
    color: var(--primary-blue);
}

.sector-list-desc-timeas {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sector-list-link-timeas {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--light-blue);
    border-radius: 12px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.sector-list-card-timeas:hover .sector-list-link-timeas {
    background: var(--primary-blue);
    color: white;
    transform: translateX(4px);
}

.sector-list-link-timeas svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.sector-list-card-timeas:hover .sector-list-link-timeas svg {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 968px) {
    .sectors-hero-timeas {
        padding: 8rem 0 4rem;
    }
    
    .sectors-hero-title-timeas {
        font-size: 2.5rem;
    }
    
    .sectors-list-grid-timeas {
        grid-template-columns: 1fr;
    }
    
    .sector-list-card-timeas {
        height: 450px;
    }
    
    .sector-list-title-timeas {
        font-size: 1.75rem;
    }
}

/* ============================================
   TIMEAS SECTOR DETAIL PAGE - MODERN DESIGN
   ============================================ */

.sector-detail-timeas {
    padding: 10rem 0 6rem;
    background: var(--bg-white);
}

.back-link-timeas {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 3rem;
    padding: 0.75rem 1.25rem;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.back-link-timeas:hover {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
    background: var(--light-blue);
    transform: translateX(-4px);
}

.back-link-timeas svg {
    transition: transform 0.3s ease;
}

.back-link-timeas:hover svg {
    transform: translateX(-4px);
}

/* Detail Hero */
.detail-hero-timeas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 6rem;
    padding: 4rem;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    border-radius: 32px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

.detail-badge-timeas {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--light-blue);
    border: 1px solid rgba(30, 144, 255, 0.2);
    border-radius: 50px;
    color: var(--primary-blue);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.detail-title-timeas {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.detail-description-timeas {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.detail-hero-image-timeas {
    position: relative;
}

.detail-image-wrapper-timeas {
    position: relative;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

.detail-image-wrapper-timeas::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.2) 0%, transparent 100%);
    z-index: 1;
}

.detail-image-wrapper-timeas img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.detail-image-wrapper-timeas:hover img {
    transform: scale(1.05);
}

/* Features Section */
.sector-features-timeas {
    padding: 4rem 0;
}

.features-header-timeas {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.features-title-timeas {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.features-grid-timeas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-card-timeas {
    position: relative;
    padding: 2.5rem;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card-timeas:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.feature-number-timeas {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    font-weight: 800;
    color: var(--light-blue);
    line-height: 1;
    transition: all 0.3s ease;
}

.feature-card-timeas:hover .feature-number-timeas {
    color: var(--primary-blue);
    transform: scale(1.1);
}

.feature-icon-timeas {
    width: 64px;
    height: 64px;
    background: var(--light-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    transition: all 0.4s ease;
}

.feature-card-timeas:hover .feature-icon-timeas {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.1) rotate(-5deg);
}

.feature-title-timeas {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.feature-desc-timeas {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 968px) {
    .sector-detail-timeas {
        padding: 8rem 0 4rem;
    }
    
    .detail-hero-timeas {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2.5rem;
    }
    
    .detail-title-timeas {
        font-size: 2.5rem;
    }
    
    .detail-description-timeas {
        font-size: 1.125rem;
    }
    
    .detail-image-wrapper-timeas {
        height: 300px;
    }
    
    .features-grid-timeas {
        grid-template-columns: 1fr;
    }
    
    .features-title-timeas {
        font-size: 2rem;
    }
}


/* ============================================
   NEW HERO DESIGN - Timeas 2.0
   ============================================ */

.hero-timeas-new {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a1628 0%, #1a2942 100%);
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero-content-new {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.hero-text-side-new {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 3.5rem;
    background: linear-gradient(135deg, #00a855 0%, #00cc6a 50%, #1e90ff 100%);
    position: relative;
    overflow: hidden;
}

/* Sağ üst mavi gradient */
.hero-text-side-new::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30, 144, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* Sol alt mavi gradient */
.hero-text-side-new::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(30, 144, 255, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

body.dark-theme .hero-text-side-new {
    background: linear-gradient(135deg, #0a0e14 0%, #1a1d23 100%);
}

body.dark-theme .hero-text-side-new::before {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

body.dark-theme .hero-text-side-new::after {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
}

body:not(.dark-theme) .hero-text-side-new {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

body:not(.dark-theme) .hero-text-side-new::before {
    background: radial-gradient(circle, rgba(30, 144, 255, 0.08) 0%, transparent 70%);
}

body:not(.dark-theme) .hero-text-side-new::after {
    background: radial-gradient(circle, rgba(30, 144, 255, 0.06) 0%, transparent 70%);
}

.hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    background: rgba(0, 204, 106, 0.15);
    border: 1px solid rgba(0, 204, 106, 0.3);
    border-radius: 50px;
    color: #00cc6a;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    width: fit-content;
    position: relative;
    z-index: 1;
}

body:not(.dark-theme) .hero-badge-new {
    background: rgba(0, 204, 106, 0.1);
    border-color: rgba(0, 204, 106, 0.2);
    color: #00a855;
}

.hero-badge-new svg {
    width: 16px;
    height: 16px;
}

.hero-title-new {
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    color: white;
    position: relative;
    z-index: 1;
}

body:not(.dark-theme) .hero-title-new {
    color: #1a1a1a;
}

.hero-subtitle-new {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

body:not(.dark-theme) .hero-subtitle-new {
    color: #6c757d;
}

.hero-cta-new {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.btn-primary-new {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    background: #00cc6a;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid #00cc6a;
}

.btn-primary-new:hover {
    background: #00a855;
    border-color: #00a855;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 204, 106, 0.4);
}

.btn-primary-new svg {
    width: 18px;
    height: 18px;
}

.btn-outline-new {
    display: inline-flex;
    align-items: center;
    padding: 0.9rem 2rem;
    background: transparent;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-new:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-stats-new {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.stat-item-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number-new {
    font-size: 2.8rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-label-new {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.hero-image-side-new {
    position: relative;
    overflow: hidden;
}

/* Image overlay removed */

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    filter: blur(0px);
}

.hero-image-side-new:hover .hero-main-image {
    filter: blur(0px);
    transform: scale(1.05);
    transition: all 0.5s ease;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content-new {
        flex-direction: column;
        min-height: auto;
    }
    
    .hero-text-side-new {
        padding: 6rem 3rem 4rem;
        min-height: auto;
    }
    
    .hero-title-new {
        font-size: 2.8rem;
    }
    
    .hero-image-side-new {
        min-height: 60vh;
        order: 2;
    }
}

@media (max-width: 768px) {
    .hero-esokak-new,
    .hero-timeas-new {
        min-height: auto !important;
    }
    
    .hero-content-new {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
    }
    
    .hero-text-side-new {
        padding: 6rem 2rem 3rem !important;
        min-height: auto !important;
        order: 1 !important;
        width: 100% !important;
    }
    
    .hero-title-new {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }
    
    .hero-subtitle-new {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }
    
    .hero-cta-new {
        flex-direction: column !important;
        gap: 0.75rem !important;
        margin-bottom: 2rem !important;
    }
    
    .btn-primary-new,
    .btn-outline-new {
        width: 100% !important;
        justify-content: center !important;
        padding: 0.875rem 1.5rem !important;
    }
    
    .hero-stats-new {
        gap: 1.5rem !important;
    }
    
    .stat-number-new {
        font-size: 2rem !important;
    }
    
    .stat-label-new {
        font-size: 0.75rem !important;
    }
    
    .hero-image-side-new {
        min-height: 50vh !important;
        max-height: 50vh !important;
        order: 2 !important;
        width: 100% !important;
    }
    
    .hero-main-image {
        height: 100% !important;
        object-fit: cover !important;
    }
    
    /* Mobilde touch ile aktif olunca blur kalkacak */
    .hero-image-side-new:active .hero-main-image {
        filter: blur(0px) !important;
        transform: scale(1.05) !important;
    }
    
    .hero-badge-new {
        font-size: 0.75rem !important;
        padding: 0.4rem 0.8rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* Gradient efektlerini mobilde küçült */
    .hero-text-side-new::before {
        width: 250px !important;
        height: 250px !important;
    }
    
    .hero-text-side-new::after {
        width: 200px !important;
        height: 200px !important;
    }
}


/* ============================================
   LIGHT THEME - Hero Section
   ============================================ */

body:not(.dark-theme) .hero-timeas-new {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

body:not(.dark-theme) .hero-text-side-new {
    color: #1a1a1a;
}

body:not(.dark-theme) .hero-badge-new {
    background: rgba(30, 144, 255, 0.1);
    border-color: rgba(30, 144, 255, 0.2);
}

body:not(.dark-theme) .hero-title-new {
    color: #1a1a1a;
}

body:not(.dark-theme) .hero-subtitle-new {
    color: #6c757d;
}

body:not(.dark-theme) .btn-outline-new {
    color: #1a1a1a;
    border-color: #dee2e6;
}

body:not(.dark-theme) .btn-outline-new:hover {
    background: white;
    border-color: #1e90ff;
    color: #1e90ff;
}

body:not(.dark-theme) .stat-label-new {
    color: #6c757d;
}

body:not(.dark-theme) .stat-number-new {
    color: #1e90ff;
}

/* Light theme image overlay removed */


/* ============================================
   BARET ENERJI - SECTORS SECTION
   ============================================ */

.sectors-baret {
    padding: 100px 0;
    background: var(--bg-lighter);
}

.section-header-baret {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge-baret {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--light-green);
    color: var(--primary-green);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
}

body.dark-theme .section-badge-baret {
    background: rgba(0, 204, 106, 0.1);
    color: var(--primary-green);
}

.section-title-baret {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-desc-baret {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.sectors-grid-baret {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.sector-card-baret {
    position: relative;
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.6s ease-out both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sector-card-baret:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.sector-image-baret {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.sector-image-baret img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.sector-card-baret:hover .sector-image-baret img {
    transform: scale(1.1);
}

.sector-overlay-baret {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sector-card-baret:hover .sector-overlay-baret {
    opacity: 1;
}

.sector-content-baret {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sector-icon-baret {
    width: 48px;
    height: 48px;
    background: var(--light-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

body.dark-theme .sector-icon-baret {
    background: rgba(0, 204, 106, 0.1);
}

.sector-icon-baret svg {
    color: var(--primary-green);
}

.sector-card-baret:hover .sector-icon-baret {
    background: var(--primary-green);
    transform: rotate(5deg) scale(1.1);
}

.sector-card-baret:hover .sector-icon-baret svg {
    color: white;
}

.sector-title-baret {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.sector-desc-baret {
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.sector-link-baret {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: gap 0.3s ease;
}

.sector-card-baret:hover .sector-link-baret {
    gap: 12px;
}

.sector-link-baret svg {
    transition: transform 0.3s ease;
}

.sector-card-baret:hover .sector-link-baret svg {
    transform: translateX(4px);
}

/* Stats Section - Baret */
.stats-section-baret {
    padding: 80px 0;
    background: var(--bg-white);
}

.stats-grid-baret {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.stat-card-baret {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-lighter);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stat-card-baret:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-icon-baret {
    width: 64px;
    height: 64px;
    background: var(--light-green);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

body.dark-theme .stat-icon-baret {
    background: rgba(0, 204, 106, 0.1);
}

.stat-icon-baret svg {
    color: var(--primary-green);
}

.stat-number-big {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label-big {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.stat-desc-big {
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
    .sectors-grid-baret {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .section-title-baret {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .sectors-baret {
        padding: 60px 0;
    }
    
    .sectors-grid-baret {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-header-baret {
        margin-bottom: 40px;
    }
    
    .section-title-baret {
        font-size: 1.75rem;
    }
    
    .section-desc-baret {
        font-size: 1rem;
    }
    
    .sector-image-baret {
        height: 180px;
    }
    
    .sector-content-baret {
        padding: 20px;
    }
    
    .stats-grid-baret {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-number-big {
        font-size: 2.5rem;
    }
}


/* ============================================
   BARET ENERJI - SECTORS PAGE
   ============================================ */

.sectors-hero-baret {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--light-blue) 100%);
    text-align: center;
}

body.dark-theme .sectors-hero-baret {
    background: linear-gradient(135deg, rgba(0, 204, 106, 0.1) 0%, rgba(30, 144, 255, 0.1) 100%);
}

.sectors-hero-content-baret {
    max-width: 800px;
    margin: 0 auto;
}

.sectors-hero-title-baret {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.sectors-hero-subtitle-baret {
    font-size: 1.25rem;
    color: var(--text-gray);
}

/* Sectors List */
.sectors-list-baret {
    padding: 80px 0;
    background: var(--bg-lighter);
}

.sectors-list-grid-baret {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.sector-list-card-baret {
    position: relative;
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.6s ease-out both;
}

.sector-list-card-baret:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.sector-list-image-baret {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.sector-list-image-baret img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.sector-list-card-baret:hover .sector-list-image-baret img {
    transform: scale(1.1);
}

.sector-list-overlay-baret {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sector-list-card-baret:hover .sector-list-overlay-baret {
    opacity: 1;
}

.sector-list-content-baret {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sector-list-label-baret {
    display: inline-block;
    padding: 6px 14px;
    background: var(--light-green);
    color: var(--primary-green);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 16px;
    align-self: flex-start;
}

body.dark-theme .sector-list-label-baret {
    background: rgba(0, 204, 106, 0.1);
}

.sector-list-title-baret {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.sector-list-desc-baret {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
}

.sector-list-link-baret {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1rem;
    transition: gap 0.3s ease;
}

.sector-list-card-baret:hover .sector-list-link-baret {
    gap: 12px;
}

.sector-list-link-baret svg {
    transition: transform 0.3s ease;
}

.sector-list-card-baret:hover .sector-list-link-baret svg {
    transform: translateX(4px);
}

/* Sector Detail */
.sector-detail-baret {
    padding: 140px 0 80px;
    background: var(--bg-lighter);
}

.back-link-baret {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.back-link-baret:hover {
    color: var(--primary-green);
    gap: 12px;
}

.detail-hero-baret {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.detail-badge-baret {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--light-green);
    color: var(--primary-green);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
}

body.dark-theme .detail-badge-baret {
    background: rgba(0, 204, 106, 0.1);
}

.detail-title-baret {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.detail-description-baret {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.detail-image-wrapper-baret {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.detail-image-wrapper-baret img {
    width: 100%;
    height: auto;
    display: block;
}

/* Sector Features */
.sector-features-baret {
    margin-top: 60px;
}

.features-header-baret {
    text-align: center;
    margin-bottom: 50px;
}

.features-title-baret {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-top: 16px;
}

.features-grid-baret {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card-baret {
    position: relative;
    background: var(--bg-white);
    padding: 36px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease-out both;
}

.feature-card-baret:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-number-baret {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: var(--light-green);
    opacity: 0.3;
    line-height: 1;
}

body.dark-theme .feature-number-baret {
    color: rgba(0, 204, 106, 0.2);
}

.feature-icon-baret {
    width: 56px;
    height: 56px;
    background: var(--light-green);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

body.dark-theme .feature-icon-baret {
    background: rgba(0, 204, 106, 0.1);
}

.feature-icon-baret svg {
    color: var(--primary-green);
}

.feature-card-baret:hover .feature-icon-baret {
    background: var(--primary-green);
    transform: rotate(5deg) scale(1.1);
}

.feature-card-baret:hover .feature-icon-baret svg {
    color: white;
}

.feature-title-baret {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-desc-baret {
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .sectors-list-grid-baret {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .detail-hero-baret {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid-baret {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .sectors-hero-baret {
        padding: 120px 0 60px;
    }
    
    .sectors-hero-title-baret {
        font-size: 2rem;
    }
    
    .sectors-hero-subtitle-baret {
        font-size: 1.125rem;
    }
    
    .sectors-list-baret {
        padding: 60px 0;
    }
    
    .sectors-list-grid-baret {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sector-detail-baret {
        padding: 120px 0 60px;
    }
    
    .detail-title-baret {
        font-size: 2rem;
    }
    
    .detail-description-baret {
        font-size: 1rem;
    }
    
    .features-title-baret {
        font-size: 2rem;
    }
    
    .features-grid-baret {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card-baret {
        padding: 28px;
    }
}
