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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #111111 50%, #0a0a0a 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
.header {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1001;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.header.hidden {
    transform: translateY(-120%);
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo h1 {
    color: #ffffff;
    font-weight: 700;
    font-size: 2.5rem;
    letter-spacing: -0.5px;
    background: linear-gradient(45deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    margin: 0;
    line-height: 1.2;
    text-align: center;
}

.logo:hover h1 {
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.05);
}

/* ===== NAVIGATION ===== */
.navbar {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none;
    will-change: transform, background, box-shadow;
    transform: translateY(0);
}

.navbar.hidden {
    transform: translateY(-240%);
}

.navbar.scrolled {
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

/* Mobile: keep navbar transparent even when scrolled */
@media (max-width: 1199px) {
    .navbar,
    .navbar.scrolled {
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: none !important;
        border-bottom-color: transparent !important;
    }
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    position: relative;
}

/* Desktop navigation - center menu, hide hamburger */
@media (min-width: 1200px) {
    .nav-container {
        justify-content: center;
    }
    
    .hamburger {
        display: none;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-wrap: nowrap;
    justify-content: center;
    min-width: 0;
}

.nav-link {
    color: #cccccc;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8rem;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 12px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    overflow: hidden;
    will-change: transform, background, color;
    transform: translateZ(0);
    min-width: 140px;
    width: 140px;
    flex-shrink: 0;
    text-align: center;
    min-height: 44px;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    color: #ffffff;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    color: #60a5fa;
    background: transparent;
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.nav-link.active::before {
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transition: width 0.3s ease;
    border-radius: 1px;
}

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


/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    transform-origin: center;
}

.hamburger:hover span {
    background: #60a5fa;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

/* ===== COMPACT NAVIGATION FOR LONG TITLES ===== */
.nav-link.long-title {
    font-size: 0.8rem;
    padding: 8px 20px;
    width: 180px;
    min-width: 180px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    hyphens: auto;
}

.nav-link.very-long-title {
    font-size: 0.75rem;
    padding: 8px 20px;
    width: 200px;
    min-width: 200px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    hyphens: auto;
}

/* Tooltip for truncated text */
.nav-link[title] {
    position: relative;
}

.nav-link[title]:hover::after {
    content: attr(title);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    animation: fadeInTooltip 0.3s ease forwards;
}

@keyframes fadeInTooltip {
    to {
        opacity: 1;
    }
}

/* ===== MAIN HERO SECTION ===== */
.main-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 200px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.02), transparent);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #60a5fa;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #e0e0e0, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

.hero-description {
    font-size: 1.3rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    justify-content: center;
}

.hero-btn.primary {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: #ffffff;
    border: none;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.hero-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* ===== COMPANY OVERVIEW SECTION ===== */
.company-overview {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #d0d0d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 1.2rem;
    color: #b0b0b0;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

.overview-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem;
}

.overview-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.overview-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.15));
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.card-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    letter-spacing: -0.2px;
}

.card-content p {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 300;
}

.activity-code {
    font-weight: 600;
    color: #60a5fa !important;
    font-size: 1.1rem !important;
}

/* ===== ADVANTAGES SECTION ===== */
.main-advantages {
    padding: 100px 0;
    background: linear-gradient(180deg, #111111 0%, #0a0a0a 100%);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem;
}

.advantage-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.08));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.advantage-item:hover {
    transform: translateY(-10px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.12));
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.advantage-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.advantage-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    letter-spacing: -0.2px;
}

.advantage-content p {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 300;
}

/* ===== COMPANY DETAILS SECTION ===== */
.company-details {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem;
}

.detail-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.detail-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.15));
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.detail-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.detail-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    letter-spacing: -0.2px;
}

.detail-value {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 300;
}

/* ===== CTA SECTION ===== */
.main-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #d0d0d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.cta-content p {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    justify-content: center;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: #ffffff;
    border: none;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* ===== FOOTER ===== */
.main-footer {
    background: linear-gradient(135deg, #111111 0%, #0a0a0a 100%);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-section h3,
.footer-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: -0.2px;
}

.footer-section p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 300;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.footer-contact i {
    color: #3b82f6;
    width: 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 300;
}

.footer-links a:hover {
    color: #ffffff;
}

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

.footer-bottom p {
    color: #888888;
    font-size: 0.9rem;
    font-weight: 300;
}

/* ===== ABOUT PAGE STYLES ===== */
.about-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 200px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.company-overview-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
}

.company-description-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #111111 0%, #0a0a0a 100%);
}

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

.description-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #ffffff, #d0d0d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.description-text p {
    font-size: 1.1rem;
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.description-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
}

.principles-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
}

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

.principle-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.principle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.principle-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.15));
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.principle-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
}

.principle-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    letter-spacing: -0.2px;
}

.principle-content p {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 300;
}

.leadership-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #111111 0%, #0a0a0a 100%);
}

.leadership-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.leadership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.leadership-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.15));
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.leader-photo {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.3);
}

.leader-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
    letter-spacing: -0.3px;
}

.leader-info h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #60a5fa;
}

.leader-info p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.leader-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #b0b0b0;
    font-weight: 300;
}

.contact-item i {
    color: #3b82f6;
    width: 20px;
    text-align: center;
}

/* ===== CONTACTS PAGE STYLES ===== */
.contacts-hero-new {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 200px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-background-new {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-pattern-new {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.02), transparent);
    pointer-events: none;
}

.hero-overlay-new {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.02), transparent);
    pointer-events: none;
}

.hero-content-new {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #34d399;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
}

.hero-title-new {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #e0e0e0, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

.hero-description-new {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 300;
}

.hero-stats-new {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item-new {
    text-align: center;
}

.stat-number-new {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3b82f6;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label-new {
    font-size: 1rem;
    color: #b0b0b0;
    font-weight: 500;
}

.contact-info-section-new {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
}

.section-header-new {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header-new::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
}

.header-icon-new {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    margin: 0 auto 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.header-icon-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.section-header-new:hover .header-icon-new::before {
    transform: translateX(100%);
}

.section-header-new h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.section-header-new p {
    font-size: 1.1rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

.contact-cards-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.contact-card-new {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.contact-card-new:hover {
    transform: translateY(-10px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.15));
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-icon-new {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.card-content-new h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    letter-spacing: -0.2px;
}

.card-content-new p {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 300;
}

.card-action-new {
    margin-top: auto;
}

.action-link-new {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 12px 24px;
    background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.action-link-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.action-link-new:hover {
    background: linear-gradient(135deg, #3a3a3a, #4a4a4a);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.action-link-new:hover::before {
    left: 100%;
}

.action-link-new i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.action-link-new:hover i {
    transform: translateX(3px);
}

.building-info-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    margin-top: 2rem;
}

.building-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.building-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.building-detail i {
    color: #3b82f6;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.building-detail strong {
    color: #ffffff;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.building-detail p {
    color: #b0b0b0;
    line-height: 1.6;
    font-weight: 300;
}

/* ===== CONTACT INFO SECTION FOR GAS SUPPLY ===== */
.contact-info-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
}

.contact-info-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.contact-info-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.3px;
}

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

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

.contact-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: #b0b0b0;
    font-size: 0.95rem;
}

.contact-label i {
    color: #3b82f6;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.contact-value {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.5;
    margin-left: 2rem;
}

.contact-value a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value a:hover {
    color: #60a5fa;
    text-decoration: underline;
}

/* ===== RESPONSIVE STYLES FOR CONTACT INFO SECTION ===== */
@media (max-width: 767px) {
    .contact-info-section {
        padding: 60px 0;
    }
    
    .contact-info-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .contact-info-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .contact-info-header h3 {
        font-size: 1.5rem;
    }
    
    .contact-value {
        margin-left: 0;
        font-size: 1rem;
    }
    
    .contact-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contact-info-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .contact-info-header h3 {
        font-size: 1.3rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* ===== CONTACT FORM SECTION ===== */
.contact-form-section-new {
    padding: 100px 0;
    background: linear-gradient(180deg, #111111 0%, #0a0a0a 100%);
}

.form-content-new {
    max-width: 800px;
    margin: 0 auto;
}

.form-header-new {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header-new h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.form-header-new p {
    font-size: 1.1rem;
    color: #b0b0b0;
    line-height: 1.6;
    font-weight: 300;
}

.contact-form-new {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    backdrop-filter: blur(20px);
}

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

.form-group-new {
    margin-bottom: 1.5rem;
}

.form-group-new label {
    display: block;
    margin-bottom: 0.8rem;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group-new input,
.form-group-new textarea,
.form-group-new select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group-new select {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    cursor: pointer;
}

.form-group-new select option {
    background: #1a1a1a;
    color: #ffffff;
    padding: 0.5rem;
}

.form-group-new input:focus,
.form-group-new textarea:focus,
.form-group-new select:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group-new textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group-new {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.checkbox-group-new input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 0.2rem;
}

.checkbox-group-new label {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.submit-btn-new {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.submit-btn-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.submit-btn-new i {
    margin-right: 0.5rem;
}

/* ===== MAP SECTION ===== */
.map-section-new {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
}

.map-container-new {
    max-width: 1000px;
    margin: 0 auto;
}

.map-iframe-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.map-iframe-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

.map-address-new {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #ffffff;
    font-weight: 500;
}

.map-address-new i {
    color: #3b82f6;
    font-size: 1.2rem;
}

/* ===== DOCUMENTS PAGE STYLES ===== */
.documents-hero-new {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 200px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-background-new {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.02), transparent);
    pointer-events: none;
}

.hero-overlay-new {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.02), transparent);
    pointer-events: none;
}

.hero-title-new {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #e0e0e0, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

.hero-description-new {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 300;
}

.hero-stats-new {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item-new {
    text-align: center;
}

.stat-number-new {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3b82f6;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label-new {
    font-size: 1rem;
    color: #b0b0b0;
    font-weight: 500;
}

.documents-section-new {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
}

.documents-grid-new {
    display: grid;
    gap: 4rem;
}

.category-section-new {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.08));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.category-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.category-header-new {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 3rem;
}

.category-icon-new {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.3);
}

.category-info-new h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
    letter-spacing: -0.3px;
}

.category-info-new p {
    color: #b0b0b0;
    line-height: 1.6;
    font-weight: 300;
}

.documents-list-new {
    display: grid;
    gap: 1.5rem;
}

/* Darker look for financial-reports notice */
.documents-section-new .document-item-new {
    background: rgba(17, 17, 17, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.documents-section-new .document-content-new {
    color: #e5e7eb;
}
.documents-section-new .category-header-new h3,
.documents-section-new .category-info-new p {
    color: #e5e7eb;
}

.document-item-new {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.08));
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.document-item-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.document-item-new:hover {
    transform: translateY(-5px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.12));
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.document-number-new {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.document-badge-new {
    flex-shrink: 0;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    min-width: 60px;
}

.document-content-new {
    flex: 1;
}

.document-content-new h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #ffffff;
    line-height: 1.4;
    letter-spacing: -0.1px;
}

.document-content-new p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    font-weight: 300;
}

.document-link-new {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.document-link-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.document-link-new:hover {
    background: linear-gradient(135deg, #3a3a3a, #4a4a4a);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.document-link-new:hover::before {
    left: 100%;
}

.document-link-new i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.document-link-new:hover i {
    transform: translateX(3px);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Extra Large Desktop (1600px+) - Full Navigation */
@media (min-width: 1600px) {
    .header-container {
        max-width: 1800px;
        padding: 25px 40px;
    }
    
    .logo h1 {
        font-size: 3rem;
    }
    
    .nav-container {
        max-width: 1800px;
        padding: 0 40px;
        height: 80px;
    }
    
    .nav-link {
        padding: 14px 16px;
        font-size: 0.9rem;
        width: 160px;
        min-width: 160px;
        min-height: 48px;
    }
    
    .nav-link.long-title {
        width: 200px;
        min-width: 200px;
        font-size: 0.85rem;
    }
    
    .nav-link.very-long-title {
        width: 220px;
        min-width: 220px;
        font-size: 0.8rem;
    }
    
    .nav-menu {
        gap: 0.4rem;
    }
}

/* Large Desktop (1400px - 1599px) - Optimized Navigation */
@media (min-width: 1400px) and (max-width: 1599px) {
    .header-container {
        max-width: 1400px;
        padding: 20px 30px;
    }
    
    .logo h1 {
        font-size: 2.5rem;
    }
    
    .nav-container {
        max-width: 1400px;
        padding: 0 30px;
        height: 75px;
    }
    
    .nav-link {
        padding: 12px 14px;
        font-size: 0.85rem;
        width: 150px;
        min-width: 150px;
        min-height: 46px;
    }
    
    .nav-link.long-title {
        width: 180px;
        min-width: 180px;
        font-size: 0.8rem;
    }
    
    .nav-link.very-long-title {
        width: 200px;
        min-width: 200px;
        font-size: 0.75rem;
    }
    
    .nav-menu {
        gap: 0.3rem;
    }
}

/* Desktop (1200px - 1399px) - Compact Navigation */
@media (min-width: 1200px) and (max-width: 1399px) {
    .header-container {
        max-width: 1200px;
        padding: 18px 25px;
    }
    
    .logo h1 {
        font-size: 2.2rem;
    }
    
    .nav-container {
        max-width: 1200px;
        padding: 0 25px;
        height: 70px;
    }
    
    .nav-link {
        padding: 10px 10px;
        font-size: 0.75rem;
        width: 130px;
        min-width: 130px;
        min-height: 44px;
    }
    
    .nav-link.long-title {
        width: 160px;
        min-width: 160px;
        font-size: 0.75rem;
    }
    
    .nav-link.very-long-title {
        width: 180px;
        min-width: 180px;
        font-size: 0.7rem;
    }
    
    .nav-menu {
        gap: 0.2rem;
    }
}

/* Laptop (992px - 1199px) - Mobile Navigation */
@media (max-width: 1199px) {
    .overview-cards,
    .advantages-grid,
    .details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .hamburger {
        display: flex;
    }
    
    .nav-container {
        justify-content: space-between;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 160px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 2rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        z-index: 999;
        max-height: calc(100vh - 160px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
        animation: slideInFromLeft 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    @keyframes slideInFromLeft {
        from {
            left: -100%;
            opacity: 0;
        }
        to {
            left: 0;
            opacity: 1;
        }
    }
    
    .nav-link {
        margin: 0.5rem 0;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        width: 90%;
        justify-content: center;
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform, background, color;
        transform: translateZ(0);
        max-width: none;
        white-space: normal;
        text-align: center;
        line-height: 1.4;
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: transparent;
    }
    
    .nav-link.very-long-title {
        font-size: 1rem;
        padding: 1.2rem 1.5rem;
        line-height: 1.3;
        white-space: normal;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .nav-link:hover {
        transform: translateY(-2px) scale(1.02);
        background: transparent;
        border-color: rgba(255, 255, 255, 0.4);
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    }
    
    .main-hero,
    .about-hero,
    .contacts-hero-new,
    .documents-hero-new {
        padding: 120px 0 100px;
    }
}

/* Old Laptop styles - commented out */
/*
@media (max-width: 1199px) {
    .container {
        padding: 0 20px;
    }
    
    .header-container {
        padding: 15px 20px;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .nav-container {
        padding: 0 20px;
        height: 60px;
        justify-content: space-between;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 160px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 2rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        z-index: 999;
        max-height: calc(100vh - 160px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
        animation: slideInFromLeft 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    @keyframes slideInFromLeft {
        from {
            left: -100%;
            opacity: 0;
        }
        to {
            left: 0;
            opacity: 1;
        }
    }
    
    .nav-link {
        margin: 0.5rem 0;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        width: 90%;
        justify-content: center;
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform, background, color;
        transform: translateZ(0);
    }
    
    .nav-link:hover {
        transform: translateY(-2px) scale(1.02);
        background: transparent;
        border-color: rgba(255, 255, 255, 0.4);
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    }
    
}
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-title-new {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-description-new {
        font-size: 1rem;
    }
    
    .overview-cards,
    .advantages-grid,
    .details-grid,
    .contact-cards-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Tablet (768px - 991px) - Mobile Navigation */
@media (max-width: 991px) {
    .overview-cards,
    .advantages-grid,
    .details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .header-container {
        padding: 12px 15px;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-container {
        padding: 0 15px;
        height: 55px;
        justify-content: space-between;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 140px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 1.5rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        z-index: 999;
        max-height: calc(100vh - 140px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
        animation: slideInFromLeft 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-link {
        margin: 0.3rem 0;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: 90%;
        justify-content: center;
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform, background, color;
        transform: translateZ(0);
        max-width: none;
        white-space: normal;
        text-align: center;
        line-height: 1.4;
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: transparent;
    }
    
    .nav-link.very-long-title {
        font-size: 0.9rem;
        padding: 1rem 1.2rem;
        line-height: 1.3;
        white-space: normal;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .nav-link:hover {
        transform: translateY(-2px) scale(1.02);
        background: transparent;
        border-color: rgba(255, 255, 255, 0.4);
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    }
    
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-title-new {
        font-size: 2.8rem;
    }
    
    .section-header h2,
    .section-header-new h2 {
        font-size: 2.5rem;
    }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
    .header-container {
        padding: 10px 15px;
    }
    
    .logo h1 {
        font-size: 1.6rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-container {
        padding: 0 15px;
        height: 50px;
        justify-content: space-between;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 120px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 1.5rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        z-index: 999;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
        animation: slideInFromLeft 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-link {
        margin: 0.3rem 0;
        padding: 0.7rem 1.2rem;
        font-size: 0.95rem;
        width: 90%;
        justify-content: center;
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform, background, color;
        transform: translateZ(0);
        max-width: none;
        white-space: normal;
        text-align: center;
        line-height: 1.4;
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: transparent;
    }
    
    .nav-link.very-long-title {
        font-size: 0.85rem;
        padding: 0.9rem 1rem;
        line-height: 1.3;
        white-space: normal;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .nav-link:hover {
        transform: translateY(-2px) scale(1.02);
        background: transparent;
        border-color: rgba(255, 255, 255, 0.4);
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    }
    
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .header-container {
        padding: 8px 10px;
    }
    
    .logo h1 {
        font-size: 1.4rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-container {
        padding: 0 10px;
        height: 45px;
        justify-content: space-between;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 110px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 1rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        z-index: 999;
        max-height: calc(100vh - 110px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
        animation: slideInFromLeft 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-link {
        margin: 0.2rem 0;
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        width: 90%;
        justify-content: center;
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform, background, color;
        transform: translateZ(0);
        max-width: none;
        white-space: normal;
        text-align: center;
        line-height: 1.4;
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: transparent;
    }
    
    .nav-link.very-long-title {
        font-size: 0.8rem;
        padding: 0.8rem 0.8rem;
        line-height: 1.3;
        white-space: normal;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .nav-link:hover {
        transform: translateY(-2px) scale(1.02);
        background: transparent;
        border-color: rgba(255, 255, 255, 0.4);
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    }
    
}

/* Medium Desktop (1024px - 1199px) - Mobile Navigation */
@media (min-width: 1024px) and (max-width: 1199px) {
    .header-container {
        padding: 15px 20px;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .nav-container {
        padding: 0 20px;
        height: 60px;
        justify-content: space-between;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 160px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 2rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        z-index: 999;
        max-height: calc(100vh - 160px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
        animation: slideInFromLeft 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-link {
        margin: 0.5rem 0;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        width: 90%;
        justify-content: center;
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform, background, color;
        transform: translateZ(0);
    }
    
    .nav-link:hover {
        transform: translateY(-2px) scale(1.02);
        background: transparent;
        border-color: rgba(255, 255, 255, 0.4);
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    }
    
}

/* Small Desktop (992px - 1023px) - Ultra Compact */
@media (min-width: 992px) and (max-width: 1023px) {
    .nav-container {
        padding: 0 15px;
        height: 35px;
    }
    
    .nav-link {
        padding: 0px 1px;
        font-size: 0.4rem;
        border-radius: 0px;
    }
    
    .nav-logo h2 {
        font-size: 0.5rem;
    }
    
    .nav-menu {
        gap: 0.002rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-title-new {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-description-new {
        font-size: 0.95rem;
    }
    
    .section-header h2,
    .section-header-new h2 {
        font-size: 2.5rem;
    }
    
    .overview-cards,
    .advantages-grid,
    .details-grid,
    .contact-cards-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}

/* Mobile Large (576px - 767px) */
@media (max-width: 767px) {
    
    .nav-container {
        padding: 0 15px;
        height: 70px;
    }
    
    .nav-logo h2 {
        font-size: 1.3rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 2rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
        animation: slideInFromLeft 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    @keyframes slideInFromLeft {
        from {
            left: -100%;
            opacity: 0;
        }
        to {
            left: 0;
            opacity: 1;
        }
    }
    
    .nav-link {
        margin: 0.5rem 0;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        width: 90%;
        justify-content: center;
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform, background, color;
        transform: translateZ(0);
    }
    
    .nav-link:hover {
        transform: translateY(-2px) scale(1.02);
        background: transparent;
        border-color: rgba(255, 255, 255, 0.4);
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-title-new {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-description-new {
        font-size: 0.95rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-btn {
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
    }
    
    .hero-stats-new {
        gap: 2rem;
    }
    
    .overview-cards,
    .advantages-grid,
    .details-grid,
    .contact-cards-new {
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
    }
    .overview-card,
    .advantage-item,
    .detail-card,
    .contact-card-new {
        width: 100%;
        min-width: 0;
    }
    /* Homepage cards: improve readability on phones */
    .overview-card,
    .advantage-item,
    .detail-card,
    .contact-card-new,
    .principle-card,
    .leadership-card {
        padding: 1.25rem;
    }
    .advantage-item,
    .detail-card {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        text-align: left;
    }
    .card-icon,
    .advantage-icon,
    .detail-icon {
        width: 56px;
        height: 56px;
        border-radius: 12px;
        font-size: 1.25rem;
    }
    .card-content h3,
    .advantage-content h3,
    .detail-content h4 {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }
    .card-content p,
    .advantage-content p,
    .detail-content p {
        font-size: 0.98rem;
        line-height: 1.65;
    }
    /* Avoid jumpy hover animations on touch */
    .overview-card:hover,
    .advantage-item:hover,
    .detail-card:hover {
        transform: none;
    }
    
    .section-header h2,
    .section-header-new h2 {
        font-size: 2.2rem;
    }
    
    .description-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .leadership-card {
        flex-direction: column;
        text-align: center;
    }
    
    .category-header-new {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .document-item-new {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .document-number-new,
    .document-badge-new {
        align-self: center;
    }
    
    .form-grid-new {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .main-hero {
        padding: 120px 0 80px;
    }
}

/* Mobile Medium (481px - 575px) */
@media (max-width: 575px) {
    .nav-container {
        padding: 0 10px;
        height: 65px;
    }
    
    .nav-logo h2 {
        font-size: 1.2rem;
    }
    
    .nav-menu {
        top: 65px;
        padding: 1.5rem 0;
    }
    
    .nav-link {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        margin: 0.3rem 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-title-new {
        font-size: 2rem;
    }
    
    .section-header h2,
    .section-header-new h2 {
        font-size: 2rem;
    }
    
    .overview-card,
    .advantage-item,
    .detail-card,
    .contact-card-new,
    .principle-card,
    .leadership-card {
        padding: 1.5rem;
    }
    
    .hero-actions {
        gap: 0.8rem;
    }
    
    .hero-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .main-hero {
        padding: 110px 0 70px;
    }
}

/* Mobile Small (320px - 480px) */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 8px;
        height: 60px;
    }
    
    .nav-logo h2 {
        font-size: 1.1rem;
    }
    
    .nav-menu {
        top: 60px;
        padding: 1rem 0;
    }
    
    .nav-link {
        padding: 0.7rem 1.2rem;
        font-size: 0.95rem;
        margin: 0.2rem 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
    }
    
    .hero-title-new {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-description-new {
        font-size: 0.9rem;
    }
    
    .section-header h2,
    .section-header-new h2 {
        font-size: 1.8rem;
    }
    
    .overview-card,
    .advantage-item,
    .detail-card,
    .contact-card-new,
    .principle-card,
    .leadership-card {
        padding: 1.2rem;
    }
    
    .hero-actions {
        gap: 0.6rem;
    }
    
    .hero-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .hero-badge,
    .hero-badge-new {
        font-size: 0.8rem;
        padding: 10px 20px;
    }
    
    .stat-number-new {
        font-size: 2rem;
    }
    
    .contact-form-new {
        padding: 1.5rem;
    }
    
    .map-address-new {
        position: static;
        margin-top: 1rem;
        border-radius: 12px;
    }
    
    .main-hero {
        padding: 100px 0 60px;
    }
    
    .container {
        padding: 0 10px;
    }
}

/* Extra Small Mobile (up to 320px) */
@media (max-width: 320px) {
    .hamburger {
        display: flex;
    }
    
    .nav-container {
        padding: 0 5px;
        height: 55px;
        justify-content: space-between;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 55px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 0.8rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        z-index: 999;
        max-height: calc(100vh - 55px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
        animation: slideInFromLeft 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-link {
        margin: 0.2rem 0;
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        width: 90%;
        justify-content: center;
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform, background, color;
        transform: translateZ(0);
        max-width: none;
        white-space: normal;
        text-align: center;
        line-height: 1.4;
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: transparent;
    }
    
    .nav-link.very-long-title {
        font-size: 0.75rem;
        padding: 0.7rem 0.7rem;
        line-height: 1.3;
        white-space: normal;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .nav-link:hover {
        transform: translateY(-2px) scale(1.02);
        background: transparent;
        border-color: rgba(255, 255, 255, 0.4);
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-title-new {
        font-size: 1.6rem;
    }
    
    .section-header h2,
    .section-header-new h2 {
        font-size: 1.6rem;
    }
    
    .main-hero {
        padding: 90px 0 50px;
    }
    
    .container {
        padding: 0 8px;
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .nav-menu {
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .nav-link {
        padding: 0.5rem 1rem;
        margin: 0.2rem 0;
    }
    
    .main-hero {
        padding: 80px 0 40px;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .navbar {
        border-bottom-width: 0.5px;
    }
    
    .nav-link::after {
        height: 1px;
    }
}

/* ===== Financial Reports: Mobile & Footer Overrides ===== */
.footer-contact .footer-phone {
    color: #e5e7eb;
    text-decoration: none;
    border-bottom: 1px dotted rgba(229, 231, 235, 0.3);
    transition: color 0.2s ease, border-color 0.2s ease;
}
.footer-contact .footer-phone:hover {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 767px) {
    .documents-hero-new {
        padding: 80px 0 50px;
    }
    .documents-section-new {
        padding: 40px 0;
    }
    .documents-grid-new {
        gap: 1.25rem;
    }
    .category-header-new {
        margin-bottom: 1.25rem;
    }
    .category-icon-new {
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
        border-radius: 14px;
    }
    .category-info-new h3 {
        font-size: 1.25rem;
    }
    .documents-list-new {
        gap: 1rem;
    }
    .document-item-new {
        padding: 1rem;
        align-items: stretch;
    }
    .document-content-new {
        padding: 0 !important;
    }
    .documents-section-new iframe {
        height: 60vh !important;
        border-radius: 10px !important;
    }
    .footer-contact .footer-phone {
        display: inline-block;
        padding: 8px 10px;
        margin-left: 4px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 8px;
        font-weight: 600;
        letter-spacing: 0.3px;
    }
    .footer-contact .footer-phone:active,
    .footer-contact .footer-phone:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
        border-color: rgba(59, 130, 246, 0.6);
    }
}

@media (max-width: 575px) {
    .documents-hero-new {
        padding: 60px 0 40px;
    }
    .documents-section-new {
        padding: 32px 0;
    }
    .documents-section-new iframe {
        height: 55vh !important;
    }
    .category-info-new h3 {
        font-size: 1.15rem;
    }
    .footer-contact .footer-phone {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 10px;
        font-size: 0.95rem;
    }
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #111111;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
}

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

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

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
.p-5 { padding: 3rem; }

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
.navbar,
.nav-link,
.hamburger,
.hamburger span {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    perspective: 1000px;
    -webkit-perspective: 1000px;
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */
.nav-link:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.hamburger:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* ===== REDUCED MOTION SUPPORT ===== */
@media (prefers-reduced-motion: reduce) {
    .navbar,
    .nav-link,
    .hamburger,
    .hamburger span,
    .nav-menu {
        transition: none;
        animation: none;
    }
    
    .nav-link::before,
    .nav-link::after {
        transition: none;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .hamburger,
    .hero-actions,
    .cta-buttons {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .main-hero,
    .about-hero,
    .contacts-hero-new,
    .documents-hero-new {
        padding: 20px 0;
    }
}