/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2e5aa5;
    --secondary-color: #e8312e;
    --accent-color: #3caae4;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --border-color: #e9ecef;
    --shadow: 0 4px 20px rgba(46, 90, 165, 0.1);
    --shadow-hover: 0 8px 30px rgba(46, 90, 165, 0.15);
}

/* Dark mode CSS variables for pop-ups */
[data-theme="dark"] {
    --primary-color: #4a9eff;
    --secondary-color: #ff6b6b;
    --accent-color: #6bb6ff;
    --text-dark: #e0e0e0;
    --text-light: #b0b0b0;
    --white: #1a1a1a;
    --light-gray: #2d2d2d;
    --border-color: rgba(46, 90, 165, 0.2);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.4);
}


body {
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}

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

.nav-logo h2 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-trigger {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    display: inline-block;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.dropdown-trigger::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.dropdown-trigger:hover::after {
    width: 100%;
}

.dropdown-trigger:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 250px;
    box-shadow: var(--shadow);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 1rem 0;
    border: 1px solid var(--border-color);
}

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

.dropdown-menu li {
    list-style: none;
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--light-gray);
}

.dropdown-menu a:hover {
    background: var(--light-gray);
    color: var(--primary-color);
    padding-left: 2rem;
}

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

/* Nested dropdown support for products menu */
.dropdown-menu li.has-submenu {
    position: relative;
}

.dropdown-menu li.has-submenu > a {
    position: relative;
    padding-right: 2.5rem;
}

.dropdown-menu li.has-submenu > a::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown-menu li.has-submenu:hover > a::after {
    transform: translateY(-50%) translateX(3px);
}

.dropdown-submenu {
    position: absolute;
    left: 100%;
    top: 0;
    background: var(--white);
    min-width: 250px;
    box-shadow: var(--shadow);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    padding: 1rem 0;
    border: 1px solid var(--border-color);
    margin-left: 0.5rem;
}

.dropdown-menu li.has-submenu:hover > .dropdown-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.dropdown-submenu a {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    color: var(--text-dark);
    border-bottom: 1px solid var(--light-gray);
}

.dropdown-submenu a:hover {
    background: var(--light-gray);
    color: var(--primary-color);
    padding-left: 2rem;
}

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

.dropdown .nav-link i {
    margin-left: 0.5rem;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .nav-link i,
.dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg);
}

.nav-link:hover,
.dropdown-trigger:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Navbar Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-actions-mobile {
    display: none;
}

.search-btn, .language-btn {
    background: linear-gradient(135deg, rgba(46, 90, 165, 0.1), rgba(46, 90, 165, 0.05));
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 14px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(46, 90, 165, 0.1);
}

.search-btn::before, .language-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;
}

.search-btn:hover::before, .language-btn:hover::before {
    left: 100%;
}

.search-btn:hover, .language-btn:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(46, 90, 165, 0.3);
    border-color: var(--accent-color);
}

.search-btn:active, .language-btn:active {
    transform: translateY(-1px) scale(1.02);
    transition: all 0.1s ease;
}

.search-btn i, .language-btn i {
    transition: all 0.3s ease;
    font-size: 16px;
}

.search-btn:hover i {
    transform: rotate(15deg) scale(1.1);
    color: white;
}

.language-btn:hover i {
    transform: rotate(360deg) scale(1.1);
    color: white;
}

.language-btn {
    min-width: 70px;
    justify-content: center;
    position: relative;
}

.language-text {
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.language-btn:hover .language-text {
    transform: scale(1.1);
    color: white;
}

/* Button Loading State */
.search-btn.loading, .language-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.search-btn.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Button Pulse Animation */
.search-btn.pulse, .language-btn.pulse {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(46, 90, 165, 0.1);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 8px 30px rgba(46, 90, 165, 0.4);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 4px 15px rgba(46, 90, 165, 0.1);
        transform: scale(1);
    }
}

/* Button Focus States */
.search-btn:focus, .language-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(46, 90, 165, 0.3);
    transform: scale(1.02);
}

/* Button Active States */
.search-btn:active, .language-btn:active {
    transform: translateY(-1px) scale(1.02);
    transition: all 0.1s ease;
    box-shadow: 0 4px 15px rgba(46, 90, 165, 0.2);
}

/* Button Disabled States */
.search-btn:disabled, .language-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.search-btn:disabled:hover, .language-btn:disabled:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(46, 90, 165, 0.1);
}

/* Enhanced Button Hover Effects */
.search-btn:hover .fas, .language-btn:hover .fas {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Button Ripple Effect */
.search-btn, .language-btn {
    position: relative;
    overflow: hidden;
}

.search-btn::after, .language-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.search-btn:active::after, .language-btn:active::after {
    width: 300px;
    height: 300px;
}

/* Search Modal */
.search-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.search-modal-content {
    background: linear-gradient(135deg, white, rgba(248, 249, 250, 0.95));
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    animation: modalSlideIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

/* Dark mode for search modal */
[data-theme="dark"] .search-modal {
    background: rgba(0, 0, 0, 0.9);
}

[data-theme="dark"] .search-modal-content {
    background: linear-gradient(135deg, var(--white), var(--light-gray));
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-hover);
}


@keyframes modalSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-100px) scale(0.8);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 15px 15px 0 0;
    transition: all 0.3s ease;
}

/* Dark mode for search header */
[data-theme="dark"] .search-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-bottom: 1px solid var(--border-color);
}


.search-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.search-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.search-close::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.search-close:hover::before {
    transform: scale(1);
}

.search-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.search-close:active {
    transform: scale(1.05) rotate(90deg);
    transition: all 0.1s ease;
}

.search-body {
    padding: 25px;
}

.search-input-container {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

#productSearchInput {
    flex: 1;
    padding: 18px 24px;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: linear-gradient(135deg, var(--light-gray), rgba(248, 249, 250, 0.8));
    backdrop-filter: blur(10px);
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Dark mode for search input */
[data-theme="dark"] #productSearchInput {
    background: linear-gradient(135deg, var(--light-gray), var(--white));
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] #productSearchInput:focus {
    background: linear-gradient(135deg, var(--white), var(--light-gray));
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(74, 158, 255, 0.15), inset 0 2px 10px rgba(0, 0, 0, 0.2);
}


#productSearchInput:focus {
    outline: none;
    border-color: var(--primary-color);
    background: linear-gradient(135deg, white, rgba(255, 255, 255, 0.95));
    box-shadow: 0 0 0 4px rgba(46, 90, 165, 0.15), inset 0 2px 10px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.search-submit {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    padding: 18px 24px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 16px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(46, 90, 165, 0.3);
}

.search-submit::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;
}

.search-submit:hover::before {
    left: 100%;
}

.search-submit:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(46, 90, 165, 0.4);
}

.search-submit:active {
    transform: translateY(-1px) scale(1.02);
    transition: all 0.1s ease;
}

.search-suggestions {
    margin-bottom: 20px;
}

.suggestion-category h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

/* Dark mode for suggestion category */
[data-theme="dark"] .suggestion-category h4 {
    color: var(--text-dark);
}


.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.suggestion-tag {
    background: linear-gradient(135deg, var(--light-gray), rgba(248, 249, 250, 0.8));
    color: var(--text-dark);
    padding: 10px 18px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Dark mode for suggestion tags */
[data-theme="dark"] .suggestion-tag {
    background: linear-gradient(135deg, var(--light-gray), var(--white));
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

[data-theme="dark"] .suggestion-tag:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-color: var(--accent-color);
    box-shadow: var(--shadow-hover);
}


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

.suggestion-tag:hover::before {
    left: 100%;
}

.suggestion-tag:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(46, 90, 165, 0.3);
    border-color: var(--accent-color);
}

.search-results {
    max-height: 300px;
    overflow-y: auto;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

.search-result-item {
    padding: 18px 20px;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 12px;
    margin-bottom: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(248, 249, 250, 0.6));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.search-result-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 90, 165, 0.1), transparent);
    transition: left 0.5s;
}

.search-result-item:hover::before {
    left: 100%;
}

.search-result-item:hover {
    background: linear-gradient(135deg, rgba(46, 90, 165, 0.1), rgba(46, 90, 165, 0.05));
    transform: translateX(8px) translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 90, 165, 0.15);
    border-color: var(--primary-color);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.search-result-description {
    color: var(--text-light);
    font-size: 14px;
}

.no-results {
    text-align: center;
    color: var(--text-light);
    padding: 30px 20px;
    font-style: italic;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.8), rgba(255, 255, 255, 0.6));
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.5s ease-out;
}

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

/* Enhanced Search Results Animation */
.search-result-item {
    animation: slideInFromLeft 0.3s ease-out;
}

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

/* Staggered animation for multiple results */
.search-result-item:nth-child(1) { animation-delay: 0.1s; }
.search-result-item:nth-child(2) { animation-delay: 0.2s; }
.search-result-item:nth-child(3) { animation-delay: 0.3s; }
.search-result-item:nth-child(4) { animation-delay: 0.4s; }
.search-result-item:nth-child(5) { animation-delay: 0.5s; }

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(46, 90, 165, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.highlight {
    color: var(--primary-color);
    position: relative;
}

.highlight::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    animation: expandWidth 1s ease-out 0.8s forwards;
    transform: scaleX(0);
    transform-origin: left;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1s forwards;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background: #1e3d7a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    animation: slideInRight 1s ease-out;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    box-shadow: var(--shadow);
    animation: float 3s ease-in-out infinite;
    transition: all 0.3s ease;
    cursor: pointer;
}

.floating-icon:hover {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
}

.icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.icon-2 {
    top: 60%;
    right: 20%;
    animation-delay: 0.5s;
    color: var(--secondary-color);
}

.icon-3 {
    bottom: 30%;
    left: 30%;
    animation-delay: 1s;
    color: var(--accent-color);
}

.icon-4 {
    top: 10%;
    right: 10%;
    animation-delay: 1.5s;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: rotate(45deg);
}

/* Section Styles */
section {
    padding: 100px 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--white);
}

.about-content {
    display: grid;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 90, 165, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    background: var(--white);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
}

.about-image {
    position: relative;
}

.image-container {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-placeholder {
    font-size: 4rem;
    color: var(--white);
    animation: pulse 2s ease-in-out infinite;
}

/* Products Section */
.products {
    background: var(--light-gray);
}

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

.product-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 90, 165, 0.1), transparent);
    transition: left 0.5s ease;
}

.product-card:hover::before {
    left: 100%;
}

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

.product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.product-card:hover .product-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.product-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.product-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.product-features {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature {
    background: var(--light-gray);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Services Section */
.services {
    background: var(--white);
}

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

.service-item {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: var(--light-gray);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 250px;
}

.service-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 90, 165, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-item:hover::before {
    left: 100%;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    background: var(--white);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.service-item h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-item p {
    color: var(--text-light);
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 100px 0 80px;
    text-align: center;
}

.header-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.header-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--accent-color);
}

.breadcrumb span {
    opacity: 0.7;
}

/* Content Styles */

.policy-content,
.disclosure-content,
.consent-form-content,
.production-content,
.sustainability-content,
.news-content,
.documents-content {
    padding: 80px 0;
}

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

.content-text h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 600;
}

.content-text h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.content-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-text ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.content-text li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.content-image {
    position: relative;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    height: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
    margin-bottom: 2rem;
}

.for-height{
    height: 400px;
}

.image-placeholder p {
    font-size: 1.2rem;
    margin-top: 1rem;
    text-align: center;
}

/* Policy Content */
.policy-content .content-text {
    max-width: 800px;
    margin: 0 auto;
}

/* Principles Grid */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.principle-item {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.principle-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 90, 165, 0.1), transparent);
    transition: left 0.5s ease;
}

.principle-item:hover::before {
    left: 100%;
}

.principle-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    background: var(--white);
}

.principle-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.principle-item:hover .principle-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.principle-item h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.principle-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Documents Content */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.document-category h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

.document-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.document-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.document-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    background: var(--white);
}

.document-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.document-info h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.document-info p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.document-date {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.2rem 0.8rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Consent Form */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.form-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.form-header p {
    opacity: 0.9;
    line-height: 1.6;
}

.consent-form {
    padding: 2rem;
}

.form-section {
    margin-bottom: 2rem;
}

.form-section h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 90, 165, 0.1);
}

.checkbox-group {
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    background: var(--light-gray);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.form-note {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.form-note a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-note a:hover {
    text-decoration: underline;
}

/* Production & Sustainability Grids */
.production-grid,
.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.production-item,
.sustainability-item {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: var(--light-gray);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 250px;
}

.production-item::before,
.sustainability-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 90, 165, 0.1), transparent);
    transition: left 0.5s ease;
}

.production-item:hover::before,
.sustainability-item:hover::before {
    left: 100%;
}

.production-item:hover,
.sustainability-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    background: var(--white);
}

.production-icon,
.sustainability-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.production-item:hover .production-icon,
.sustainability-item:hover .sustainability-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.production-item h3,
.sustainability-item h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.production-item p,
.sustainability-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.news-item {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.news-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 90, 165, 0.1), transparent);
    transition: left 0.5s ease;
}

.news-item:hover::before {
    left: 100%;
}

.news-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.news-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
}

.news-content {
    padding: 2rem;
}

.news-date {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.news-content h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.news-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--accent-color);
}

/* Contact Section */
.contact {
    background: var(--light-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-light);
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 90, 165, 0.1);
}

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

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

.developer-credit {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
    color: var(--accent-color);
}

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

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

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes expandWidth {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

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

/* Mobile Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-actions {
        display: none;
    }
    
    .nav-actions-mobile {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        display: flex;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        z-index: 1000;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
        flex-shrink: 0;
    }
    
    .nav-menu .nav-link,
    .nav-menu .dropdown-trigger {
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }
    
    .dropdown-menu {
        position: static;
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-5px);
        box-shadow: none;
        background: var(--light-gray);
        margin-top: 0;
        border-radius: 10px;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        padding: 0;
    }
    
    .dropdown-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        max-height: 500px;
        margin-top: 0.5rem;
        padding: 0.5rem 0;
    }
    
    .dropdown-menu li {
        margin: 0;
    }
    
    .dropdown-menu a {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        opacity: 0;
        transform: translateX(-5px);
        transition: all 0.3s ease;
    }
    
    /* Mobile Nav Actions */
    .nav-menu::after {
        content: "";
        display: block;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--border-color), transparent);
        margin: 2rem 1rem;
    }
    
    .nav-menu .nav-actions-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding: 1.5rem 1rem;
        margin: 1rem 0.5rem;
        background: linear-gradient(135deg, rgba(46, 90, 165, 0.08), rgba(46, 90, 165, 0.03));
        border-radius: 20px;
        border: 1px solid rgba(46, 90, 165, 0.1);
        backdrop-filter: blur(10px);
        box-shadow: 0 8px 25px rgba(46, 90, 165, 0.1);
    }
    
    .nav-menu .search-btn,
    .nav-menu .language-btn {
        flex: 1;
        min-width: 0;
        justify-content: center;
        padding: 14px 18px;
        border-radius: 18px;
        font-size: 15px;
        font-weight: 600;
        box-shadow: 0 6px 20px rgba(46, 90, 165, 0.15);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        overflow: hidden;
    }
    
    .nav-menu .search-btn::before,
    .nav-menu .language-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;
    }
    
    .nav-menu .search-btn:hover::before,
    .nav-menu .language-btn:hover::before {
        left: 100%;
    }
    
    .nav-menu .search-btn:hover,
    .nav-menu .language-btn:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 12px 35px rgba(46, 90, 165, 0.25);
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
        color: white;
        border-color: var(--accent-color);
    }
    
    .nav-menu .search-btn i,
    .nav-menu .language-btn i {
        font-size: 18px;
        transition: all 0.3s ease;
    }
    
    .nav-menu .search-btn:hover i {
        transform: rotate(15deg) scale(1.1);
    }
    
    .nav-menu .language-btn:hover i {
        transform: rotate(360deg) scale(1.1);
    }
    
    .nav-menu .language-text {
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0.5px;
    }
}

/* Medium screens - tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-actions {
        gap: 0.8rem;
    }
    
    .search-btn, .language-btn {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .language-btn {
        min-width: 65px;
    }
}

/* Large screens - ensure proper spacing */
@media (min-width: 1025px) {
    .nav-actions {
        gap: 1.2rem;
    }
    
    .search-btn, .language-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .language-btn {
        min-width: 75px;
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .services-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .product-card,
    .contact-form {
        padding: 1.5rem;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
/* References Section */
.references {
    background: var(--white);
}

.references-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.reference-item {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 300px;
}

.reference-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 90, 165, 0.1), transparent);
    transition: left 0.5s ease;
}

.reference-item:hover::before {
    left: 100%;
}

.reference-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    background: var(--white);
}

.reference-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.reference-item:hover .reference-logo {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.reference-item h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.reference-item p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    display: flex;
    align-items: center;
}

.reference-details {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: auto;
}

.reference-type {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.reference-location {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.references-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.reference-stat {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    color: var(--white);
    transition: all 0.3s ease;
}

.reference-stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.reference-stat .stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.reference-stat .stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive adjustments for references */
@media (max-width: 768px) {
    .references-grid {
        grid-template-columns: 1fr;
    }
    
    .references-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .reference-item {
        padding: 1.5rem;
    }
}
/* Enhanced Responsive Design */
/* Extra Large Devices (1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

/* Large Devices (1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .hero-container {
        gap: 5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .services-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Medium Devices (992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small Devices (768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 720px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Extra Small Devices (576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        max-width: 540px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .services-content {
        grid-template-columns: 1fr;
    }
    
    .references-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .references-stats {
        grid-template-columns: 1fr;
    }
}

/* Mobile Devices (up to 575px) */
@media (max-width: 575px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-menu {
        padding: 1.5rem 0;
    }
    
    .nav-menu li {
        margin: 0.8rem 0;
    }
    
    .nav-menu .nav-link {
        font-size: 1rem;
        padding: 0.4rem 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .products-grid,
    .services-content,
    .references-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card,
    .service-item,
    .reference-item,
    .contact-form {
        padding: 1.5rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .references-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .floating-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .hero-visual {
        height: 300px;
    }
}

/* Landscape Mobile Devices */
@media (max-width: 767px) and (orientation: landscape) {
    .hero {
        min-height: 80vh;
    }
    
    .hero-container {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .floating-icon,
    .product-icon,
    .service-icon,
    .reference-logo {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hamburger,
    .hero-buttons,
    .contact-form,
    .social-links,
    .scroll-to-top {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        color: #000 !important;
    }
    
    .section-title {
        font-size: 1.5rem;
        color: #000 !important;
    }
    
    * {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-icon {
        animation: none !important;
    }
    
    .scroll-indicator {
        animation: none !important;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --text-dark: #e9ecef;
        --text-light: #adb5bd;
        --white: #212529;
        --light-gray: #343a40;
        --border-color: #495057;
    }
    
    .navbar {
        background: rgba(33, 37, 41, 0.95);
        border-bottom-color: var(--border-color);
    }
    
    .hero {
        background: linear-gradient(135deg, var(--light-gray) 0%, rgba(46, 90, 165, 0.1) 100%);
    }
}

/* Welcome Pop-up Modal */
.welcome-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.5s ease-out;
}

.welcome-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(46, 90, 165, 0.3);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideInScale 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(46, 90, 165, 0.1);
    transition: all 0.3s ease;
}

/* Dark mode for welcome modal */
[data-theme="dark"] .welcome-modal {
    background: rgba(0, 0, 0, 0.9);
}

[data-theme="dark"] .welcome-modal-content {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-hover);
}


.welcome-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem 2rem;
    border-bottom: 1px solid rgba(46, 90, 165, 0.1);
    background: linear-gradient(135deg, rgba(46, 90, 165, 0.05), rgba(46, 90, 165, 0.02));
    border-radius: 18px 18px 0 0;
}

.welcome-logo img {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(46, 90, 165, 0.2));
}

.welcome-close {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.welcome-close:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.welcome-body {
    padding: 2rem;
    text-align: center;
}

.welcome-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.welcome-message {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 2rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

/* Dark mode text colors for welcome modal */
[data-theme="dark"] .welcome-title {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="dark"] .welcome-message {
    color: var(--text-light);
    opacity: 0.9;
}


.welcome-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.welcome-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(46, 90, 165, 0.08), rgba(46, 90, 165, 0.03));
    border-radius: 12px;
    border: 1px solid rgba(46, 90, 165, 0.1);
    transition: all 0.3s ease;
}

.welcome-feature:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(46, 90, 165, 0.15);
}

.welcome-feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.welcome-feature span {
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.3s ease;
}

/* Dark mode for welcome features */
[data-theme="dark"] .welcome-feature {
    background: linear-gradient(135deg, rgba(46, 90, 165, 0.2), rgba(46, 90, 165, 0.1));
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .welcome-feature:hover {
    box-shadow: var(--shadow-hover);
}

[data-theme="dark"] .welcome-feature i {
    color: var(--primary-color);
}

[data-theme="dark"] .welcome-feature span {
    color: var(--text-dark);
}


.welcome-footer {
    padding: 1rem 2rem 2rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(46, 90, 165, 0.1);
    background: linear-gradient(135deg, rgba(46, 90, 165, 0.02), rgba(46, 90, 165, 0.01));
    border-radius: 0 0 18px 18px;
}

.welcome-explore {
    margin-bottom: 1.5rem;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(46, 90, 165, 0.3);
    position: relative;
    overflow: hidden;
}

.welcome-explore:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 90, 165, 0.4);
}

.welcome-explore:active {
    transform: translateY(0);
}

.welcome-explore i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.welcome-explore:hover i {
    transform: translateX(3px);
}

.welcome-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
}

.welcome-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.welcome-checkbox label {
    cursor: pointer;
    user-select: none;
}

/* Announcement Badge */
.announcement-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--secondary-color), #ff4757);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(232, 49, 46, 0.3);
    animation: pulse 2s infinite;
}

.announcement-badge i {
    font-size: 1rem;
}

/* Announcement Highlights */
.announcement-highlights {
    background: linear-gradient(135deg, rgba(46, 90, 165, 0.05), rgba(46, 90, 165, 0.02));
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    border: 1px solid rgba(46, 90, 165, 0.1);
}

.announcement-highlights h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.announcement-highlights h3::before {
    content: "🎯";
    font-size: 1.2rem;
}

.announcement-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.announcement-highlights li {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.announcement-highlights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1rem;
}

/* Dark mode for welcome modal footer */
[data-theme="dark"] .welcome-footer {
    border-top: 1px solid var(--border-color);
}

[data-theme="dark"] .welcome-checkbox label {
    color: var(--text-dark);
}

/* Dark mode for announcement elements */
[data-theme="dark"] .announcement-highlights {
    background: linear-gradient(135deg, rgba(46, 90, 165, 0.1), rgba(46, 90, 165, 0.05));
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .announcement-highlights h3 {
    color: var(--primary-color);
}

[data-theme="dark"] .announcement-highlights li {
    color: var(--text-light);
}

[data-theme="dark"] .announcement-highlights li::before {
    color: var(--primary-color);
}


/* Welcome Modal Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInScale {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Responsive Design for Welcome Modal */
@media (max-width: 768px) {
    .welcome-modal-content {
        width: 95%;
        max-width: none;
        margin: 1rem;
    }
    
    .welcome-header {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }
    
    .welcome-logo img {
        max-width: 120px;
    }
    
    .welcome-body {
        padding: 1.5rem;
    }
    
    .welcome-title {
        font-size: 1.6rem;
    }
    
    .welcome-message {
        font-size: 1rem;
    }
    
    .welcome-features {
        gap: 0.8rem;
    }
    
    .welcome-feature {
        padding: 0.8rem;
    }
    
    .welcome-footer {
        padding: 1rem 1.5rem 1.5rem 1.5rem;
    }
    
    .welcome-explore {
        padding: 10px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .welcome-modal-content {
        width: 98%;
        margin: 0.5rem;
    }
    
    .welcome-header {
        padding: 1rem;
    }
    
    .welcome-logo img {
        max-width: 100px;
    }
    
    .welcome-body {
        padding: 1rem;
    }
    
    .welcome-title {
        font-size: 1.4rem;
    }
    
    .welcome-features {
        gap: 0.6rem;
    }
    
    .welcome-feature {
        padding: 0.6rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .welcome-feature i {
        font-size: 1.2rem;
    }
    
    .welcome-footer {
        padding: 1rem;
    }
}

/* Focus Styles for Better Accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Improved Touch Targets */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-link {
        padding: 10px 15px;
    }
    
    .floating-icon {
        width: 60px;
        height: 60px;
    }
}
/* Mission & Vision Section */
.mission-vision {
    background: var(--light-gray);
}

.mission-vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.mission-card,
.vision-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before,
.vision-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 90, 165, 0.1), transparent);
    transition: left 0.5s ease;
}

.mission-card:hover::before,
.vision-card:hover::before {
    left: 100%;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.mission-icon,
.vision-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.mission-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.vision-icon {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.mission-card:hover .mission-icon,
.vision-card:hover .vision-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.mission-card h3,
.vision-card h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.mission-card p,
.vision-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.mission-points,
.vision-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mission-point,
.vision-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mission-point:hover,
.vision-point:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(10px);
}

.mission-point i,
.vision-point i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.mission-point:hover i {
    color: var(--white);
}

.vision-point i {
    color: var(--secondary-color);
}

.vision-point:hover i {
    color: var(--white);
}

.mission-point span,
.vision-point span {
    font-weight: 500;
    font-size: 1rem;
}

/* Values Section */
.values-section {
    text-align: center;
}

.values-section h3 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.value-item {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.value-item h4 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive Design for Mission & Vision */
@media (max-width: 992px) {
    .mission-vision-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-card,
    .vision-card {
        padding: 2.5rem 2rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mission-card,
    .vision-card {
        padding: 2rem 1.5rem;
    }
    
    .mission-card h3,
    .vision-card h3 {
        font-size: 1.8rem;
    }
    
    .mission-icon,
    .vision-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .values-section h3 {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .value-item {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .mission-vision-content {
        gap: 1.5rem;
    }
    
    .mission-card,
    .vision-card {
        padding: 1.5rem;
    }
    
    .mission-points,
    .vision-points {
        gap: 0.8rem;
    }
    
    .mission-point,
    .vision-point {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    .value-item {
        padding: 1.5rem;
    }
}

/* Detail Page Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 70px 0 10px;
    text-align: center;
}

.header-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.header-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    opacity: 0.6;
}

/* Company Story */
.company-story {
    padding: 100px 0;
    background: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr ;
    gap: .5rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.story-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.story-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlight-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 90, 165, 0.1), transparent);
    transition: left 0.5s ease;
}

.highlight-item:hover::before {
    left: 100%;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.highlight-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

.story-image {
    position: relative;
}

.story-image .image-container {
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.story-image .image-placeholder {
    font-size: 4rem;
    color: var(--white);
    animation: pulse 2s ease-in-out infinite;
}

/* Company Values */
.company-values {
    padding: 100px 0;
    background: var(--light-gray);
}

.value-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 90, 165, 0.1), transparent);
    transition: left 0.5s ease;
}

.value-card:hover::before {
    left: 100%;
}

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

.value-card .value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.value-card h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.value-card ul {
    list-style: none;
    text-align: left;
}

.value-card ul li {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.value-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Technology & Innovation */
.technology-innovation {
    padding: 100px 0;
    background: var(--white);
}

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

.tech-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.tech-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tech-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.tech-feature:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 1rem;
}

.tech-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.stat-card .stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Leadership Team */
.leadership-team {
    padding: 100px 0;
    background: var(--light-gray);
}

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

.team-member {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 90, 165, 0.1), transparent);
    transition: left 0.5s ease;
}

.team-member:hover::before {
    left: 100%;
}

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

.member-photo {
    margin-bottom: 2rem;
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 3rem;
    color: var(--white);
}

.member-info h4 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.position {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.bio {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Certifications */
.certifications {
    padding: 100px 0;
    background: var(--white);
}

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

.cert-item {
    background: var(--light-gray);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cert-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 90, 165, 0.1), transparent);
    transition: left 0.5s ease;
}

.cert-item:hover::before {
    left: 100%;
}

.cert-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    background: var(--white);
}

.cert-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.cert-item:hover .cert-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.cert-item h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.cert-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Back to Home */
.back-to-home {
    padding: 60px 0;
    background: var(--light-gray);
}

.back-content {
    text-align: center;
}

.back-content .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Responsive Design for Detail Pages */
@media (max-width: 992px) {
    .story-content,
    .tech-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tech-stats {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
    }

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

@media (max-width: 768px) {
    .page-header {
        padding: 68px 0 6px;
    }
    .news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(226px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    }
    
    .header-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0rem;
    }

    .header-content p {
    font-size: 1.2rem;
    margin-bottom: 0rem;
    opacity: 0.9;
    }
    
    .header-content h1 {
        font-size: 2.5rem;
    }
    
    .story-text h2,
    .tech-text h2 {
        font-size: 2rem;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .tech-feature {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .team-grid,
    .cert-grid {
        grid-template-columns: 1fr;
    }
    
    .value-card,
    .team-member,
    .cert-item {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .header-content h1 {
        font-size: 2rem;
    }
    
    .header-content p {
        font-size: 1rem;
    }
    
    .story-text h2,
    .tech-text h2 {
        font-size: 1.8rem;
    }
    
    .highlight-item,
    .tech-feature {
        padding: 1.5rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-card .stat-number {
        font-size: 2.5rem;
    }
}

/* Mission & Vision Detail Styles */
.mission-detail {
    padding: 100px 0;
    background: var(--white);
}

.mission-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.mission-header .mission-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.mission-header .mission-icon:hover {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.mission-header h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.mission-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

.mission-text {
    margin-bottom: 4rem;
}

.mission-text p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.mission-objectives h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
}

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

.objective-item {
    background: var(--light-gray);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.objective-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    background: var(--white);
}

.objective-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.objective-item:hover .objective-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.objective-item h4 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.objective-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

/* Vision Detail */
.vision-detail {
    padding: 100px 0;
    background: var(--light-gray);
}

.vision-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.vision-header .vision-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.vision-header .vision-icon:hover {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.vision-header h2 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.vision-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

.vision-text {
    margin-bottom: 4rem;
}

.vision-text p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.vision-roadmap h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
}

.roadmap-timeline {
    position: relative;
    padding-left: 2rem;
}

.roadmap-timeline::before {
    content: "";
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 3rem;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -0.5rem;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--primary-color);
}

.timeline-year {
    position: absolute;
    left: -4rem;
    top: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.timeline-content h4 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Values Detail */
.values-detail {
    padding: 100px 0;
    background: var(--white);
}

.values-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.value-detail-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.value-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    background: var(--white);
}

.value-detail-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.value-detail-card:hover .value-detail-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.value-detail-content h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.value-detail-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.value-principles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.principle {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: var(--white);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.principle:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(10px);
}

.principle i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.principle:hover i {
    color: var(--white);
}

.principle span {
    font-weight: 500;
}

/* Strategic Goals */
.strategic-goals {
    padding: 100px 0;
    background: var(--light-gray);
}

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

.goal-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.goal-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 90, 165, 0.1), transparent);
    transition: left 0.5s ease;
}

.goal-card:hover::before {
    left: 100%;
}

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

.goal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.goal-card:hover .goal-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.goal-card h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.goal-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.goal-metrics {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.metric {
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Responsive Design for Mission & Vision Detail */
@media (max-width: 992px) {
    .objectives-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .goals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .value-detail-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .timeline-year {
        position: static;
        display: inline-block;
        margin-bottom: 1rem;
    }
    
    .roadmap-timeline {
        padding-left: 0;
    }
    
    .roadmap-timeline::before {
        display: none;
    }
    
    .timeline-item {
        padding-left: 0;
    }
    
    .timeline-item::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .mission-header h2,
    .vision-header h2 {
        font-size: 2.5rem;
    }
    
    .mission-header .mission-icon,
    .vision-header .vision-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .objectives-grid,
    .goals-grid {
        grid-template-columns: 1fr;
    }
    
    .value-detail-card {
        padding: 2rem 1.5rem;
    }
    
    .goal-card {
        padding: 2.5rem 2rem;
    }
    
    .goal-metrics {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .mission-header h2,
    .vision-header h2 {
        font-size: 2rem;
    }
    
    .mission-text p,
    .vision-text p {
        font-size: 1.1rem;
    }
    
    .objective-item,
    .goal-card {
        padding: 2rem 1.5rem;
    }
    
    .value-detail-card {
        padding: 1.5rem;
    }
    
    .value-detail-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .value-detail-content h3 {
        font-size: 1.6rem;
    }
}

/* Products Detail Styles */
.product-categories {
    padding: 100px 0;
    background: var(--white);
}

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

.category-card {
    background: var(--light-gray);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 90, 165, 0.1), transparent);
    transition: left 0.5s ease;
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    background: var(--white);
}

.category-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.category-card h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.category-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.category-features {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.category-features .feature {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Category Accordion */
.categories-accordion {
    max-width: 1200px;
    margin: 0 auto;
}

.category-accordion-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.category-accordion-item:hover {
    box-shadow: var(--shadow-hover);
}

.category-accordion-item.active {
    box-shadow: var(--shadow-hover);
}

.category-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
}

.category-accordion-header:hover {
    background: var(--light-gray);
}

.category-header-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

.category-accordion-header .category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.category-accordion-item.active .category-accordion-header .category-icon {
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.category-info {
    flex: 1;
}

.category-info h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.category-info p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.category-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.feature-tag {
    background: var(--light-gray);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
}

.category-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.category-toggle i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.category-toggle .product-count {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.category-accordion-content {
    display: none;
    padding: 0 2rem 2rem 2rem;
    background: var(--light-gray);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-accordion-content .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.product-card-accordion {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card-accordion:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-card-image {
    width: 100%;
    height: 200px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-image .image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-light);
}

.product-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-content h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-card-content .product-model {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.product-card-content .product-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.product-card-content .btn {
    margin-top: auto;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.no-products {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-light);
}

.no-products i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    opacity: 0.5;
}

.no-products p {
    font-size: 1.1rem;
}

/* Detailed Products */
.detailed-products {
    padding: 100px 0;
    background: var(--light-gray);
}

.product-section {
    margin-bottom: 6rem;
}

.product-section:last-child {
    margin-bottom: 0;
}

.product-section-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.product-section-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.product-section-content h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.product-section-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

.product-models {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.product-model {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.product-model:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.model-image {
    position: relative;
}

.model-image .image-placeholder {
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.product-model:hover .model-image .image-placeholder {
    transform: scale(1.05);
}

.model-info h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.model-description {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.model-specs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.spec {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--light-gray);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.spec i {
    color: var(--primary-color);
}

.model-features h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.model-features ul {
    list-style: none;
    padding: 0;
}

.model-features ul li {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.model-features ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Technology Features */
.technology-features {
    padding: 100px 0;
    background: var(--white);
}

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

.tech-feature-card {
    background: var(--light-gray);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.tech-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    background: var(--white);
}

.tech-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.tech-feature-card:hover .tech-feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.tech-feature-card h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.tech-feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

/* Warranty & Support */
.warranty-support {
    padding: 100px 0;
    background: var(--light-gray);
}

.warranty-content {
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.warranty-info h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 700;
}

.warranty-info p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.warranty-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.warranty-feature {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.warranty-feature:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.warranty-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.warranty-text h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.warranty-text p {
    color: var(--text-light);
    margin: 0;
    font-size: 1rem;
}

.support-contact {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
}

.support-contact h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 90, 165, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.contact-item:hover i {
    color: var(--white);
}

.contact-item span {
    font-weight: 500;
}

/* Responsive Design for Products Detail */
@media (max-width: 992px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-section-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .product-model {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .warranty-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .tech-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .categories-grid,
    .tech-features-grid {
        grid-template-columns: 1fr;
    }
    
    .product-section-content h2 {
        font-size: 2rem;
    }
    
    .product-model {
        padding: 2rem 1.5rem;
    }
    
    .model-info h3 {
        font-size: 1.6rem;
    }
    
    .model-specs {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .warranty-info h2 {
        font-size: 2rem;
    }
    
    .warranty-feature {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .support-contact {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .category-card,
    .tech-feature-card {
        padding: 2rem 1.5rem;
    }
    
    .category-accordion-header {
        padding: 1.5rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .category-header-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .category-accordion-header .category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 auto;
    }
    
    .category-info h3 {
        font-size: 1.5rem;
    }
    
    .category-toggle {
        width: 100%;
        justify-content: space-between;
        margin-top: 0.5rem;
    }
    
    .category-accordion-content {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .category-accordion-content .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-section-header {
        padding: 1.5rem;
    }
    
    .product-section-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .product-section-content h2 {
        font-size: 1.8rem;
    }
    
    .product-model {
        padding: 1.5rem;
    }
    
    .model-image .image-placeholder {
        height: 200px;
        font-size: 3rem;
    }
    
    .model-info h3 {
        font-size: 1.4rem;
    }
    
    .warranty-info h2 {
        font-size: 1.8rem;
    }
    
    .warranty-feature {
        padding: 1rem;
    }
    
    .warranty-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Services Detail Styles */
.service-overview {
    padding: 100px 0;
    background: var(--white);
}

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

.overview-text p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 3rem;
}

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

.service-stats .stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.service-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.service-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-stats .stat-label {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
}

.overview-image .image-container {
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.overview-image .image-placeholder {
    font-size: 4rem;
    color: var(--white);
    animation: pulse 2s ease-in-out infinite;
}

/* Detailed Services */
.detailed-services {
    padding: 100px 0;
    background: var(--light-gray);
}

.service-section {
    margin-bottom: 6rem;
}

.service-section:last-child {
    margin-bottom: 0;
}

.service-section-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.service-section-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.service-section-content h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-section-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.service-detail-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-detail-card:hover .service-detail-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.service-detail-content h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-detail-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-features .feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-features .feature:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(10px);
}

.service-features .feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.service-features .feature:hover i {
    color: var(--white);
}

.service-features .feature span {
    font-weight: 500;
}

/* Service Process */
.service-process {
    padding: 100px 0;
    background: var(--white);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.process-step {
    background: var(--light-gray);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    background: var(--white);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
}

.step-content h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

/* Service Contact */
.service-contact {
    padding: 100px 0;
    background: var(--light-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-info p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

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

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.method-info h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.method-info p {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.method-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact-form {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 90, 165, 0.1);
}

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

.contact-form .form-group select {
    cursor: pointer;
}

/* Responsive Design for Services Detail */
@media (max-width: 992px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .service-section-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .service-detail-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-section-content h2 {
        font-size: 2rem;
    }
    
    .service-detail-card {
        padding: 2rem 1.5rem;
    }
    
    .service-detail-content h3 {
        font-size: 1.6rem;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .service-section-header {
        padding: 1.5rem;
    }
    
    .service-section-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .service-section-content h2 {
        font-size: 1.8rem;
    }
    
    .service-detail-card {
        padding: 1.5rem;
    }
    
    .service-detail-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-detail-content h3 {
        font-size: 1.4rem;
    }
    
    .process-step {
        padding: 2rem 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
    }
    
    .contact-info h2 {
        font-size: 1.8rem;
    }
    
    .contact-method {
        padding: 1rem;
    }
    
    .method-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* References Detail Styles */
.references-overview {
    padding: 100px 0;
    background: var(--white);
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat-card {
    background: var(--light-gray);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    background: var(--white);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.stat-content {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
    font-size: 1.1rem;
}

/* Featured References */
.featured-references {
    padding: 100px 0;
    background: var(--light-gray);
}

.featured-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 4rem;
}

.featured-reference {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.featured-reference:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.reference-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--light-gray);
}

.reference-logo {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.featured-reference:hover .reference-logo {
    transform: scale(1.1) rotate(5deg);
}

.reference-info h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.reference-type {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.reference-location {
    color: var(--text-light);
    font-size: 1rem;
}

.reference-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.reference-achievements h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.reference-achievements ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.reference-achievements ul li {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.reference-achievements ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.reference-quote {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.reference-quote blockquote {
    font-style: italic;
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    margin: 0;
}

.reference-quote cite {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

/* All References */
.all-references {
    padding: 100px 0;
    background: var(--white);
}

.references-categories {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 4rem;
}

.category-section {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 20px;
}

.category-title {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-title i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.references-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.reference-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.reference-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.reference-logo-small {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.reference-details h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.reference-details p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}
.partnership-duration {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.2rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Success Stories */
.success-stories {
    padding: 100px 0;
    background: var(--light-gray);
}

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

.story-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.story-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-image .image-placeholder {
    font-size: 3rem;
    color: var(--white);
}

.story-content {
    padding: 2.5rem;
}

.story-content h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.story-client {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.story-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.story-metrics {
    display: flex;
    gap: 2rem;
}

.story-metrics .metric {
    text-align: center;
}

.story-metrics .metric-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.story-metrics .metric-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Partnership Benefits */
.partnership-benefits {
    padding: 100px 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.benefit-card {
    background: var(--light-gray);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 90, 165, 0.1), transparent);
    transition: left 0.5s ease;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    background: var(--white);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.benefit-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

/* Become a Partner */
.become-partner {
    padding: 100px 0;
    background: var(--light-gray);
}

.partner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.partner-info h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 700;
}

.partner-info p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.partner-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.partner-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.partner-feature:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.partner-feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.partner-feature span {
    font-weight: 500;
    color: var(--text-dark);
}

.partner-form {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.partner-form h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.partner-form .form-group input,
.partner-form .form-group select,
.partner-form .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.partner-form .form-group input:focus,
.partner-form .form-group select:focus,
.partner-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 90, 165, 0.1);
}

.partner-form .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.partner-form .form-group select {
    cursor: pointer;
}

/* Responsive Design for References Detail */
@media (max-width: 992px) {
    .overview-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .stat-content {
        text-align: center;
    }
    
    .reference-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .references-list {
        grid-template-columns: 1fr;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partner-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .overview-stats {
        grid-template-columns: 1fr;
    }
    
    .featured-reference {
        padding: 2rem 1.5rem;
    }
    
    .reference-info h3 {
        font-size: 1.6rem;
    }
    
    .category-section {
        padding: 2rem 1.5rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .reference-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .story-metrics {
        flex-direction: column;
        gap: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-info h2 {
        font-size: 2rem;
    }
    
    .partner-feature {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .partner-form {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .featured-reference {
        padding: 1.5rem;
    }
    
    .reference-logo {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .reference-info h3 {
        font-size: 1.4rem;
    }
    
    .category-section {
        padding: 1.5rem;
    }
    
    .category-title {
        font-size: 1.3rem;
    }
    
    .reference-item {
        padding: 1.5rem;
    }
    
    .reference-logo-small {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .story-content {
        padding: 2rem 1.5rem;
    }
    
    .story-content h3 {
        font-size: 1.4rem;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .benefit-card h3 {
        font-size: 1.3rem;
    }
    
    .partner-info h2 {
        font-size: 1.8rem;
    }
    
    .partner-form {
        padding: 1.5rem;
    }
}

/* News Detail Page Styles */
.news-detail-content {
    padding: 4rem 0;
    background: var(--light-gray);
}

.news-detail-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.news-detail-article {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.news-detail-header {
    padding: 2.5rem 2.5rem 1.5rem 2.5rem;
    border-bottom: 1px solid var(--border-color);
}

.news-detail-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.news-date {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.news-category {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.news-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.news-detail-excerpt {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
    font-style: italic;
}

.news-detail-image {
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.news-detail-image .image-placeholder {
    font-size: 4rem;
    color: var(--white);
    opacity: 0.8;
}

.news-detail-body {
    padding: 2.5rem;
}

.news-content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.news-content-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 2rem 0 1rem 0;
}

.news-content-text ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.news-content-text li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.news-content-text blockquote {
    background: linear-gradient(135deg, rgba(46, 90, 165, 0.05), rgba(46, 90, 165, 0.02));
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    position: relative;
}

.news-content-text blockquote cite {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
}

.news-detail-footer {
    padding: 2rem 2.5rem;
    border-top: 1px solid var(--border-color);
    background: var(--light-gray);
}

.news-tags {
    margin-bottom: 2rem;
}

.news-tags .tag {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.news-tags .tag:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.news-share h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.share-btn.facebook { background: #3b5998; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.whatsapp { background: #25d366; }

.share-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* News Sidebar */
.news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 2rem;
}

.sidebar-widget h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.related-news {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-news-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.related-news-item:hover {
    background: var(--light-gray);
    transform: translateX(5px);
}

.related-news-image {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.related-news-content h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
}

.related-news-content h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-news-content h4 a:hover {
    color: var(--primary-color);
}

.related-news-date {
    font-size: 0.9rem;
    color: var(--text-light);
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 0.5rem;
}

.category-list a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.category-list a:hover {
    color: var(--primary-color);
    padding-left: 1rem;
}

/* Dark mode for news detail */
[data-theme="dark"] .news-detail-content {
    background: #1a1a1a;
}

[data-theme="dark"] .news-detail-article {
    background: #2d2d2d;
    border: 1px solid rgba(46, 90, 165, 0.2);
}

[data-theme="dark"] .news-detail-header {
    border-bottom: 1px solid rgba(46, 90, 165, 0.2);
}

[data-theme="dark"] .news-detail-title {
    color: #e0e0e0;
}

[data-theme="dark"] .news-detail-excerpt {
    color: #b0b0b0;
}

[data-theme="dark"] .news-content-text {
    color: #e0e0e0;
}

[data-theme="dark"] .news-content-text h3 {
    color: #4a9eff;
}

[data-theme="dark"] .news-content-text li {
    color: #b0b0b0;
}

[data-theme="dark"] .news-content-text blockquote {
    background: linear-gradient(135deg, rgba(46, 90, 165, 0.1), rgba(46, 90, 165, 0.05));
    border-left: 4px solid #4a9eff;
}

[data-theme="dark"] .news-content-text blockquote cite {
    color: #4a9eff;
}

[data-theme="dark"] .news-detail-footer {
    background: #1a1a1a;
    border-top: 1px solid rgba(46, 90, 165, 0.2);
}

[data-theme="dark"] .news-share h4 {
    color: #e0e0e0;
}

[data-theme="dark"] .sidebar-widget {
    background: #2d2d2d;
    border: 1px solid rgba(46, 90, 165, 0.2);
}

[data-theme="dark"] .sidebar-widget h3 {
    color: #e0e0e0;
}

[data-theme="dark"] .related-news-item {
    border: 1px solid rgba(46, 90, 165, 0.2);
}

[data-theme="dark"] .related-news-item:hover {
    background: #1a1a1a;
}

[data-theme="dark"] .related-news-content h4 a {
    color: #e0e0e0;
}

[data-theme="dark"] .related-news-content h4 a:hover {
    color: #4a9eff;
}

[data-theme="dark"] .related-news-date {
    color: #b0b0b0;
}

[data-theme="dark"] .category-list a {
    color: #b0b0b0;
    border-bottom: 1px solid rgba(46, 90, 165, 0.2);
}

[data-theme="dark"] .category-list a:hover {
    color: #4a9eff;
}

/* Responsive Design for News Detail */
@media (max-width: 768px) {
    .news-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .news-detail-title {
        font-size: 2rem;
    }
    
    .news-detail-header,
    .news-detail-body,
    .news-detail-footer {
        padding: 1.5rem;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
    
    .share-buttons {
        justify-content: center;
    }
}

/* Pop-up Edit Styles */
.toggle-switch {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.toggle-input {
    display: none;
}

.toggle-label {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    user-select: none;
}

.toggle-slider {
    position: relative;
    width: 60px;
    height: 30px;
    background: #ccc;
    border-radius: 30px;
    transition: background 0.3s;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    top: 3px;
    left: 3px;
    transition: transform 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-input:checked + .toggle-label .toggle-slider {
    background: #28a745;
}

.toggle-input:checked + .toggle-label .toggle-slider::before {
    transform: translateX(30px);
}

.toggle-text {
    font-size: 16px;
    font-weight: 500;
    color: #2c3e50;
}

.popup-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.popup-feature-item {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
}

.popup-feature-item h4 {
    margin: 0 0 15px 0;
    color: #2c3e50;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlights-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 10px 15px;
    transition: all 0.3s;
}

.highlight-item:hover {
    border-color: #007bff;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.1);
}

.highlight-item .drag-handle {
    cursor: grab;
    color: #6c757d;
    font-size: 18px;
}

.highlight-item .drag-handle:active {
    cursor: grabbing;
}

.highlight-item input {
    flex: 1;
    border: none;
    outline: none;
    padding: 5px;
    font-size: 14px;
}

.highlight-item .remove-highlight {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    font-size: 20px;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.2s;
}

.highlight-item .remove-highlight:hover {
    background: rgba(220, 53, 69, 0.1);
}

.form-help {
    font-size: 12px;
    color: #6c757d;
    margin-top: 5px;
    font-style: italic;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-check-input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-check-label {
    cursor: pointer;
    user-select: none;
    font-size: 14px;
}

/* Pop-up Preview Modal */
.popup-preview-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.popup-preview-overlay.show {
    display: flex;
}

.popup-preview-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    color: #2c3e50;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.popup-preview-close:hover {
    transform: rotate(90deg);
    background: #dc3545;
    color: white;
}
/* ===== PROJECT PROCESS SECTION ===== */
.project-process {
    padding: var(--spacing-4xl) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

    .project-process::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 50%, rgba(46, 90, 165, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(60, 170, 228, 0.03) 0%, transparent 50%);
        pointer-events: none;
    }

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

    .process-timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 3px;
        background: var(--gradient-primary);
        transform: translateX(-50%);
        box-shadow: 0 0 10px rgba(46, 90, 165, 0.3);
    }

    .process-timeline .timeline-item {
        position: relative;
        margin-bottom: 70px;
        display: flex;
        align-items: flex-start;
        gap: 50px;
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

        .process-timeline .timeline-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .process-timeline .timeline-item:nth-child(odd) {
            flex-direction: row;
        }

            .process-timeline .timeline-item:nth-child(odd) .timeline-content {
                text-align: left;
                transform-origin: left center;
            }

        .process-timeline .timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }

            .process-timeline .timeline-item:nth-child(even) .timeline-content {
                text-align: right;
                transform-origin: right center;
            }

    .process-timeline .timeline-icon {
        width: 90px;
        height: 90px;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        border: 5px solid var(--primary-color);
        border-radius: var(--radius-full);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: var(--primary-color);
        position: relative;
        z-index: 3;
        flex-shrink: 0;
        box-shadow: 0 5px 20px rgba(46, 90, 165, 0.25), 0 0 0 10px rgba(46, 90, 165, 0.05);
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .process-timeline .timeline-content {
        background: #ffffff;
        padding: 30px 35px;
        border-radius: var(--radius-xl);
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08), 0 2px 10px rgba(46, 90, 165, 0.05);
        flex: 1;
        max-width: 380px;
        border-left: 4px solid var(--primary-color);
        position: relative;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

        .process-timeline .timeline-content:hover {
            box-shadow: 0 10px 40px rgba(46, 90, 165, 0.15), 0 5px 20px rgba(0, 0, 0, 0.1);
            transform: translateY(-8px) scale(1.02);
            border-left-color: var(--accent-color);
        }

/* Responsive Design for Project Process */
@media (max-width: 768px) {
    .process-timeline {
        padding: 20px 10px;
        max-width: 100%;
    }

        .process-timeline::before {
            left: 45px;
        }

        .process-timeline .timeline-item,
        .process-timeline .timeline-item:nth-child(even),
        .process-timeline .timeline-item:nth-child(odd) {
            flex-direction: row !important;
            gap: 25px;
            margin-bottom: 50px;
        }

        .process-timeline .timeline-content {
            max-width: 100%;
            padding: 25px 20px;
        }

    .project-process {
        padding: var(--spacing-xl) 0;
    }
}

/* Content Styles */
.policy-content,
.disclosure-content,
.consent-form-content,
.production-content,
.sustainability-content,
.news-content,
.documents-content {
    padding: 80px 0;
}

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

.content-text h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 600;
}

.content-text h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.content-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-text ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.content-text li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.content-image {
    position: relative;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
    margin-bottom: 2rem;
}

.for-height{
    height: 400px;
}

.image-placeholder p {
    font-size: 1.2rem;
    margin-top: 1rem;
    text-align: center;
}

/* Policy Content */
.policy-content .content-text {
    max-width: 800px;
    margin: 0 auto;
}

/* Minerals Grid */
.minerals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.mineral-item {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mineral-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 90, 165, 0.1), transparent);
    transition: left 0.5s ease;
}

.mineral-item:hover::before {
    left: 100%;
}

.mineral-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    background: var(--white);
}

.mineral-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.mineral-item:hover .mineral-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.mineral-item h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.mineral-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Principles Grid */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.principle-item {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.principle-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 90, 165, 0.1), transparent);
    transition: left 0.5s ease;
}

.principle-item:hover::before {
    left: 100%;
}

.principle-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    background: var(--white);
}

.principle-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.principle-item:hover .principle-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.principle-item h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.principle-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 90, 165, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-item:hover::before {
    left: 100%;
}

.policy-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    text-align: center;
}

.policy-footer p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

/* Mobile Responsive for Policy Pages */
@media (max-width: 768px) {
    .content-text h2 {
        font-size: 2rem;
    }

    .content-text h3 {
        font-size: 1.5rem;
    }

    .minerals-grid {
        grid-template-columns: 1fr;
    }

    .principles-grid {
        grid-template-columns: 1fr;
    }
}

/* References Page Styles */
.references-logos-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    min-height: 60vh;
}

.references-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-top: 0;
    padding: 2rem 0;
}

.reference-logo-item {
    background: white;
    padding: 2rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 120px;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.reference-logo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.reference-logo-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(46, 90, 165, 0.12);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fb 100%);
}

.reference-logo-item:hover::before {
    opacity: 0.04;
}

.reference-logo-item img {
    max-width: 90%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(80%) brightness(0.8) contrast(0.9);
    opacity: 0.85;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.reference-logo-item:hover img {
    filter: grayscale(0%) brightness(1) contrast(1);
    opacity: 1;
    transform: scale(1.08);
}

/* Tablet Responsive */
@media (max-width: 992px) {
    .references-logos-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 2rem;
    }
    
    .reference-logo-item {
        padding: 2rem;
        min-height: 120px;
    }
    
    .reference-logo-item img {
        max-height: 60px;
        max-width: 85%;
    }
    
    .reference-logo-item {
        min-height: 110px;
        padding: 1.75rem 2rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .references-logos-section {
        padding: 3rem 0;
    }
    
    .references-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        padding: 1rem 0;
    }
    
    .reference-logo-item {
        padding: 1.5rem;
        min-height: 100px;
        border-radius: 12px;
    }
    
    .reference-logo-item img {
        max-height: 45px;
        max-width: 85%;
    }
    
    .reference-logo-item {
        min-height: 90px;
        padding: 1.25rem 1.5rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .references-logos-grid {
        gap: 1rem;
    }
    
    .reference-logo-item {
        padding: 1.25rem;
        min-height: 90px;
    }
    
    .reference-logo-item img {
        max-height: 35px;
        max-width: 90%;
    }
    
    .reference-logo-item {
        min-height: 80px;
        padding: 1rem 1.25rem;
    }
}
.references-logos-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    min-height: 60vh;
}

.references-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-top: 0;
    padding: 2rem 0;
}

.reference-logo-item {
    background: white;
    padding: 2rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 120px;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

    .reference-logo-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 0;
    }

    .reference-logo-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 35px rgba(46, 90, 165, 0.12);
        border-color: var(--primary-color);
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fb 100%);
    }

        .reference-logo-item:hover::before {
            opacity: 0.04;
        }

    .reference-logo-item img {
        max-width: 90%;
        max-height: 70px;
        width: auto;
        height: auto;
        object-fit: contain;
        filter: grayscale(80%) brightness(0.8) contrast(0.9);
        opacity: 0.85;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        z-index: 1;
    }

    .reference-logo-item:hover img {
        filter: grayscale(0%) brightness(1) contrast(1);
        opacity: 1;
        transform: scale(1.08);
    }

/* Tablet Responsive */
@media (max-width: 992px) {
    .references-logos-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 2rem;
    }

    .reference-logo-item {
        padding: 2rem;
        min-height: 120px;
    }

        .reference-logo-item img {
            max-height: 60px;
            max-width: 85%;
        }

    .reference-logo-item {
        min-height: 110px;
        padding: 1.75rem 2rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .references-logos-section {
        padding: 3rem 0;
    }

    .references-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        padding: 1rem 0;
    }

    .reference-logo-item {
        padding: 1.5rem;
        min-height: 100px;
        border-radius: 12px;
    }

        .reference-logo-item img {
            max-height: 45px;
            max-width: 85%;
        }

    .reference-logo-item {
        min-height: 90px;
        padding: 1.25rem 1.5rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .references-logos-grid {
        gap: 1rem;
    }

    .reference-logo-item {
        padding: 1.25rem;
        min-height: 90px;
    }

        .reference-logo-item img {
            max-height: 35px;
            max-width: 90%;
        }

    .reference-logo-item {
        min-height: 80px;
        padding: 1rem 1.25rem;
    }
}