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

:root {
    --primary-color: #0a5ba5;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 80px;
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.hide {
    opacity: 0;
    visibility: hidden;
}

.loading-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-logo {
    width: 150px;
    height: auto;
    z-index: 2;
}

.loading-spinner {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

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

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

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

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.nav-menu > li > a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 5px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu > li > a:hover {
    color: #083d6f;
}

.nav-menu > li > a i {
    font-size: 10px;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    list-style: none;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    border-radius: 5px;
    overflow: visible;
    z-index: 1000;
    pointer-events: none;
}

.dropdown:hover > .dropdown-menu,
.dropdown-menu:hover,
.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.dropdown-menu li {
    position: relative;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-menu li a:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Second Level Dropdown */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > a {
    position: relative;
}

.dropdown-submenu > a::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 0;
    width: 20px;
    height: 100%;
}

.dropdown-menu-level2 {
    position: absolute;
    top: 0;
    left: 100%;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    list-style: none;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    border-radius: 5px;
    overflow: hidden;
    z-index: 1001;
    pointer-events: none;
    margin-left: 0;
}

.dropdown-submenu:hover > .dropdown-menu-level2,
.dropdown-menu-level2:hover,
.dropdown-menu-level2.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.dropdown-menu-level2 li a {
    padding: 12px 20px;
    color: var(--text-dark);
    font-size: 14px;
}

.dropdown-menu-level2 li a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.dropdown-submenu > a i {
    font-size: 10px;
    margin-left: auto;
    transition: transform 0.3s ease;
}

.dropdown-submenu:hover > a i {
    transform: translateX(3px);
}

/* Slider */
.slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

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

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
    width: 80%;
}

.slide-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 24px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    border: none;
    color: var(--white);
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 3;
}

.slider-btn:hover {
    background: rgba(255,255,255,0.5);
}

.slider-btn.prev {
    left: 30px;
}

.slider-btn.next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--white);
    width: 40px;
    border-radius: 10px;
}

/* Content Sections */
.section-padding {
    padding: 100px 0;
}

.content-row {
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Sol tarafta görsel, sağ tarafta metin */
.content-row.left-image {
    flex-direction: row;
}

/* Sağ tarafta görsel, sol tarafta metin */
.content-row.right-image {
    flex-direction: row-reverse;
}

.content-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.content-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, var(--primary-color), #0d7ad9);
    z-index: -1;
    border-radius: 15px;
    opacity: 0;
    transition: var(--transition);
}

.content-image:hover::before {
    opacity: 0.3;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
}

.content-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    border-radius: 15px;
    transition: transform 0.5s ease;
}

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

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.content-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
}

.content-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    margin-top: 20px;
}

.btn-primary:hover {
    background: #083d6f;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(10,91,165,0.3);
}

/* Section Background Colors */
.about-section {
    background: var(--white);
}

.construction-section {
    background: var(--bg-light);
}

.food-section {
    background: var(--white);
}

.industry-section {
    background: var(--bg-light);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(10, 91, 165, 0.7) 0%, rgba(13, 122, 217, 0.7) 100%),
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=80') center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0 80px;
    text-align: center;
    margin-top: 0;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: var(--white);
    font-size: 42px;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.5);
    letter-spacing: 1px;
}

/* Page Specific Headers */
.page-header.yonetim-kurulu {
    background-image: linear-gradient(135deg, rgba(10, 91, 165, 0.7) 0%, rgba(13, 122, 217, 0.7) 100%),
                      url('https://images.unsplash.com/photo-1557804506-669a67965ba0?w=1920&q=80');
}

.page-header.hakkimizda {
    background-image: linear-gradient(135deg, rgba(10, 91, 165, 0.7) 0%, rgba(13, 122, 217, 0.7) 100%),
                      url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1920&q=80');
}

.page-header.insaat {
    background-image: linear-gradient(135deg, rgba(10, 91, 165, 0.7) 0%, rgba(13, 122, 217, 0.7) 100%),
                      url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1920&q=80');
}

.page-header.tamamlanan-projeler {
    background-image: linear-gradient(135deg, rgba(10, 91, 165, 0.7) 0%, rgba(13, 122, 217, 0.7) 100%),
                      url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?w=1920&q=80');
}

.page-header.devam-eden-projeler {
    background-image: linear-gradient(135deg, rgba(10, 91, 165, 0.7) 0%, rgba(13, 122, 217, 0.7) 100%),
                      url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=1920&q=80');
}

.page-header.gida {
    background-image: linear-gradient(135deg, rgba(10, 91, 165, 0.7) 0%, rgba(13, 122, 217, 0.7) 100%),
                      url('https://images.unsplash.com/photo-1542838132-92c53300491e?w=1920&q=80');
}

.page-header.subelerimiz {
    background-image: linear-gradient(135deg, rgba(10, 91, 165, 0.7) 0%, rgba(13, 122, 217, 0.7) 100%),
                      url('https://images.unsplash.com/photo-1578916171728-46686eac8d58?w=1920&q=80');
}

.page-header.distributorluklerimiz {
    background-image: linear-gradient(135deg, rgba(10, 91, 165, 0.7) 0%, rgba(13, 122, 217, 0.7) 100%),
                      url('https://images.unsplash.com/photo-1566576912321-d58ddd7a6088?w=1920&q=80');
}

.page-header.anlasmali-markalar {
    background-image: linear-gradient(135deg, rgba(10, 91, 165, 0.7) 0%, rgba(13, 122, 217, 0.7) 100%),
                      url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?w=1920&q=80');
}

.page-header.sanayi {
    background-image: linear-gradient(135deg, rgba(10, 91, 165, 0.7) 0%, rgba(13, 122, 217, 0.7) 100%),
                      url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?w=1920&q=80');
}

.page-header.kentsel-donusum {
    background-image: linear-gradient(135deg, rgba(10, 91, 165, 0.7) 0%, rgba(13, 122, 217, 0.7) 100%),
                      url('https://images.unsplash.com/photo-1487958449943-2429e8be8625?w=1920&q=80');
}

.page-header.basin {
    background-image: linear-gradient(135deg, rgba(10, 91, 165, 0.7) 0%, rgba(13, 122, 217, 0.7) 100%),
                      url('https://images.unsplash.com/photo-1504711434969-e33886168f5c?w=1920&q=80');
}

.page-header.iletisim {
    background-image: linear-gradient(135deg, rgba(10, 91, 165, 0.7) 0%, rgba(13, 122, 217, 0.7) 100%),
                      url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1920&q=80');
}

/* Page Content */
.page-content {
    min-height: 400px;
    background: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-title p {
    color: var(--text-light);
    font-size: 16px;
    margin-top: 20px;
}

/* About Page */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-content h2 {
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: justify;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.value-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.value-item i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-item h3 {
    color: var(--text-dark);
    font-size: 22px;
    margin-bottom: 15px;
}

.value-item p {
    color: var(--text-light);
    font-size: 15px;
    text-align: center;
}

/* Press Page */
.press-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.press-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    background: var(--white);
}

.press-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 91, 165, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.press-overlay i {
    font-size: 50px;
    color: var(--white);
    transform: scale(0);
    transition: transform 0.4s ease;
}

.press-item:hover .press-overlay {
    opacity: 1;
}

.press-item:hover .press-overlay i {
    transform: scale(1);
}

.press-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.press-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.5s ease;
}

.press-item:hover img {
    transform: scale(1.15);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(255,255,255,0.2);
    animation: zoomIn 0.3s ease;
}

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

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: var(--white);
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10000;
}

.lightbox-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 18px;
    text-align: center;
}

/* Contact Page */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-box {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
}

.contact-info-box h2 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    transition: var(--transition);
}

.info-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 24px;
    color: var(--white);
}

.info-content h3 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 8px;
}

.info-content p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.info-content a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.info-content a:hover {
    color: var(--primary-color);
}

.social-media-links {
    margin-top: 40px;
}

.social-media-links h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    transition: var(--transition);
}

.social-icons a:hover {
    background: #083d6f;
    transform: translateY(-5px);
}

.contact-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
    min-height: 600px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: var(--white);
    padding-top: 80px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 80px;
    width: auto;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.footer-contact h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-contact p {
    color: #999;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    line-height: 1.8;
}

.footer-contact p i {
    color: var(--primary-color);
    font-size: 16px;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 18px;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(10, 91, 165, 0.4);
}

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

.footer-bottom p {
    color: #999;
    font-size: 14px;
}

/* Animation on Scroll */
[data-aos] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos].aos-animate[data-aos="fade-right"],
[data-aos].aos-animate[data-aos="fade-left"] {
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 1400px) {
    .container {
        padding: 0 50px;
    }
}

@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .content-row {
        gap: 50px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    /* Mobile Menu Toggle Visible */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hide desktop menu, show mobile menu */
    .main-nav {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: var(--white);
        transition: left 0.3s ease;
        overflow-y: auto;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 20px;
        width: 100%;
    }
    
    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    
    .nav-menu > li > a {
        padding: 15px 10px;
        width: 100%;
        justify-content: space-between;
        font-size: 16px;
    }
    
    /* Mobile Dropdown */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: #f8f9fa;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 500px;
    }
    
    .dropdown-menu li a {
        padding: 12px 20px;
    }
    
    /* Mobile Second Level */
    .dropdown-menu-level2 {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: #e9ecef;
        margin-left: 0;
    }
    
    .dropdown-submenu.active .dropdown-menu-level2 {
        max-height: 300px;
    }
    
    .dropdown-submenu > a i {
        transition: transform 0.3s ease;
    }
    
    .dropdown-submenu.active > a i {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .logo img {
        height: 50px;
    }
    
    .slider {
        height: 400px;
    }
    
    .slide-content h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .slide-content p {
        font-size: 16px;
    }
    
    .slider-btn {
        padding: 10px 15px;
        font-size: 18px;
    }
    
    .slider-btn.prev {
        left: 10px;
    }
    
    .slider-btn.next {
        right: 10px;
    }
    
    /* Content Sections */
    .section-padding {
        padding: 60px 0;
    }
    
    .content-row {
        flex-direction: column;
        gap: 40px;
    }
    
    .content-image img {
        height: 300px;
    }
    
    .content-text h2 {
        font-size: 28px;
    }
    
    .content-text p {
        font-size: 15px;
    }
    
    /* Page Header */
    .page-header {
        padding: 60px 0 50px;
        background-attachment: scroll;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    /* About Page Responsive */
    .about-values {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .about-content h2 {
        font-size: 28px;
    }
    
    /* Press Page Responsive */
    .press-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .press-item img {
        height: 250px;
    }
    
    /* Contact Page Responsive */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info-box {
        padding: 30px 20px;
    }
    
    .contact-info-box h2 {
        font-size: 24px;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .info-icon {
        margin: 0 auto;
    }
    
    .contact-map {
        min-height: 400px;
    }
    
    /* Footer */
    .footer {
        padding-top: 50px;
    }
    
    .footer-content {
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-logo img {
        height: 60px;
    }
    
    .footer-contact p {
        font-size: 13px;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .slide-content h2 {
        font-size: 24px;
    }
    
    .slide-content p {
        font-size: 14px;
    }
    
    .content-text h2 {
        font-size: 24px;
    }
    
    .btn-primary {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .footer-contact p {
        font-size: 12px;
    }
    
    .about-content h2 {
        font-size: 24px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .section-title p {
        font-size: 14px;
    }
    
    .value-item {
        padding: 30px 15px;
    }
    
    .value-item i {
        font-size: 40px;
    }
    
    .contact-info-box h2 {
        font-size: 20px;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
    }
    
    .info-icon i {
        font-size: 20px;
    }
    
    .press-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .press-item img {
        height: 200px;
    }
}

