/* ===================================
   WFI - World Food Industry
   Main Stylesheet - Cadyst Style Clone
   Colors: Dark Blue (#1a3a5c) & Gold (#D4A84B)
   =================================== */

/* CSS Variables */
:root {
    --primary-blue: #1a3a5c;
    --primary-blue-dark: #0f2540;
    --primary-blue-light: #2a5a8c;
    --golden-yellow: #D4A84B;
    --accent-yellow: #F5C542;
    --light-yellow: #FFF8E7;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;
    --gray-900: #212529;
    
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
    --shadow-xl: 0 12px 48px rgba(0,0,0,0.2);
    
    --container-max: 1400px;
    --header-height: 80px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

body.loading {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-blue);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   PAGE LOADER - CENTERED & ORGANIZED
   =================================== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.loader-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    animation: loaderPulse 2s ease-in-out infinite;
}

.loader-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.loader-logo-text {
    display: flex;
    flex-direction: column;
    border-left: 3px solid var(--golden-yellow);
    padding-left: 15px;
    text-align: left;
}

.loader-logo-text .brand {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-blue);
    letter-spacing: 2px;
    line-height: 1;
}

.loader-logo-text .tagline {
    font-size: 14px;
    color: var(--primary-blue-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
}

.loader-bar {
    width: 250px;
    height: 4px;
    background: var(--gray-200);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loader-bar::after {
    content: '';
    display: block;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue), var(--golden-yellow));
    border-radius: 2px;
    animation: loaderSlide 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.02); opacity: 0.9; }
}

@keyframes loaderSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

/* ===================================
   HEADER - CADYST STYLE WITH DIAGONAL
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar {
    position: relative;
    background: transparent;
    padding: 0;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 120px);
    height: 100%;
    background: var(--primary-blue);
    clip-path: polygon(0 0, 100% 0, calc(100% - 60px) 100%, 0 100%);
    z-index: -1;
    transition: all 0.3s ease;
}

.header.scrolled .navbar::before {
    width: 100%;
    clip-path: none;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    padding: 0 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
}

.logo img {
    height: 50px;
    filter: brightness(0) invert(1);
}

.logo-text {
    display: flex;
    flex-direction: column;
    border-left: 2px solid var(--golden-yellow);
    padding-left: 15px;
}

.logo-text .brand {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 2px;
    line-height: 1;
}

.logo-text .tagline {
    font-size: 11px;
    color: var(--golden-yellow);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 28px 16px;
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--golden-yellow);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-menu > li:hover > a::after {
    transform: scaleX(1);
}

.nav-menu > li > a i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-menu > li:hover > a {
    color: var(--golden-yellow);
}

.nav-menu > li:hover > a i {
    transform: rotate(180deg);
}

/* Language flags */
.nav-flags {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
    padding: 28px 0;
}

.nav-flags a {
    display: block;
    width: 26px;
    height: 18px;
    border-radius: 2px;
    overflow: hidden;
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-flags a:hover,
.nav-flags a.active {
    opacity: 1;
    transform: scale(1.1);
}

.nav-flags img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background-color: var(--white);
    border-radius: 0;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) rotateX(-10deg);
    transform-origin: top center;
    transition: all 0.3s ease;
    z-index: 100;
}

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

.dropdown li a {
    display: block;
    padding: 14px 25px;
    color: var(--gray-700);
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.dropdown li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--golden-yellow);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.dropdown li a:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    padding-left: 30px;
}

.dropdown li a:hover::before {
    transform: translateX(0);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* Scrolled Header */
.header.scrolled {
    background: var(--primary-blue);
    box-shadow: var(--shadow-lg);
}

/* ===================================
   HERO SECTION - NO GREEN OVERLAY
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 20s ease-in-out infinite;
}

@keyframes heroZoom {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

/* Hero content - same logo as header */
.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 0 60px;
    margin-top: 80px;
}

.hero-logo-icon {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.hero-logo-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    animation: heroLogoFloat 3s ease-in-out infinite;
}

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

.hero-divider {
    width: 3px;
    height: 70px;
    background: var(--golden-yellow);
    flex-shrink: 0;
}

.hero-text {
    overflow: hidden;
}

.hero-title {
    font-size: 3rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 6px;
    line-height: 1.2;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.4);
    animation: heroTextSlide 1s ease-out forwards;
    opacity: 0;
    transform: translateX(-50px);
}

@keyframes heroTextSlide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===================================
   BUTTONS - IRREGULAR/DIAGONAL STYLE
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 10px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: var(--golden-yellow);
    color: var(--primary-blue-dark);
}

.btn-primary:hover {
    background-color: var(--accent-yellow);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 168, 75, 0.4);
}

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

.btn-secondary:hover {
    background-color: var(--primary-blue-dark);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    clip-path: none;
}

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

.btn-outline-light {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    clip-path: none;
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-blue);
}

/* ===================================
   SECTION STYLES
   =================================== */
.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background-color: var(--primary-blue);
    color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark p {
    color: var(--white);
}

.section-gray {
    background-color: var(--gray-100);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .divider {
    width: 60px;
    height: 4px;
    background: var(--golden-yellow);
    margin: 0 auto 20px;
    position: relative;
}

.section-header .divider::before,
.section-header .divider::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--golden-yellow);
    border-radius: 50%;
}

.section-header .divider::before { left: -15px; }
.section-header .divider::after { right: -15px; }

.section-header .subtitle {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.section-dark .section-header .subtitle {
    color: var(--golden-yellow);
}

/* ===================================
   BREAKING NEWS - CADYST STYLE
   =================================== */
.breaking-news {
    background-color: var(--white);
    padding: 80px 0;
}

.breaking-news-content {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: center;
}

.breaking-news-image {
    position: relative;
}

.breaking-news-image img {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid var(--primary-blue);
    margin: 0 auto;
    box-shadow: var(--shadow-xl);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.breaking-news-image:hover img {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 20px 40px rgba(26, 58, 92, 0.3);
}

.breaking-news-name {
    text-align: center;
    margin-top: 25px;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.breaking-news-text .badge {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--golden-yellow);
    padding: 10px 25px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(26, 58, 92, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(26, 58, 92, 0); }
}

.breaking-news-text .title-divider {
    width: 60px;
    height: 4px;
    background: var(--golden-yellow);
    margin-bottom: 20px;
}

.breaking-news-text h3 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.breaking-news-text p {
    color: var(--gray-700);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ===================================
   GROUP SECTION
   =================================== */
.group-section {
    background: var(--gray-100);
    padding: 100px 0;
}

.group-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.group-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--gray-700);
}

/* ===================================
   STATS SECTION - IRREGULAR SHAPES
   =================================== */
.stats-section {
    background: var(--primary-blue);
    padding: 80px 0;
    position: relative;
    clip-path: polygon(0 0, 100% 30px, 100% 100%, 0 calc(100% - 30px));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(15deg);
    width: 2px;
    height: 60px;
    background: rgba(255,255,255,0.2);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--white), var(--golden-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: rgba(255,255,255,0.8);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===================================
   VALUES SECTION - IRREGULAR CARDS
   =================================== */
.values-section {
    padding: 100px 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 45px 25px;
    background: var(--gray-100);
    transition: all 0.4s ease;
    position: relative;
    clip-path: polygon(0 20px, 20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.value-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--golden-yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.value-card:hover {
    background: var(--primary-blue);
    transform: translateY(-15px) rotate(-1deg);
    box-shadow: var(--shadow-xl);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-blue);
    border-radius: 50%;
    transition: all 0.4s ease;
    position: relative;
}

.value-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 2px dashed var(--golden-yellow);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: iconSpin 10s linear infinite;
}

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

.value-card:hover .value-icon {
    background: var(--golden-yellow);
    transform: scale(1.1);
}

.value-card:hover .value-icon::after {
    opacity: 1;
}

.value-icon i {
    font-size: 32px;
    color: var(--golden-yellow);
    transition: color 0.4s ease;
}

.value-card:hover .value-icon i {
    color: var(--primary-blue);
}

.value-card h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.4s ease;
}

.value-card:hover h4 {
    color: var(--white);
}

.value-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-top: 10px;
    transition: color 0.4s ease;
}

.value-card:hover p {
    color: rgba(255,255,255,0.8);
}

/* ===================================
   ACTIVITIES SECTION - IRREGULAR GRID
   =================================== */
.activities-section {
    background: var(--primary-blue);
    padding: 100px 0;
    position: relative;
}

.activities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
}

.activity-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255,255,255,0.05);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

.activity-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 168, 75, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.activity-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-10px) scale(1.05);
}

.activity-card:hover::before {
    opacity: 1;
}

.activity-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.activity-icon i {
    font-size: 42px;
    color: var(--golden-yellow);
    transition: all 0.4s ease;
}

.activity-card:hover .activity-icon i {
    transform: scale(1.2) rotate(10deg);
}

.activity-card h4 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* ===================================
   NEWS SECTION - IRREGULAR SHAPES
   =================================== */
.news-section {
    padding: 100px 0;
    background: var(--white);
}

.news-layout {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 40px;
    align-items: start;
}

.news-featured {
    position: relative;
}

.news-featured-image {
    position: relative;
    overflow: hidden;
}

.news-featured-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
    transition: transform 0.5s ease;
}

.news-featured:hover .news-featured-image img {
    transform: scale(1.05);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.news-card {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--golden-yellow);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.news-card:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: var(--shadow-xl);
}

.news-card:hover::before {
    transform: translateX(0);
}

.news-card-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.15);
}

.news-card-content {
    padding: 20px;
}

.news-card h3 {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 10px;
    color: var(--primary-blue);
    font-weight: 700;
}

.news-card p {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 15px;
    line-height: 1.6;
}

.news-card .read-more {
    font-size: 12px;
    color: var(--primary-blue);
    font-weight: 600;
    text-transform: lowercase;
    position: relative;
}

.news-card .read-more::after {
    content: ' →';
    transition: transform 0.3s ease;
    display: inline-block;
}

.news-card:hover .read-more {
    color: var(--golden-yellow);
}

.news-card:hover .read-more::after {
    transform: translateX(5px);
}

/* ===================================
   ENTITIES SECTION
   =================================== */
.entities-section {
    background: var(--primary-blue);
    padding: 80px 0;
}

.entities-carousel {
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.entity-item {
    width: 140px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: all 0.4s ease;
    filter: brightness(0) invert(1);
}

.entity-item:hover {
    opacity: 1;
    transform: scale(1.15) rotate(5deg);
}

.entity-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ===================================
   COMMITMENTS SECTION - IRREGULAR IMAGE
   =================================== */
.commitments-section {
    padding: 100px 0;
    background: var(--white);
}

.commitments-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.commitments-image {
    position: relative;
}

.commitments-image::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    right: -30px;
    bottom: -30px;
    border: 4px solid var(--golden-yellow);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%, 0 15%);
    z-index: -1;
}

.commitments-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%, 0 15%);
    transition: transform 0.5s ease;
}

.commitments-image:hover img {
    transform: scale(1.03);
}

.commitments-text .section-header {
    text-align: left;
    margin-bottom: 30px;
}

.commitments-text .section-header .divider {
    margin: 0 0 15px;
}

.commitments-text .section-header .divider::before,
.commitments-text .section-header .divider::after {
    display: none;
}

.commitments-text p {
    color: var(--gray-700);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* ===================================
   PAGE HERO - NO OVERLAY
   =================================== */
.page-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1625246333195-78d9c38ad449?w=1920') center/cover;
    margin-top: 0;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 58, 92, 0.75);
}

.page-hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 25px;
    color: var(--white);
}

.page-hero-logo {
    width: 70px;
    height: 70px;
}

.page-hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.page-hero-divider {
    width: 3px;
    height: 60px;
    background: var(--golden-yellow);
}

.page-hero-text h1 {
    font-size: 2.5rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.page-hero .breadcrumb {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.page-hero .breadcrumb a {
    color: var(--golden-yellow);
}

.page-hero .breadcrumb a:hover {
    text-decoration: underline;
}

/* ===================================
   FOOTER - CADYST STYLE
   =================================== */
.cadyst-footer {
    font-family: var(--font-secondary);
    color: var(--white);
}

.footer-top {
    background: var(--primary-blue);
    padding: 25px 0 20px;
}

.footer-container {
    max-width: var(--container-max);
    margin: auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-brand img {
    height: 45px;
    filter: brightness(0) invert(1);
}

.footer-brand .logo-text {
    display: flex;
    flex-direction: column;
    border-left: 2px solid var(--golden-yellow);
    padding-left: 15px;
}

.footer-brand .logo-text .brand {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 2px;
    line-height: 1;
}

.footer-brand .logo-text .tagline {
    font-size: 10px;
    color: var(--golden-yellow);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 30px;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--golden-yellow);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--golden-yellow);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--golden-yellow);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-utility {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 20px;
    padding-top: 15px;
}

.utility-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.utility-links a {
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.utility-links a:hover {
    color: var(--golden-yellow);
}

.footer-bottom {
    background: var(--primary-blue-dark);
    text-align: center;
    padding: 15px;
    font-size: 13px;
}

.footer-bottom p {
    opacity: 0.7;
    margin: 0;
}

/* ===================================
   COOKIE BANNER
   =================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary-blue);
    color: var(--white);
    padding: 30px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: var(--container-max);
    margin: 0 auto;
    text-align: center;
}

.cookie-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.cookie-logo img {
    height: 45px;
    filter: brightness(0) invert(1);
}

.cookie-logo-text {
    display: flex;
    flex-direction: column;
    border-left: 2px solid var(--golden-yellow);
    padding-left: 12px;
    text-align: left;
}

.cookie-logo-text .brand {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 2px;
    line-height: 1;
}

.cookie-logo-text .tagline {
    font-size: 10px;
    color: var(--golden-yellow);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.cookie-content p {
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content p a {
    color: var(--golden-yellow);
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    padding: 12px 30px;
    font-size: 12px;
}

/* ===================================
   WELCOME SECTION
   =================================== */
.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.welcome-text .section-header {
    text-align: left;
    margin-bottom: 25px;
}

.welcome-text .section-header .divider {
    margin: 0 0 15px;
}

.welcome-text .section-header .divider::before,
.welcome-text .section-header .divider::after {
    display: none;
}

.welcome-text p {
    color: var(--gray-700);
    font-size: 1.05rem;
    line-height: 1.8;
}

.welcome-image {
    position: relative;
}

.welcome-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
}

/* ===================================
   TIMELINE
   =================================== */
.timeline {
    position: relative;
    padding: 50px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-blue), var(--golden-yellow));
}

.timeline-item {
    position: relative;
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    margin-bottom: 60px;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.timeline-content {
    position: relative;
    background: var(--white);
    padding: 30px;
    box-shadow: var(--shadow-md);
    max-width: 420px;
    margin-right: 50px;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 0 100%);
    transition: all 0.4s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 0;
    margin-left: 50px;
    clip-path: polygon(0 15px, 15px 0, 100% 0, 100% 100%, 0 100%);
}

.timeline-year {
    position: absolute;
    top: 15px;
    right: -85px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--golden-yellow), var(--accent-yellow));
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.timeline-item:nth-child(even) .timeline-year {
    right: auto;
    left: -85px;
}

.timeline-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--gray-600);
    margin: 0;
    font-size: 0.95rem;
}

/* ===================================
   PILLARS SECTION
   =================================== */
.pillars-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pillars-text .section-header {
    text-align: left;
    margin-bottom: 25px;
}

.pillars-text .section-header .divider {
    margin: 0 0 15px;
}

.pillars-text .section-header .divider::before,
.pillars-text .section-header .divider::after {
    display: none;
}

.pillars-list {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.pillar-item {
    text-align: center;
    padding: 20px;
}

.pillar-item .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-blue);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.pillar-item:hover .icon {
    background: var(--golden-yellow);
    transform: rotate(360deg);
}

.pillar-item .icon i {
    font-size: 28px;
    color: var(--golden-yellow);
    transition: color 0.4s ease;
}

.pillar-item:hover .icon i {
    color: var(--primary-blue);
}

.pillar-item h5 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pillars-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%, 0 15%);
}

/* ===================================
   PRODUCTS GRID
   =================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--golden-yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.product-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: var(--shadow-xl);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card-image {
    height: 200px;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.1);
}

.product-card-content {
    padding: 25px;
}

.product-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.product-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin: 0;
}

/* ===================================
   TEAM GRID
   =================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    overflow: hidden;
}

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

.team-card-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-card-image img {
    transform: scale(1.1);
}

.team-card-content {
    padding: 25px;
    text-align: center;
}

.team-card h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.team-card .position {
    color: var(--golden-yellow);
    font-size: 14px;
    font-weight: 500;
}

/* ===================================
   JOBS LIST
   =================================== */
.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-card {
    background: var(--white);
    padding: 30px;
    box-shadow: var(--shadow-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.job-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--golden-yellow);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.job-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(10px);
}

.job-card:hover::before {
    transform: scaleY(1);
}

.job-info h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.job-meta {
    display: flex;
    gap: 20px;
    color: var(--gray-600);
    font-size: 14px;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-meta i {
    color: var(--golden-yellow);
}

.job-type {
    display: inline-block;
    padding: 8px 20px;
    background: var(--light-yellow);
    color: var(--primary-blue);
    font-size: 12px;
    font-weight: 600;
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

/* ===================================
   CONTACT
   =================================== */
.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    background: var(--white);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

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

.contact-info-card h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--golden-yellow);
}

.contact-info-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--gray-700);
}

.contact-info-card ul li i {
    color: var(--golden-yellow);
    font-size: 18px;
    margin-top: 3px;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--gray-700);
}

.form-group label span {
    color: #dc3545;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-secondary);
    font-size: 15px;
    border: 2px solid var(--gray-300);
    border-radius: 0;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(26, 58, 92, 0.1);
}

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

.alert {
    padding: 15px 20px;
    margin-bottom: 25px;
    font-size: 14px;
}

.alert-success {
    background: rgba(26, 58, 92, 0.1);
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
}

.alert-error {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid #dc3545;
}

/* ===================================
   ERROR PAGE
   =================================== */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    background: var(--gray-100);
}

.error-content h1 {
    font-size: 8rem;
    line-height: 1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--golden-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.error-content p {
    color: var(--gray-600);
    margin-bottom: 30px;
}

/* ===================================
   LEGAL PAGES
   =================================== */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin: 30px 0 15px;
    color: var(--primary-blue);
}

.legal-content p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    padding-left: 25px;
    margin-bottom: 20px;
}

.legal-content ul li {
    list-style: disc;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 8px;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1200px) {
    .nav-menu > li > a {
        padding: 28px 12px;
        font-size: 10px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .activities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .news-layout {
        grid-template-columns: 1fr;
    }
    
    .news-featured-image img {
        height: 400px;
    }
}

@media (max-width: 992px) {
    .mobile-toggle {
        display: flex;
    }
    
    .navbar::before {
        width: 100%;
        clip-path: none;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--primary-blue);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-menu > li > a {
        padding: 15px 0;
        width: 100%;
        justify-content: space-between;
    }
    
    .nav-menu > li > a::after {
        display: none;
    }
    
    .nav-flags {
        margin: 0;
        padding: 15px 0;
    }
    
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0,0,0,0.2);
        display: none;
    }
    
    .has-dropdown.active .dropdown {
        display: block;
    }
    
    .dropdown li a {
        color: var(--white);
        border-bottom-color: rgba(255,255,255,0.1);
    }
    
    .dropdown li a::before {
        display: none;
    }
    
    .dropdown li a:hover {
        background: rgba(255,255,255,0.1);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .breaking-news-content,
    .commitments-content,
    .welcome-content,
    .pillars-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-section {
        clip-path: none;
    }
    
    .values-grid,
    .team-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .activity-card {
        clip-path: none;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .section {
        padding: 60px 0;
    }
    
    .hero-content {
        padding: 0 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .hero-divider {
        width: 60px;
        height: 3px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }
    
    .page-hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .page-hero-divider {
        width: 60px;
        height: 3px;
    }
    
    .page-hero-text h1 {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item::after {
        display: none;
    }
    
    .values-grid,
    .activities-grid,
    .team-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .value-card {
        clip-path: none;
    }
    
    .job-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .pillars-list {
        flex-direction: column;
        gap: 20px;
    }
    
    .utility-links {
        gap: 15px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 80px;
        padding-right: 0;
        justify-content: flex-start;
    }
    
    .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }
    
    .timeline-year,
    .timeline-item:nth-child(even) .timeline-year {
        left: -55px;
        right: auto;
        width: 50px;
        height: 50px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .btn {
        width: 100%;
        clip-path: none;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .breaking-news-image img {
        width: 220px;
        height: 220px;
    }
    
    .loader-logo {
        flex-direction: column;
        gap: 20px;
    }
    
    .loader-logo-text {
        border-left: none;
        border-top: 2px solid var(--golden-yellow);
        padding-left: 0;
        padding-top: 15px;
        text-align: center;
    }
}

/* ===================================
   ANIMATION UTILITIES
   =================================== */
[data-aos] {
    transition-property: transform, opacity;
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

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

.slide-in-left {
    animation: slideInLeft 0.6s ease forwards;
}

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

.slide-in-right {
    animation: slideInRight 0.6s ease forwards;
}

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

.scale-in {
    animation: scaleIn 0.5s ease forwards;
}

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