/* Base Styles */
:root {
    --primary-color: #3d4542;
    --secondary-color: #e67e22;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --nav-bg: rgba(255, 255, 255, 0.98);
    --nav-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body {
    padding-top: 76px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-color);
    overflow-x: hidden;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 60, 110, 0.3);
    margin: 0;
    padding: 0;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-icon {
    color: white;
    font-size: 24px;
    animation: scrollBounce 2s infinite;
}

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

/* Responsive Video Styles */
@media (max-width: 768px) {
    .hero {
        height: 400px;
    }
    
    .hero-bg {
        height: 400px;
        position: relative;
    }
    
    .video-container {
        position: relative;
        width: 100vw;
        height: 400px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .background-video {
        width: 100%;
        height: 400px;
        object-fit: cover;
    }
}

@media (max-width: 576px) {
    .hero,
    .hero-bg,
    .video-container,
    .background-video {
        height: 300px;
    }
    
    .hero-content {
        padding: 10px;
    }
    
    .hero-scroll {
        bottom: 20px;
    }
}

/* Navigation */
.navbar {
    background-color: var(--nav-bg);
    box-shadow: var(--nav-shadow);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: var(--nav-bg);
}

.navbar-brand {
    font-weight: 600;
    padding: 0;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 60px;
    width: auto;
    max-width: 100%;
}

.brand-text {
    color: var(--primary-color);
    font-size: 1.4rem;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 3px;
}

.brand-text:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), transparent);
}

.navbar-nav {
    gap: 10px;
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px !important;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: 20px;
}

.lang-btn {
    color: #fff;
    outline: 0;
    border: 2px solid currentcolor;
    transition: 0.3s ease all;
    background-color: #3d4542;
    font-size: 11px;
    font-weight: 600;
    padding: 10px 15px;
    display: inline-block;
}

.lang-btn:hover,
.lang-btn.active {
    color: #3d4542;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.lang-divider {
    color: #ccc;
    font-weight: 300;
}




/* Dropdown Menu */
.nav-item {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--nav-bg);
    box-shadow: var(--nav-shadow);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 200px;
    z-index: 1000;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 8px 20px;
    color: var(--dark-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: rgba(0,0,0,0.05);
    color: var(--primary-color);
}

/* Mobile Responsive Dropdown */
@media (max-width: 991px) {
    .dropdown-menu {
        position: static;
        background-color: transparent;
        box-shadow: none;
        border: none;
        padding-left: 20px;
    }

    .dropdown-item {
        padding: 8px 15px;
    }
    .brand-logo {
        height: 60px;
    }
}

/* Responsive Navigation */
@media (max-width: 991px) {
    .navbar-nav {
        padding: 1rem 0;
    }
    
    .nav-link {
        padding: 10px 0 !important;
    }
    
    .language-selector {
        margin: 1rem 0;
        justify-content: center;
    }
}

/* Brand Section */
.brand-container {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.brand-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    width: 300px;
    text-align: center;
}

.brand-card:hover {
    transform: scale(1.05);
}

.brand-image img.equal-image {
    max-width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
}
.urun-image img.equal-image {
    max-width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 10px;
}

/* Premier Section */
.premier {
    padding: 80px 0;
}

.premier h1 {
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 900;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.premier-content {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
    position: relative;
    padding-bottom: 60px;
    max-width: 45%;
}

#premier {
    margin-top: 0;
    padding-top: 60px;
}

.premier-content {
    text-align: center;
    max-width: 45%;
    margin: 0 auto;
}

.premier-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.premier-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* About Section */
.about-content {
    padding-right: 30px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.feature-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.about-image {
    position: relative;
    padding: 20px;
}

.about-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #4CAF50;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    display: block;
    font-size: 1rem;
    margin-top: 5px;
}

/* Why Premier Section */
.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Contact Section */
.contact-info {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.contact-info p {
    font-size: 0.8rem;
}
.contact-info h3, h4 {
    font-size: 0.9rem;
    font-weight: 600;
}
/* Maps Section */
.maps-info {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
/* Responsive Styles */
@media (max-width: 1200px) {
    .premier-content {
        max-width: 60%;
    }
    .brand-card {
        width: 250px;
        padding: 15px;
    }

    .brand-image img.equal-image {
        height: 100px;
    }
    .urun-image img.equal-image {
        height: 280px;
    }
}

@media (max-width: 992px) {
    .premier-content {
        max-width: 70%;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    .urun-image img.equal-image {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .premier-content {
        max-width: 80%;
    }
    
    .feature-card {
        margin-bottom: 30px;
    }
    
    .about-image {
        margin-top: 30px;
    }
    .brand-card {
        width: 200px;
        padding: 10px;
    }

    .brand-image img.equal-image {
        height: 90px;
    }
    .urun-image img.equal-image {
        height: 240px;
    }
}

@media (max-width: 576px) {
    .section-padding {
        padding: 40px 0;
    }
    
    .premier-content {
        max-width: 95%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .premier-title {
        font-size: 1.8rem;
    }
    
    .about-text {
        font-size: 0.9rem;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    .brand-card {
        width: 100%;
        padding: 8px;
    }

    .brand-image img.equal-image {
        height: 80px;
    }
    .urun-image img.equal-image {
        height: 200px;
    }
}

/* Tablet Landscape */
@media (min-width: 769px) and (max-width: 1024px) {
    .premier-content {
        max-width: 70%;
    }

    .about-image {
        max-width: 90%;
    }

    .feature-card {
        padding: 25px;
    }
}

/* Print Styles */
@media print {
    .hero-scroll,
    .navbar {
        display: none;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 50px 0;
    }
    
    .feature-card {
        margin-bottom: 30px;
    }
}
