/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0053A0;
    --primary-red: #ED1D26;
    --dark-blue: #045cb4;
    --text-dark: #334155;
    --text-light: #7A7A7A;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --border-color: #e2e8f0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Oxygen-Sans", Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    font-size: 14px;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info {
    display: flex;
    gap: 30px;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--primary-red);
}

.contact-info i {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--white);
    font-size: 18px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary-red);
}

/* Header */
.header {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s;
}

.header.scrolled {
    position: fixed;
    top: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header.scrolled .top-bar {
    display: none;
}

.header.scrolled .logo h1 .blue {
    color: var(--primary-blue);
}

.header.scrolled .logo h1 .red {
    color: var(--primary-red);
}

.header.scrolled .nav-menu > li > a {
    color: var(--text-dark);
}

.header.scrolled .nav-menu > li > a:hover,
.header.scrolled .nav-menu > li > a.active {
    color: var(--primary-blue);
}

.header.scrolled .hamburger span {
    background: var(--primary-blue);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 100px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s;
}

.logo h1 {
    font-size: 32px;
    font-weight: 700;
}

.logo h1 .blue {
    color: var(--white);
}

.logo h1 .red {
    color: var(--primary-red);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 35px;
}

.nav-menu li {
    position: relative;
}

.nav-menu > li > a {
    color: var(--white);
    text-decoration: none !important;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    padding: 5px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    border-bottom: none !important;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--primary-red);
    text-decoration: none !important;
    border-bottom: none !important;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    list-style: none;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    padding: 10px 0;
    margin-top: 10px;
    border-top: 2px solid var(--primary-blue);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    padding: 12px 20px;
    display: block;
    color: var(--text-dark);
    font-size: 14px;
    transition: all 0.3s;
    text-decoration: none !important;
    border-bottom: none !important;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-blue);
    padding-left: 25px;
    text-decoration: none !important;
    border-bottom: none !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 0;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.slide-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    animation: fadeInUp 1s;
}

.slide-content p {
    font-size: 20px;
    margin-bottom: 30px;
    animation: fadeInUp 1s 0.2s both;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
}

.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrows:hover {
    background: rgba(255,255,255,0.3);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

/* Announcement Banner */
.announcement-banner {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 50%, var(--primary-red) 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.announcement-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    animation: slideBackground 20s linear infinite;
}

@keyframes slideBackground {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    text-align: center;
}

.announcement-icon {
    font-size: 60px;
    color: var(--white);
    animation: pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.announcement-text {
    flex: 1;
    min-width: 300px;
}

.announcement-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.3;
    animation: fadeInUp 0.8s ease-out;
}

.announcement-text h2 .highlight {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    font-weight: 800;
    position: relative;
}

.announcement-text h2 .highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.announcement-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.announcement-decoration {
    font-size: 50px;
    color: var(--white);
    opacity: 0.8;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-item {
    text-align: center;
    padding: 30px;
}

.process-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.process-item h3 {
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.process-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 14px;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-images img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-images img:first-child {
    margin-bottom: 20px;
}

.about-content h1 {
    font-size: 36px;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-content h1 .blue {
    color: var(--primary-blue);
}

.about-content h1 .red {
    color: var(--primary-red);
}

.about-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-content h2:first-of-type {
    margin-top: 0;
}

.about-divider {
    width: 60px;
    height: 3px;
    background: var(--primary-blue);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
}

.products-header {
    text-align: center;
    margin-bottom: 60px;
}

.products-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.products-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.products-header h2 .white {
    color: var(--white);
}

.products-header h2 .red {
    color: var(--primary-red);
}

.products-header p {
    font-size: 16px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 8px;
    font-weight: 700;
}

.products-header-divider {
    width: 60px;
    height: 3px;
    background: var(--primary-red);
    margin: 20px auto;
}

.products-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.products-left {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.products-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-card {
    background: transparent;
    padding: 20px;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-card h3 a {
    text-decoration: none;
    color: var(--white);
    transition: color 0.3s;
}

.product-card h3 a:hover {
    color: var(--primary-red);
}

.product-card h3 .tit1 {
    color: var(--white);
    font-weight: 700;
}

.product-card h3 .tit2 {
    color: var(--primary-red);
    font-weight: 400;
}

.product-card p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.6;
}

.products-right .product-card {
    padding: 15px 0;
}

.products-right .product-card h3 {
    font-size: 24px;
    margin-bottom: 0;
}

.products-right .product-card h3 a {
    color: var(--white);
}

/* News Section */
.news-section {
    padding: 80px 0;
    background: var(--white);
}

.news-header {
    text-align: center;
    margin-bottom: 50px;
}

.news-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.news-header h2 .blue {
    color: var(--primary-blue);
}

.news-header h2 .red {
    color: var(--primary-red);
}

.news-header p {
    color: var(--text-light);
    font-size: 16px;
}

.news-header-divider {
    width: 60px;
    height: 3px;
    background: var(--primary-red);
    margin: 20px auto;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.news-card img {
    width: 100%;
    height: 220px;
    min-height: 220px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
    background: var(--bg-light);
}

.news-card:hover img {
    transform: scale(1.05);
}

.news-badge {
    background: var(--primary-blue);
    color: var(--white);
    padding: 8px 15px;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.news-card-content {
    padding: 25px;
}

.news-card-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.news-card-content h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.news-card-content h3 a:hover {
    color: var(--primary-blue);
}

.news-card-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 14px;
}

.news-date {
    color: var(--text-light);
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-content h2 .white {
    color: var(--white);
}

.cta-content h2 .red {
    color: var(--primary-red);
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 16px;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
    border: 2px solid var(--primary-red);
}

.btn-primary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* Footer */
.footer {
    background: #1e293b;
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 700;
}

.footer-section h3 .red {
    color: var(--primary-red);
}

.footer-section h3 .white {
    color: var(--white);
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li i {
    margin-right: 10px;
    color: var(--primary-blue);
    width: 20px;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.footer-section a:hover {
    color: var(--primary-red);
}

.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 30px 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 170px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.scroll-top:hover {
    background: var(--primary-red);
    transform: translateY(-5px);
}

.scroll-top.show {
    display: flex;
}

/* Phone Call Button */
.phone-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 83, 160, 0.4);
    transition: all 0.3s;
    z-index: 999;
}

.phone-btn:hover {
    background: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 7px 20px rgba(0, 83, 160, 0.5);
}

.phone-btn:active {
    transform: translateY(-3px);
}

/* Mobile Phone Button */
@media (max-width: 768px) {
    .phone-btn {
        width: 55px;
        height: 55px;
        bottom: 105px;
        right: 20px;
        font-size: 22px;
    }

    .scroll-top {
        bottom: 180px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 20px;
    }

    .whatsapp-btn {
        width: 55px;
        height: 55px;
        bottom: 30px;
        right: 20px;
        font-size: 24px;
    }
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    z-index: 999;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* Page Content */
.page-content {
    padding: 80px 0;
    background: var(--white);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    color: var(--primary-blue);
    font-size: 32px;
    margin-bottom: 20px;
}

.content-wrapper h3 {
    color: var(--primary-blue);
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-wrapper p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Contact Page Styles */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info-section h2,
.contact-form-section h2 {
    color: var(--primary-blue);
    font-size: 28px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 24px;
    color: var(--primary-blue);
    margin-top: 5px;
}

.contact-item h3 {
    color: var(--primary-blue);
    margin-bottom: 5px;
    font-size: 18px;
}

.contact-item p {
    color: var(--text-light);
    margin-bottom: 5px;
}

.contact-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--primary-blue);
}

.contact-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group textarea {
    resize: vertical;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.map-section h2 {
    text-align: center;
    color: var(--primary-blue);
    font-size: 32px;
    margin-bottom: 40px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
}

/* Catalog Page Styles */
.catalog-header {
    margin-bottom: 40px;
}

.catalog-search {
    max-width: 600px;
    margin: 0 auto;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box i.fa-search {
    position: absolute;
    left: 20px;
    color: var(--text-light);
    font-size: 18px;
    z-index: 1;
}

.search-box input {
    width: 100%;
    padding: 15px 50px 15px 55px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 16px;
    transition: all 0.3s;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(0, 83, 160, 0.1);
}

.search-clear {
    position: absolute;
    right: 15px;
    background: var(--bg-light);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-light);
    transition: all 0.3s;
    z-index: 1;
}

.search-clear:hover {
    background: var(--primary-red);
    color: var(--white);
}

.catalog-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 14px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.products-catalog {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.catalog-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.catalog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.catalog-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.catalog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.catalog-item:hover .catalog-image img {
    transform: scale(1.1);
}

.catalog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 83, 160, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.catalog-item:hover .catalog-overlay {
    opacity: 1;
}

.catalog-content {
    padding: 25px;
}

.catalog-content h3 {
    color: var(--primary-blue);
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.catalog-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 14px;
}

.catalog-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.catalog-link:hover {
    color: var(--primary-red);
    gap: 12px;
}

.catalog-link i {
    transition: transform 0.3s;
}

.catalog-link:hover i {
    transform: translateX(5px);
}

/* Product Detail Page */
.product-detail-page {
    padding: 80px 0;
    background: var(--white);
}

.breadcrumb {
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--primary-red);
}

.breadcrumb span {
    color: var(--text-dark);
    font-weight: 600;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    margin-top: 40px;
}

.product-sidebar {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 0;
    height: fit-content;
    position: sticky;
    top: 120px;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.sidebar-header {
    padding: 20px;
    background: var(--primary-blue);
    border-radius: 10px 10px 0 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.sidebar-header h3 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.sidebar-products {
    padding: 10px 0;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

.sidebar-products::-webkit-scrollbar {
    width: 6px;
}

.sidebar-products::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar-products::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

.sidebar-products::-webkit-scrollbar-thumb:hover {
    background: var(--text-light);
}

.sidebar-product-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.sidebar-product-item:hover {
    background: var(--white);
    border-left-color: var(--primary-blue);
    color: var(--primary-blue);
}

.sidebar-product-item.active {
    background: var(--white);
    border-left-color: var(--primary-red);
    color: var(--primary-red);
    font-weight: 600;
}

.sidebar-product-name {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

.sidebar-product-item i {
    font-size: 12px;
    opacity: 0.5;
    transition: all 0.3s;
}

.sidebar-product-item:hover i,
.sidebar-product-item.active i {
    opacity: 1;
    transform: translateX(3px);
}

.product-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.product-detail-image {
    position: sticky;
    top: 100px;
}

.product-detail-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-detail-info h1 {
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    line-height: 1.2;
}

.product-detail-info .product-category {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.product-detail-info .product-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 16px;
}

.product-detail-info .product-features {
    margin-bottom: 30px;
}

.product-detail-info .product-features h3 {
    color: var(--primary-blue);
    font-size: 20px;
    margin-bottom: 15px;
}

.product-detail-info .product-features ul {
    list-style: none;
    padding: 0;
}

.product-detail-info .product-features li {
    padding: 10px 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-detail-info .product-features li i {
    color: var(--primary-red);
    font-size: 14px;
}

.product-detail-info .product-specs {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.product-detail-info .product-specs h3 {
    color: var(--primary-blue);
    font-size: 20px;
    margin-bottom: 20px;
}

.product-specs-table {
    width: 100%;
    border-collapse: collapse;
}

.product-specs-table tr {
    border-bottom: 1px solid var(--border-color);
}

.product-specs-table td {
    padding: 12px 0;
    color: var(--text-dark);
}

.product-specs-table td:first-child {
    font-weight: 600;
    color: var(--primary-blue);
    width: 40%;
}

.product-detail-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Related Products */
.related-products {
    padding: 80px 0;
    background: var(--bg-light);
}

.related-products h2 {
    text-align: center;
    color: var(--primary-blue);
    font-size: 32px;
    margin-bottom: 50px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.related-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.related-item:hover {
    transform: translateY(-5px);
}

.related-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-item-content {
    padding: 20px;
}

.related-item-content h4 {
    color: var(--primary-blue);
    font-size: 18px;
    margin-bottom: 10px;
}

.related-item-content a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}

.related-item-content a:hover {
    color: var(--primary-red);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
    }
    
    .products-wrapper {
        grid-template-columns: 1fr;
    }
    
    .products-left {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Top Bar Mobile */
    .top-bar {
        padding: 8px 0;
        font-size: 12px;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .contact-info {
        flex-direction: column;
        gap: 5px;
        width: 100%;
    }

    .contact-info a {
        font-size: 12px;
    }

    .social-links {
        gap: 10px;
    }

    .social-links a {
        font-size: 16px;
    }

    /* Header Mobile */
    .header {
        top: 0;
        position: fixed;
        background: var(--white);
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .header.scrolled {
        top: 0;
    }

    .navbar {
        padding: 12px 0;
    }

    .logo img {
        height: 80px;
    }

    .logo h1 {
        font-size: 24px;
    }

    /* Logo colors always visible on mobile */
    .logo h1 .blue {
        color: var(--primary-blue) !important;
    }

    .logo h1 .red {
        color: var(--primary-red) !important;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
        position: relative;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hamburger span {
        background: var(--primary-blue);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: left;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.1);
        padding: 70px 20px 20px 20px;
        gap: 0;
        height: 100vh;
        overflow-y: auto;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu > li > a {
        color: var(--text-dark);
        text-shadow: none;
        padding: 15px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .nav-menu > li > a i {
        transition: transform 0.3s;
    }

    .dropdown.active > a i {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--bg-light);
        margin-top: 0;
        margin-left: 0;
        display: none;
        padding: 0;
        border-top: none;
        min-width: 100%;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li {
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .dropdown-menu a {
        padding: 12px 20px;
        font-size: 14px;
    }

    /* Hero Slider Mobile */
    .hero-slider {
        height: 60vh;
        min-height: 350px;
        margin-top: 60px;
    }

    .slide-content {
        padding: 20px;
    }

    .slide-content h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .slide-content p {
        font-size: 14px;
    }

    /* Announcement Banner Mobile */
    .announcement-banner {
        padding: 35px 0;
    }

    .announcement-content {
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
    }

    .announcement-icon {
        font-size: 45px;
    }

    .announcement-text h2 {
        font-size: 24px;
        line-height: 1.4;
    }

    .announcement-text p {
        font-size: 15px;
    }

    .announcement-decoration {
        font-size: 40px;
    }

    /* Product Detail Mobile */
    .product-detail-page {
        padding: 100px 0 40px 0;
    }

    .breadcrumb {
        font-size: 12px;
        margin-bottom: 20px;
        word-break: break-word;
    }

    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 20px;
    }

    .product-sidebar {
        position: static;
        max-height: none;
        margin-bottom: 30px;
        order: 2;
    }

    .sidebar-header {
        padding: 15px;
    }

    .sidebar-header h3 {
        font-size: 16px;
    }

    .sidebar-products {
        max-height: 400px;
        overflow-y: auto;
    }

    .sidebar-product-item {
        padding: 10px 15px;
        font-size: 13px;
    }

    .product-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        order: 1;
    }

    .product-detail-image {
        position: static;
        order: 1;
    }

    .product-detail-image img {
        width: 100%;
    }

    .product-detail-info {
        order: 2;
    }

    .product-detail-info h1 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .product-detail-info .product-category {
        font-size: 11px;
        padding: 6px 15px;
        margin-bottom: 15px;
    }

    .product-detail-info .product-description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .product-detail-info .product-features h3,
    .product-detail-info .product-specs h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .product-detail-info .product-features li {
        font-size: 14px;
        padding: 8px 0;
    }

    .product-specs {
        padding: 20px;
        overflow-x: auto;
    }

    .product-specs-table {
        min-width: 100%;
        font-size: 14px;
    }

    .product-specs-table td {
        padding: 10px 5px;
        word-break: break-word;
    }

    .product-specs-table td:first-child {
        width: 35%;
        padding-right: 10px;
    }

    .product-detail-cta {
        flex-direction: column;
        gap: 15px;
    }

    .product-detail-cta .btn {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }

    /* Related Products Mobile */
    .related-products {
        padding: 50px 0;
    }

    .related-products h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .related-item img {
        height: 150px;
    }

    .related-item-content {
        padding: 15px;
    }

    .related-item-content h4 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .related-item-content a {
        font-size: 12px;
    }

    .related-products-more {
        margin-top: 20px;
    }

    .related-products-more .btn {
        width: 100%;
    }

    /* General Mobile */
    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .products-left {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .products-catalog {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .catalog-item {
        margin-bottom: 15px;
    }

    .catalog-filters {
        gap: 8px;
        flex-wrap: wrap;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 12px;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    /* Top Bar Extra Small */
    .top-bar {
        padding: 6px 0;
        font-size: 11px;
    }

    .contact-info a {
        font-size: 11px;
    }

    /* Header Extra Small */
    .logo img {
        height: 70px;
    }

    .logo h1 {
        font-size: 20px;
    }

    .navbar {
        padding: 10px 0;
    }

    /* Hero Slider Extra Small */
    .hero-slider {
        height: 50vh;
        min-height: 280px;
        margin-top: 50px;
    }

    .slide-content {
        padding: 15px;
    }

    .slide-content h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .slide-content p {
        font-size: 13px;
    }

    /* Announcement Banner Extra Small */
    .announcement-banner {
        padding: 25px 0;
    }

    .announcement-content {
        gap: 15px;
        padding: 0 10px;
    }

    .announcement-icon {
        font-size: 35px;
    }

    .announcement-text h2 {
        font-size: 20px;
        line-height: 1.3;
    }

    .announcement-text p {
        font-size: 14px;
    }

    .announcement-decoration {
        font-size: 30px;
    }

    /* Product Detail Extra Small */
    .product-detail-page {
        padding: 80px 0 30px 0;
    }

    .breadcrumb {
        font-size: 11px;
    }

    .product-detail-info h1 {
        font-size: 20px;
    }

    .product-detail-info .product-category {
        font-size: 10px;
        padding: 5px 12px;
    }

    .product-detail-info .product-description {
        font-size: 13px;
    }

    .product-detail-info .product-features h3,
    .product-detail-info .product-specs h3 {
        font-size: 16px;
    }

    .product-specs {
        padding: 15px;
    }

    .product-specs-table {
        font-size: 12px;
    }

    .product-specs-table td {
        padding: 8px 3px;
    }

    .product-detail-cta {
        flex-direction: column;
        gap: 12px;
    }

    .product-detail-cta .btn {
        width: 100%;
        text-align: center;
        padding: 12px 18px;
        font-size: 14px;
    }

    /* Sidebar Extra Small */
    .sidebar-header {
        padding: 12px;
    }

    .sidebar-header h3 {
        font-size: 14px;
    }

    .sidebar-products {
        max-height: 300px;
    }

    .sidebar-product-item {
        padding: 8px 12px;
        font-size: 12px;
    }

    /* Related Products Extra Small */
    .related-products {
        padding: 40px 0;
    }

    .related-products h2 {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .related-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .related-item img {
        height: 180px;
    }

    .related-item-content {
        padding: 12px;
    }

    .related-item-content h4 {
        font-size: 13px;
    }

    .related-item-content a {
        font-size: 11px;
    }

    /* General Extra Small */
    .products-header h2,
    .news-header h2,
    .cta-content h2 {
        font-size: 24px;
    }

    .products-catalog {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .catalog-item {
        margin-bottom: 15px;
    }

    .catalog-filters {
        gap: 6px;
    }

    .filter-btn {
        padding: 6px 12px;
        font-size: 11px;
    }

    .catalog-search {
        max-width: 100%;
    }

    .search-box input {
        padding: 10px 40px 10px 45px;
        font-size: 13px;
    }

    .container {
        padding: 0 12px;
    }

    /* Product Detail Layout Extra Small */
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ============================================
   ENHANCED PAGE STYLES - Modern Designs
   ============================================ */

/* About Page Enhanced Styles */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.feature-list li {
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.feature-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left-color: var(--primary-red);
}

.feature-list li i {
    font-size: 24px;
    color: var(--primary-blue);
    min-width: 30px;
}

.feature-list li span {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
}

.why-us {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.why-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-red));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.why-item:hover::before {
    transform: scaleX(1);
}

.why-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.why-item i {
    font-size: 48px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.why-item:hover i {
    transform: scale(1.1) rotate(5deg);
    color: var(--primary-red);
}

.why-item h4 {
    color: var(--text-dark);
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.why-item p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* Gallery Page Enhanced Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    cursor: pointer;
    aspect-ratio: 4/3;
    background: var(--bg-light);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 83, 160, 0.9) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay h3 {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay h3 {
    transform: translateY(0);
}

/* News Page Enhanced Styles */
.news-page-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(0, 83, 160, 0.03) 0%, rgba(220, 38, 38, 0.03) 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.news-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-red));
}

.news-header-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(0, 83, 160, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.news-header-icon i {
    font-size: 36px;
    color: var(--white);
}

.news-page-header h2 {
    font-size: 48px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
}

.news-header-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-red));
    border-radius: 2px;
    margin: 0 auto 25px;
}

.news-page-header p {
    font-size: 17px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 50px;
}

.news-article {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.news-article:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.news-article-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 0;
    min-height: 350px;
}

.news-image-container {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
}

.news-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-article:hover .news-image-container img {
    transform: scale(1.1);
}

.news-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.news-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.news-date,
.news-read-time {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
}

.news-date i,
.news-read-time i {
    color: var(--primary-blue);
    font-size: 16px;
}

.news-date {
    color: var(--text-dark);
    font-weight: 600;
}

.news-content h2 {
    color: var(--text-dark);
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.news-article:hover .news-content h2 {
    color: var(--primary-blue);
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.news-content p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 18px;
    font-size: 16px;
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    margin-top: 20px;
    padding: 12px 0;
    transition: all 0.3s ease;
    width: fit-content;
}

.news-read-more i {
    transition: transform 0.3s ease;
}

.news-read-more:hover {
    color: var(--primary-red);
    gap: 15px;
}

.news-read-more:hover i {
    transform: translateX(5px);
}

/* Responsive News Styles */
@media (max-width: 1024px) {
    .news-article-wrapper {
        grid-template-columns: 350px 1fr;
    }
    
    .news-content {
        padding: 30px;
    }
    
    .news-content h2 {
        font-size: 28px;
    }
    
    .news-page-header h2 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .news-article-wrapper {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .news-image-container {
        height: 250px;
    }
    
    .news-content {
        padding: 25px;
    }
    
    .news-content h2 {
        font-size: 24px;
    }
    
    .news-meta {
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .news-page-header {
        padding: 30px 15px;
        margin-bottom: 40px;
    }
    
    .news-page-header h2 {
        font-size: 32px;
    }
    
    .news-header-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .news-header-icon i {
        font-size: 28px;
    }
    
    .news-page-header p {
        font-size: 15px;
    }
}

/* Mission Vision Page Enhanced Styles */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.mission-card,
.vision-card {
    background: linear-gradient(135deg, var(--white) 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 83, 160, 0.05) 0%, transparent 70%);
    transition: all 0.5s ease;
}

.mission-card:hover::before,
.vision-card:hover::before {
    top: -30%;
    right: -30%;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 5px 20px rgba(0, 83, 160, 0.3);
    transition: all 0.3s ease;
}

.mission-card:hover .card-icon,
.vision-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-icon i {
    font-size: 36px;
    color: var(--white);
}

.mission-card h2,
.vision-card h2 {
    text-align: center;
    color: var(--primary-blue);
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 700;
}

.mission-card p,
.vision-card p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 20px;
    text-align: center;
}

.vision-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    gap: 15px;
}

.vision-list li {
    padding: 15px 20px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    font-size: 18px;
}

.vision-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.vision-list li i {
    color: var(--primary-red);
    font-size: 20px;
    min-width: 25px;
}

.vision-list li {
    color: var(--text-dark);
    margin: 0;
    font-weight: 500;
}

.vision-list li span {
    color: var(--text-dark);
}

/* Documents Page Enhanced Styles */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.document-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.document-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 83, 160, 0.03), rgba(220, 38, 38, 0.03));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.document-card:hover::before {
    opacity: 1;
}

.document-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-blue);
}

.document-card i {
    font-size: 64px;
    color: var(--primary-blue);
    margin-bottom: 25px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.document-card:hover i {
    transform: scale(1.1) rotate(-5deg);
    color: var(--primary-red);
}

.document-card h3 {
    color: var(--text-dark);
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.document-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

.note-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-left: 5px solid var(--primary-blue);
    border-radius: 10px;
    padding: 25px 30px;
    margin-top: 50px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.note-box i {
    font-size: 28px;
    color: var(--primary-blue);
    min-width: 30px;
    margin-top: 3px;
}

.note-box p {
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
    font-size: 15px;
}

.note-box p strong {
    color: var(--primary-blue);
}

/* Content Wrapper Enhancements */
.content-wrapper {
    animation: fadeInUp 0.6s ease-out;
}

.content-wrapper > h2:first-child {
    font-size: 42px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 20px;
}

.content-wrapper > h2:first-child::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-red));
    border-radius: 2px;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .documents-grid {
        grid-template-columns: 1fr;
    }

    .why-us {
        grid-template-columns: 1fr;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .mission-card,
    .vision-card {
        padding: 30px 25px;
    }

    .news-article {
        padding: 25px 20px;
    }
}

/* SEO Keywords Section */
.seo-keywords-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-top: 1px solid var(--border-color);
}

.seo-keywords-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.seo-keywords-header {
    text-align: center;
    margin-bottom: 40px;
}

.seo-keywords-header h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.seo-keywords-header h3 .blue {
    color: var(--primary-blue);
}

.seo-keywords-header h3 .red {
    color: var(--primary-red);
}

.seo-keywords-header p {
    color: var(--text-light);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.seo-keywords-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.seo-keyword-tag {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.seo-keyword-tag:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 83, 160, 0.3);
}

.seo-keyword-tag i {
    margin-right: 8px;
    font-size: 12px;
    opacity: 0.7;
}

.seo-keyword-tag:hover i {
    opacity: 1;
}

/* Responsive SEO Keywords */
@media (max-width: 768px) {
    .seo-keywords-section {
        padding: 40px 0;
    }

    .seo-keywords-header h3 {
        font-size: 24px;
    }

    .seo-keywords-header p {
        font-size: 14px;
    }

    .seo-keywords-tags {
        gap: 10px;
    }

    .seo-keyword-tag {
        padding: 8px 16px;
        font-size: 13px;
    }
}
