:root {
    --black: #081236;
    --white: #ffffff;
    --gray-100: #f4f7fb;
    --gray-300: #c1cedf;
    --gray-500: #6682ad;
    --gray-700: #1b2e69;
    --gray-900: #0e1a49;
    --primary: #172c81; /* Vibrant Blue */
    --primary-light: #2544bd;
    --accent: #20c997; /* A nice teal accent for insurance */
    --font: 'Manrope', sans-serif;
}

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

html, body {
    scroll-behavior: smooth;
    background: var(--gray-100);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

body {
    font-family: var(--font);
    color: var(--black);
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--primary);
    color: var(--white);
}

a { color: inherit; text-decoration: none; }

/* ==================== TUSAŞ-STYLE CORPORATE HEADER ==================== */
.main-header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    background: #ffffff;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: padding 0.4s;
}

.main-header.scrolled {
    /* Optional: you can still shrink padding on scroll if desired */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    max-width: 1600px;
    margin: 0 auto;
    transition: padding 0.4s;
}

.main-header.scrolled .header-container {
    padding: 1rem 4rem;
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.logo-icon {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid rgba(0, 0, 0, 0.15);
    padding-left: 1.2rem;
}

.logo-text {
    font-family: var(--font);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.1rem;
    color: var(--primary);
    transition: color 0.4s;
    text-transform: uppercase;
    line-height: 1;
}

.logo-slogan {
    font-size: 0.38rem;
    font-weight: 800;
    letter-spacing: 0.03rem;
    color: #000000;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
    margin-top: 2px;
}

.corporate-nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.corporate-nav .nav-link {
    color: var(--gray-900);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.4s;
}

.corporate-nav .nav-link:hover, .corporate-nav .nav-link.active {
    color: var(--primary);
}

.corporate-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0;
    width: 0; height: 3px;
    background: var(--primary);
    transition: width 0.3s ease, background 0.4s;
}

.corporate-nav .nav-link:hover::after, .corporate-nav .nav-link.active::after {
    width: 100%;
}

.header-right-tools {
    display: flex;
    align-items: center;
}

.header-separator {
    width: 1px;
    height: 35px;
    background: rgba(0,0,0,0.1);
    margin: 0 2rem;
    transition: background 0.4s;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--primary);
    transition: color 0.4s;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
    font-weight: 800;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.lang-selector:hover { opacity: 1; }

/* Menu Toggle (Hamburger) */
.menu-toggle {
    display: none;
    cursor: pointer;
    width: 32px;
    height: 20px;
    position: relative;
    z-index: 1000;
}

.menu-toggle span {
    position: absolute;
    left: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

.menu-toggle span:nth-child(1) { top: 0; width: 22px; }
.menu-toggle span:nth-child(1)::after {
    content: ''; position: absolute; right: -10px; top: 0; width: 6px; height: 2px;
    background: inherit; transition: all 0.4s;
}

.menu-toggle span:nth-child(2) { top: 9px; width: 32px; }

.menu-toggle span:nth-child(3) { top: 18px; width: 22px; left: auto; right: 0; }
.menu-toggle span:nth-child(3)::before {
    content: ''; position: absolute; left: -10px; top: 0; width: 6px; height: 2px;
    background: inherit; transition: all 0.4s;
}

.menu-toggle.active span:nth-child(1) { width: 32px; transform: translateY(9px) rotate(45deg); background: var(--white); }
.menu-toggle.active span:nth-child(1)::after { opacity: 0; }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(10px); background: var(--white); }
.menu-toggle.active span:nth-child(3) { width: 32px; transform: translateY(-9px) rotate(-45deg); background: var(--white); }
.menu-toggle.active span:nth-child(3)::before { opacity: 0; }

/* Header State when Mobile Menu is Open */
.main-header.menu-open {
    background: transparent !important;
    box-shadow: none !important;
    border-bottom: 1px solid rgba(0,0,0,0.05) !important;
}

.main-header.menu-open .logo-text { color: var(--primary) !important; }
.main-header.menu-open .logo-slogan { color: var(--gray-500) !important; }
.main-header.menu-open .menu-toggle span { background: var(--primary) !important; }

.mobile-menu {
    position: fixed; inset: 0; z-index: 99;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
    padding: 0 15%; gap: 2rem; opacity: 0; visibility: hidden;
    transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

.mobile-menu.active { opacity: 1; visibility: visible; }

.mobile-link {
    font-size: 1.5rem; font-weight: 700; letter-spacing: 0.15rem;
    color: var(--gray-500); text-transform: uppercase; position: relative;
    transition: color 0.3s, transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity 0.5s ease;
    transform: translateY(20px); opacity: 0;
}

.mobile-menu.active .mobile-link { transform: translateY(0); opacity: 1; }
.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-link:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-link:nth-child(6) { transition-delay: 0.35s; }

.mobile-link:hover, .mobile-link.active { color: var(--primary); }
.mobile-link::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px;
    background: var(--primary); transition: width 0.3s;
}
.mobile-link:hover::after, .mobile-link.active::after { width: 40px; }

/* ==================== HERO ==================== */
main { position: relative; z-index: 10; }

.panel {
    min-height: 100vh;
    padding: 8rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hero-section {
    background: #071961;
    color: var(--white);
    padding-bottom: 4rem;
    overflow: hidden;
}

.hero-bg-anim {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.animated-bg-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(3, 10, 40, 0.8);
    filter: blur(80px);
    animation: float 20s infinite linear;
}

.shape1 { width: 500px; height: 500px; top: -10%; left: -10%; animation-duration: 25s; }
.shape2 { width: 300px; height: 300px; bottom: 10%; right: -5%; animation-duration: 18s; animation-direction: reverse; }
.shape3 { width: 200px; height: 200px; top: 40%; left: 50%; animation-duration: 22s; }

@keyframes float {
    0% { transform: rotate(0deg) translate(0, 0) scale(1); }
    33% { transform: rotate(120deg) translate(50px, -50px) scale(1.1); }
    66% { transform: rotate(240deg) translate(-20px, 50px) scale(0.9); }
    100% { transform: rotate(360deg) translate(0, 0) scale(1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-top: 5rem;
}

.hero-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    width: 100%;
}

.mega-text {
    font-weight: 900;
    font-size: clamp(3.5rem, 9vw, 8rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.line { display: block; overflow: hidden; }
.word { display: inline-block; transform: translateY(100%); transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-text.visible .word { transform: translateY(0); }
.reveal-text .line:nth-child(2) .word { transition-delay: 0.1s; }
.dot { color: var(--accent); }

/* Deprecated hero-bottom, now integrated into columns */
.hero-bottom {
    display: none;
}

.hero-right-col {
    display: flex;
    align-items: center;
    gap: 5rem;
}

@media (max-width: 1400px) {
    .hero-right-col { gap: 3rem; }
}

.hero-desc {
    flex: 0 0 auto;
    max-width: 450px;
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    border-left: 2px solid var(--accent);
    padding-left: 1.5rem;
    margin-top: 1.5rem;
}

.reveal-up {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }

.scroll-indicator { display: flex; flex-direction: column; align-items: center; gap: 1rem; margin-left: auto; }
.scroll-indicator span { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2rem; }
.scroll-line-anim { width: 1px; height: 60px; background: rgba(255,255,255,0.3); position: relative; overflow: hidden; }
.scroll-dot { width: 100%; height: 20px; background: var(--accent); animation: scrollMove 2s ease-in-out infinite; }
@keyframes scrollMove {
    0% { transform: translateY(-20px); }
    100% { transform: translateY(60px); }
}

/* Hero Interactive Visuals */
.hero-visuals {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    z-index: 2;
    margin-top: 1rem;
}

.anim-widget {
    position: relative;
    width: 150px;
    height: 150px;
    flex-shrink: 0;
    background: rgba(8, 18, 54, 0.4); /* Darker glass effect */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s;
}

.widget-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    text-decoration: none;
}

.widget-wrapper:hover .anim-widget {
    transform: scale(1.05) translateY(-10px);
    background: rgba(8, 18, 54, 0.6);
}

.widget-label {
    font-size: 0.95rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    text-align: center;
    transition: color 0.4s;
}

.widget-wrapper:hover .widget-label {
    color: var(--accent);
}

.widget-car, .widget-house, .widget-health, .widget-damage { 
    top: auto; right: auto; margin: 0; 
}

.shield-halo {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px dashed rgba(32, 201, 151, 0.6); /* Accent color */
    animation: rotateHalo 10s linear infinite;
    z-index: 1;
}

@keyframes rotateHalo {
    to { transform: rotate(360deg); }
}

.svg-car, .svg-house, .svg-health, .svg-damage {
    width: 80px;
    height: 80px;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.svg-damage .doc-line {
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
    animation: writeDoc 2s ease-in-out infinite alternate;
}
@keyframes writeDoc {
    to { stroke-dashoffset: 0; }
}

.road-line {
    animation: dashRoad 1s linear infinite;
}

@keyframes dashRoad {
    to { stroke-dashoffset: -20; }
}

.svg-house path {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: drawHouse 3s ease forwards infinite alternate;
}

@keyframes drawHouse {
    to { stroke-dashoffset: 0; }
}

.svg-health path:first-child {
    animation: heartbeat 2s ease-in-out infinite;
    transform-origin: center;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    15% { transform: scale(1.1); }
    30% { transform: scale(1); }
    45% { transform: scale(1.1); }
    60% { transform: scale(1); }
    100% { transform: scale(1); }
}


/* ==================== MARQUEE ==================== */
.marquee-strip {
    overflow: hidden; padding: 2rem 0;
    background: var(--white); color: var(--primary);
    border-bottom: 1px solid var(--gray-300);
}
.marquee-track { display: flex; white-space: nowrap; animation: marquee 25s linear infinite; }
.marquee-track span { font-size: 1.1rem; font-weight: 800; letter-spacing: 0.2rem; padding-right: 0; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ==================== CORPORATE ABOUT ==================== */
.corp-about-section { background: var(--gray-100); padding: 8rem 0; position: relative; overflow: hidden; }
.corp-about-bg-text {
    position: absolute; top: -20px; left: -20px;
    font-size: 25rem; font-weight: 900; color: #ffffff;
    line-height: 1; z-index: 0; pointer-events: none; opacity: 0.5;
}
.corp-container { max-width: 1600px; margin: 0 auto; padding: 0 4rem; position: relative; z-index: 1; }
.flex-container { display: flex; gap: 6rem; align-items: center; }
.corp-about-content { flex: 1; }
.corp-subtitle { color: var(--primary); font-size: 1rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.2rem; display: block; margin-bottom: 1.5rem; border-left: 4px solid var(--accent); padding-left: 1rem; }
.corp-title { font-size: 3rem; font-weight: 900; color: var(--black); line-height: 1.2; margin-bottom: 2rem; }
.corp-desc { font-size: 1.15rem; color: var(--gray-500); line-height: 1.8; margin-bottom: 3rem; }
.corp-list { list-style: none; margin-bottom: 4rem; }
.corp-list li { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; font-size: 1.1rem; color: var(--gray-900); font-weight: 600; }
.corp-check { width: 24px; height: 24px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.corp-btn { display: inline-flex; align-items: center; gap: 1rem; background: var(--primary); color: #fff; padding: 1.2rem 3.5rem; font-size: 1.1rem; font-weight: 800; border-radius: 8px; text-transform: uppercase; letter-spacing: 0.1rem; transition: background 0.3s, transform 0.3s, box-shadow 0.3s; box-shadow: 0 10px 20px rgba(23, 44, 129, 0.2); }
.corp-btn:hover { background: var(--primary-light); transform: translateY(-3px); box-shadow: 0 15px 25px rgba(23, 44, 129, 0.3); color: #fff; }

.corp-about-image { flex: 1; display: flex; justify-content: center; align-items: center; }
.shield-icon-large { width: 300px; height: 300px; color: var(--primary); background: #fff; border-radius: 30px; display: flex; align-items: center; justify-content: center; box-shadow: 0 30px 60px rgba(0,0,0,0.05); position: relative; }
.shield-icon-large::before { content: ''; position: absolute; inset: -20px; border: 2px dashed var(--gray-300); border-radius: 40px; animation: rotateHalo 20s linear infinite; }
.shield-icon-large svg { width: 150px; height: 150px; }

/* ==================== SERVICES SECTION ==================== */
.section-production { padding: 8rem 4rem; background: #ffffff; }
.production-header { text-align: center; margin-bottom: 5rem; }
.production-header .section-number { font-size: 1.2rem; font-weight: 800; color: var(--primary); display: block; margin-bottom: 1rem; }
.production-header h2 { font-size: 3.5rem; font-weight: 900; color: var(--black); line-height: 1.1; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1400px; margin: 0 auto; }
.product-card { background: var(--gray-100); padding: 4rem 3rem; position: relative; border-radius: 16px; transition: transform 0.4s, box-shadow 0.4s, background 0.4s; overflow: hidden; }
.product-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(23, 44, 129, 0.1); background: var(--primary); color: #fff; }
.card-icon { width: 60px; height: 60px; color: var(--primary); margin-bottom: 2rem; transition: color 0.4s; }
.product-card:hover .card-icon { color: var(--accent); }
.product-card h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 1.5rem; transition: color 0.4s; }
.product-card p { font-size: 1.05rem; color: var(--gray-500); line-height: 1.6; transition: color 0.4s; }
.product-card:hover p, .product-card:hover h3 { color: #fff; }
.card-line { width: 40px; height: 3px; background: var(--accent); margin-top: 2rem; transition: width 0.4s, background 0.4s; }
.product-card:hover .card-line { width: 80px; background: #fff; }

/* ==================== NUMBERS ==================== */
.section-numbers { padding: 8rem 0; background: var(--gray-100); border-top: 1px solid var(--gray-300); }
.numbers-container { display: flex; align-items: center; gap: 4rem; max-width: 1400px; margin: 0 auto; padding: 0 4rem; }
.numbers-title-area { flex: 0.8; }
.numbers-title-area h2 { font-size: 2.5rem; font-weight: 900; color: var(--black); line-height: 1.2; margin-bottom: 1.5rem; }
.numbers-title-area p { font-size: 1.1rem; color: var(--gray-500); line-height: 1.7; }
.numbers-grid { flex: 1.2; display: flex; justify-content: space-between; align-items: center; }
.number-item { text-align: center; flex: 1; position: relative; }
.number-item:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 20%; height: 60%; width: 1px; background: var(--gray-300); }
.big-number { font-size: 4.5rem; font-weight: 900; color: var(--primary); letter-spacing: -0.1rem; }
.number-plus { font-size: 2.5rem; font-weight: 700; color: var(--accent); vertical-align: super; }
.number-label { display: block; font-size: 0.95rem; font-weight: 800; letter-spacing: 0.15rem; color: var(--gray-700); margin-top: 1rem; text-transform: uppercase; }

/* ==================== GLOBAL REACH ==================== */
.corp-global-section { padding: 8rem 0; background: #ffffff; }
.global-header { text-align: center; margin-bottom: 5rem; }
.global-content-box { display: flex; align-items: center; gap: 5rem; max-width: 1400px; margin: 0 auto; padding: 0 4rem; }
.global-text { flex: 1; }
.global-text p { font-size: 1.2rem; line-height: 1.8; color: var(--gray-500); margin-bottom: 2.5rem; }
.global-map-image { flex: 1; }
.insurance-partner-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.ip-box { background: var(--gray-100); border: 1px solid var(--gray-300); padding: 2rem 1rem; text-align: center; font-weight: 800; color: var(--gray-700); border-radius: 8px; transition: transform 0.3s; }
.ip-box:hover { transform: translateY(-5px); border-color: var(--primary); color: var(--primary); }

/* ==================== CONTACT ==================== */
.corp-contact-section { padding: 8rem 0; background: var(--primary); color: #ffffff; }
.contact-box { display: flex; gap: 6rem; max-width: 1400px; margin: 0 auto; padding: 0 4rem; }
.contact-left { flex: 1; }
.contact-left .corp-subtitle { border-color: var(--accent); color: #fff; }
.contact-left h2 { font-size: 3.5rem; font-weight: 900; color: #ffffff; line-height: 1.1; margin-bottom: 1.5rem; }
.contact-left p { font-size: 1.15rem; color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 3rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.detail-item { display: flex; align-items: center; gap: 1.2rem; font-size: 1.1rem; font-weight: 600; }
.detail-item svg { color: var(--accent); flex-shrink: 0; width: 24px; height: 24px; }
.contact-right { flex: 1.2; background: #ffffff; padding: 4rem; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.premium-form { display: flex; flex-direction: column; gap: 3rem; }
.input-group { position: relative; }
.premium-form input, .premium-form select { width: 100%; padding: 0.5rem 0; background: transparent; border: none; border-bottom: 1px solid var(--gray-300); color: var(--black); font-size: 1.1rem; font-family: inherit; transition: border-color 0.3s; }
.premium-form select { color: var(--gray-500); cursor: pointer; }
.premium-form input:focus, .premium-form select:focus { outline: none; border-bottom-color: transparent; }
.premium-form label { position: absolute; left: 0; top: 0.5rem; color: var(--gray-500); font-size: 1.1rem; pointer-events: none; transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); }
.premium-form input:focus ~ label, .premium-form input:not(:placeholder-shown) ~ label { top: -1.5rem; font-size: 0.8rem; color: var(--primary); font-weight: 700; letter-spacing: 0.1rem; text-transform: uppercase; }
.input-line { position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--primary); transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
.premium-form input:focus ~ .input-line, .premium-form select:focus ~ .input-line { width: 100%; }
.premium-btn { display: inline-flex; align-items: center; justify-content: center; gap: 1rem; padding: 1.2rem 0; background: var(--primary); color: #ffffff; font-size: 1.1rem; font-weight: 800; letter-spacing: 0.15rem; border: none; border-radius: 8px; cursor: pointer; text-transform: uppercase; transition: background 0.3s, transform 0.3s; }
.premium-btn:hover { background: var(--gray-900); transform: translateY(-2px); }

/* ==================== FOOTER ==================== */
.corp-footer { background: var(--gray-900); padding: 6rem 0 0; color: #ffffff; overflow: hidden; }
.corp-container { padding-bottom: 2rem; }
.footer-row { display: flex; justify-content: space-between; gap: 4rem; margin-bottom: 4rem; }
.footer-widget { flex: 1; }
.footer-widget .widget-title { font-size: 1.2rem; font-weight: 800; margin-bottom: 1.5rem; color: #ffffff; text-transform: uppercase; }
.footer-widget .widget-desc { color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 2rem; font-size: 0.95rem; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { width: 45px; height: 45px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #ffffff; transition: background 0.3s; }
.footer-social a:hover { background: var(--primary); }
.widget-links { list-style: none; }
.widget-links li { margin-bottom: 1rem; }
.widget-links a { color: rgba(255,255,255,0.7); transition: color 0.3s; font-size: 0.95rem; }
.widget-links a:hover { color: #ffffff; font-weight: 600; }
.widget-contact { list-style: none; }
.widget-contact li { color: rgba(255,255,255,0.7); margin-bottom: 1rem; line-height: 1.6; font-size: 0.95rem; }
.widget-contact strong { color: #ffffff; }
.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; color: rgba(255,255,255,0.5); font-size: 0.9rem; }
.footer-legal-links a { color: rgba(255,255,255,0.5); margin-left: 2rem; transition: color 0.3s; }
.footer-legal-links a:hover { color: #ffffff; }

/* Responsive adjustments */
@media (max-width: 1200px) {
    .corp-container { padding: 0 2rem; }
    .header-container { padding: 1.5rem 2rem; }
    .main-header.scrolled .header-container { padding: 1rem 2rem; }
    .corporate-nav { gap: 1rem; }
}

@media (max-width: 992px) {
    .corporate-nav { display: none; }
    .header-right-tools { display: none; }
    .menu-toggle { display: block; }
    .header-container { padding: 1rem 1.5rem; }
    .main-header.scrolled .header-container { padding: 0.8rem 1.5rem; }
    .logo-text { font-size: 1.3rem; letter-spacing: 0.1rem; }
    .logo-icon { height: 32px; }
    .logo-slogan { font-size: 0.28rem; }
    
    .corp-container { padding: 0 1.5rem; }
    .flex-container { flex-direction: column; gap: 3rem; }
    .panel { padding: 6rem 1.5rem; }
    
    .hero-title-row { flex-direction: column; align-items: center; gap: 1.5rem; }
    .hero-left-col { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1rem; }
    .hero-right-col { flex-direction: column; align-items: center; gap: 1rem; }
    .reveal-text .line { display: inline-block; padding-right: 0.3em; }
    .hero-visuals { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 0; width: fit-content; }
    .anim-widget { width: 130px; height: 130px; border-radius: 16px; }
    .svg-car, .svg-house, .svg-health, .svg-damage { width: 65px; height: 65px; }
    .shield-halo { width: 100px; height: 100px; }
    
    .hero-desc { border-left: none; padding-left: 0; max-width: 100%; text-align: center; margin-top: 0; font-size: 1rem; }
    .scroll-indicator { display: none; }
    
    .corp-about-section { padding: 4rem 0; }
    .corp-about-bg-text { font-size: 10rem; top: 0; left: 0; }
    .corp-title { font-size: 2.2rem; }
    .corp-list li { font-size: 0.95rem; align-items: flex-start; }
    .shield-icon-large { width: 200px; height: 200px; }
    
    .section-production { padding: 4rem 1.5rem; }
    .production-header h2 { font-size: 2.5rem; }
    .product-grid { grid-template-columns: 1fr; gap: 2rem; }
    .product-card { padding: 2.5rem 2rem; }
    
    .section-numbers { padding: 4rem 0; }
    .numbers-container { flex-direction: column; gap: 3rem; padding: 0 1.5rem; }
    .numbers-grid { flex-direction: column; gap: 2rem; width: 100%; }
    .number-item:not(:last-child)::after { display: none; }
    .number-item { border-bottom: 1px solid var(--gray-300); padding-bottom: 2rem; width: 100%; }
    
    .corp-global-section { padding: 4rem 0; }
    .global-content-box { flex-direction: column; gap: 3rem; padding: 0 1.5rem; }
    
    .corp-contact-section { padding: 4rem 0; }
    .contact-box { flex-direction: column; gap: 3rem; padding: 0 1.5rem; }
    .contact-left h2 { font-size: 2.5rem; }
    .contact-right { padding: 2rem; }
    
    .corp-footer { padding: 4rem 0 0; }
    .corp-container { padding-bottom: 2rem; }
    .footer-row { flex-direction: column; gap: 3rem; margin-bottom: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .footer-legal-links a { margin-left: 0; margin: 0 1rem; }
}

@media (max-width: 600px) {
    .mega-text { font-size: clamp(1.5rem, 6.5vw, 3rem); }
}

@media (max-width: 480px) {
    .hero-visuals { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; width: 100%; justify-items: center; }
    .anim-widget { width: 130px; height: 130px; }
    .svg-car, .svg-house, .svg-health, .svg-damage { width: 65px; height: 65px; }
    .shield-halo { width: 100px; height: 100px; }
}
