/* Türkçe Karakter Desteği - Brief Uyumlu Fontlar */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&subset=latin,latin-ext&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&subset=latin,latin-ext&display=swap');

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

/* Türkçe karakterler için font rendering optimizasyonu */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
}

:root {
    /* UBS Marka Renk Paleti */
    --primary-color: #184C3F;        /* Ana Yeşil - Logo uyumlu */
    --secondary-color: #12483B;      /* Daha Koyu Yeşil - Butonlar */
    --dark-color: #0F4537;           /* En Koyu Yeşil - Hover efektleri */
    --white: #FFFFFF;                /* Beyaz - Ana arka plan */
    --light-bg: #FBFCFC;            /* Açık Beyaz/Gri - İkincil arka plan */
    --wood-beige: #E6D3B3;          /* Ahşap Bej - Vurgu kutuları */
    --accent-color: #E6D3B3;        /* Ahşap Bej - Vurgu rengi */
    --text-color: #333;
    --text-light: #666;
    --gradient: linear-gradient(135deg, #184C3F 0%, #12483B 100%);
    --shadow: 0 4px 20px rgba(24, 76, 63, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Open Sans', 'Segoe UI', 'Tahoma', 'Geneva', 'Verdana', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    font-feature-settings: "liga" 1, "kern" 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    max-width: 100vw;
    /* Renk paletine uygun yumuşak arka plan ve modern aksanlar */
    background-color: var(--light-bg);
    background-image:
        radial-gradient(1200px 400px at 50% -200px, rgba(24, 76, 63, 0.06), transparent 60%),
        radial-gradient(800px 240px at 100% 0, rgba(18, 72, 59, 0.04), transparent 60%);
    color-scheme: light; /* Form kontrolleri ve sistem UI için */
    accent-color: var(--primary-color); /* Checkbox, radio, range vb. */
    scroll-behavior: smooth;
}

/* Metin seçimi için marka uyumlu vurgu */
::selection {
    background: var(--primary-color);
    color: var(--white);
}

/* İnce, marka uyumlu scrollbar (WebKit tabanlı tarayıcılar) */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    background: rgba(24, 76, 63, 0.06);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 8px;
    border: 2px solid var(--light-bg);
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #1a5344, #145040);
}

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

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-link:hover {
    color: var(--secondary-color);
    background: rgba(76, 175, 80, 0.1);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1001;
}

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

.dropdown-item {
    padding: 0.8rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

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

.dropdown-link {
    text-decoration: none;
    color: var(--text-color);
    display: block;
    transition: var(--transition);
}

.dropdown-link:hover {
    color: var(--secondary-color);
}

.cta-button {
    background: linear-gradient(135deg, #184C3F 0%, #12483B 50%, #0F4537 100%);
    color: var(--white);
    padding: 0.75rem 1.8rem;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(24, 76, 63, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(24, 76, 63, 0.4);
    background: linear-gradient(135deg, #1a5344 0%, #145040 50%, #11493c 100%);
}

.cta-button:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

.cta-button i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(2px);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

/* Varsayılan hero - carousel olmadığında */
.hero:not(:has(.carousel)) {
    background: url('../images/slider/slide2.webp');
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero:not(:has(.carousel))::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(24, 76, 63, 0.7), rgba(18, 72, 59, 0.6)),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

/* Carousel yapısı */
.hero .carousel {
    height: 100vh;
    width: 100%;
}

.hero .carousel-inner {
    height: 100vh;
}

.hero .carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: var(--white);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

/* Carousel item overlay - yeşil kaplama + pattern */
.hero .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(24, 76, 63, 0.7), rgba(18, 72, 59, 0.6)),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.hero .carousel-item.active {
    opacity: 1;
    position: relative;
}

/* Carousel kontrol butonları */
.hero .carousel-control-prev,
.hero .carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    opacity: 0.8;
    transition: var(--transition);
    z-index: 4;
}

.hero .carousel-control-prev {
    left: 30px;
}

.hero .carousel-control-next {
    right: 30px;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
}

.hero .carousel-control-prev-icon,
.hero .carousel-control-next-icon {
    width: 30px;
    height: 30px;
}

/* Carousel indicators */
.hero .carousel-indicators {
    bottom: 30px;
    margin-bottom: 0;
    z-index: 4;
}

.hero .carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.hero .carousel-indicators .active {
    background-color: var(--white);
    border-color: var(--white);
}

/* Tek slider durumu için - carousel olmadan */
.hero .container:not(.carousel) {
    height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    color: var(--accent-color);
    font-family: 'Montserrat', 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    border: 2px solid var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

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

/* Features Section */
.features {
    padding: 8rem 0 5rem 0;
    background: var(--light-bg);
    position: relative;
    z-index: 10;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-family: 'Montserrat', 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Genel başlık renkleri marka uyumlu */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
}

/* Link renkleri ve hover durumu */
a {
    color: var(--secondary-color);
    text-decoration-color: rgba(18, 72, 59, 0.25);
    text-underline-offset: 2px;
}
a:hover {
    color: var(--dark-color);
    text-decoration-color: rgba(18, 72, 59, 0.5);
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

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

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(44, 85, 48, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Categories Section */
.categories {
    padding: 5rem 0;
    background: var(--white);
}

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

.category-card {
    background: var(--light-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(44, 85, 48, 0.1);
}

.category-image {
    height: 200px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.category-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm10 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z'/%3E%3C/g%3E%3C/svg%3E");
}

.category-content {
    padding: 1.5rem;
}

.category-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.category-content p {
    color: #666;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--light-bg);
}

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

.about-text h2 {
    font-family: 'Montserrat', 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #666;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background: var(--white);
}

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

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(44, 85, 48, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Dealer Application Section */
.dealer-application {
    padding: 5rem 0;
    background: var(--light-bg);
}

.dealer-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    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(24, 76, 63, 0.1);
}

.dealer-form button {
    width: 100%;
    margin-top: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: var(--gradient);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-family: 'Montserrat', 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

/* Footer */
.footer {
    background: var(--primary-color);
    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 {
    font-family: 'Montserrat', 'Helvetica Neue', 'Arial', sans-serif;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--accent-color);
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 1.8;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

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

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

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

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

/* Modern Header Styles */
.modern-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.modern-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    position: relative;
}

.modern-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1001;
    flex-shrink: 0;
}

.modern-logo img {
    height: 70px;
    width: auto;
    transition: transform 0.3s ease;
}

.modern-logo:hover img {
    transform: scale(1.05);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.modern-nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.25rem;
}

.modern-nav-item {
    position: relative;
}

.modern-nav-link {
    display: flex;
    align-items: center;
    padding: 0.6rem 1rem;
    text-decoration: none;
    color: #2d3748;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.modern-nav-link:hover,
.modern-nav-link.active {
    color: var(--primary-color);
    background: rgba(24, 76, 63, 0.08);
}

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

.dropdown-parent:hover .dropdown-icon {
    transform: rotate(180deg);
}

.modern-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0.75rem;
}

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

.modern-dropdown-link {
    display: block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: #4a5568;
    font-size: 0.9rem;
    border-radius: 10px;
    transition: all 0.2s ease;
    margin-bottom: 0.25rem;
}

.modern-dropdown-link:hover {
    background: rgba(24, 76, 63, 0.08);
    color: var(--primary-color);
    transform: translateX(4px);
}

.modern-dropdown-link:last-child {
    margin-bottom: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modern-cta-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(24, 76, 63, 0.3);
}

.modern-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(24, 76, 63, 0.4);
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-color));
}

.modern-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: rgba(24, 76, 63, 0.08);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: var(--primary-color);
    margin: 2px 0;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

/* Mobile Responsive */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 1.5rem;
    }
    
    .modern-nav-menu {
        gap: 0.25rem;
    }
    
    .modern-nav-link {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .modern-nav {
        height: 70px;
    }
    
    .modern-logo img {
        height: 50px;
    }
    
    .nav-wrapper {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        opacity: 0;
        visibility: hidden;
        transform: translateX(-100%);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        padding: 2rem 1.5rem;
    }
    
    .nav-wrapper.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
    
    .modern-mobile-toggle {
        display: flex;
    }
    
    .modern-nav-menu {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .modern-nav-item {
        width: 100%;
    }
    
    .modern-nav-link {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        border-radius: 16px;
    }
    
    .modern-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(24, 76, 63, 0.05);
        margin-top: 0.5rem;
        border: none;
        box-shadow: none;
        display: block;
    }
    
    .header-actions {
        margin-top: 2rem;
        position: relative;
        bottom: auto;
        right: auto;
    }
    
    .modern-cta-button {
        padding: 1rem 1.5rem;
        border-radius: 16px;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 70vh;
        padding: 1.5rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
}

/* Additional mobile hero background fix */
@media (max-width: 480px) {
    .hero {
        background-image: none !important;
        background: var(--gradient) !important;
    }
}

@media (max-width: 360px) {
    .hero {
        background-image: none !important;
        background: var(--gradient) !important;
        min-height: 60vh;
    }
}

/* Body padding for fixed header */
body {
    padding-top: 80px;
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    body.menu-open {
        overflow: hidden;
    }
}

/* Categories Grid - Ürünler sayfası için */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: var(--light-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(24, 76, 63, 0.2);
}

.category-image {
    height: 250px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-size: 4rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.category-content {
    padding: 2rem;
}

.category-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.category-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.category-features li {
    padding: 0.3rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

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

/* Advantages Grid - Bayi Başvuru sayfası için */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.advantage-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(24, 76, 63, 0.2);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.advantage-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.advantage-card p {
    color: var(--text-light);
}

/* Application Form */
.application-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-top: 3rem;
}

.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light-bg);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(24, 76, 63, 0.1);
}

.submit-button {
    background: var(--gradient);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.submit-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(24, 76, 63, 0.3);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(24, 76, 63, 0.3);
}

/* Requirements Section */
.requirements {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
}

.requirements h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

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

.requirement-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.requirement-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.requirement-text {
    font-size: 1rem;
    color: var(--text-color);
}

/* Contact Info */
/*.contact-info {
    background: var(--gradient);
    color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin: 3rem 0;
    box-shadow: var(--shadow);
}*/

.contact-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-items {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-item i {
    font-size: 1.3rem;
    color: var(--wood-beige);
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--wood-beige);
    text-decoration: underline;
}

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

/* Gallery Specific Styles */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Categories Filter */
.gallery-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-filter {
    background: var(--light-bg);
    color: var(--text-color);
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--light-bg);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.category-filter:hover,
.category-filter.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(24, 76, 63, 0.2);
}

/* Large Gallery Items */
.gallery-item.large {
    grid-column: span 2;
}

.gallery-item.large img {
    height: 400px;
}

/* About Page Specific */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.values-section {
    background: var(--light-bg);
    padding: 4rem 0;
    margin: 4rem 0;
    border-radius: 20px;
}

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

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Contact Page Specific */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

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

.contact-info-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.contact-details h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

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

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-details a:hover {
    color: var(--secondary-color);
}

/* Contact Form */
.contact-form {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 20px;
}

.contact-form h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    background: var(--white);
    border: 2px solid var(--white);
}

/* Map Section */
.map-section {
    margin: 4rem 0;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.map-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.map-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.map-container {
    height: 400px;
    position: relative;
    width: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #f0f0f0 25%, transparent 25%), 
                linear-gradient(-45deg, #f0f0f0 25%, transparent 25%), 
                linear-gradient(45deg, transparent 75%, #f0f0f0 75%), 
                linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Working Hours */
.working-hours {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    text-align: center;
}

.working-hours h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.day {
    font-weight: 600;
}

.time {
    color: var(--wood-beige);
}

/* Social Links Section */
.social-section {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin: 3rem 0;
}

.social-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-section p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.social-section .social-links.extended {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.social-section .social-links.extended a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--white);
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow);
    width: auto;
    height: auto;
}

.social-section .social-links.extended a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(24, 76, 63, 0.3);
}

.social-section .social-links.extended .facebook:hover {
    color: #1877f2;
    background: rgba(24, 119, 242, 0.1);
}

.social-section .social-links.extended .instagram:hover {
    color: #e4405f;
    background: rgba(228, 64, 95, 0.1);
}

.social-section .social-links.extended .whatsapp:hover {
    color: #25d366;
    background: rgba(37, 211, 102, 0.1);
}

/* Page Header */
.page-header {
    background: var(--gradient);
    color: var(--white);
    padding: 4rem 0 2rem;
    text-align: center;
}

.page-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.content-section {
    padding: 4rem 0;
}

/* Body padding for pages with header */
body.has-header {
    padding-top: 100px;
}

/* Dropdown fix */
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 1rem 0;
    min-width: 200px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.nav-item:hover .dropdown {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-item {
    list-style: none;
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-link:hover {
    background: var(--light-bg);
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Extended responsive rules */
@media (max-width: 768px) {
    /* Hero Section Mobile - Remove background image */
    .hero {
        min-height: 80vh;
        background: var(--gradient) !important;
        background-size: auto;
        background-position: center center;
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 1rem 1.5rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.large {
        grid-column: span 1;
    }
    
    .gallery-item.large img {
        height: 300px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .application-form {
        padding: 2rem;
    }
    
    .requirements {
        padding: 2rem;
    }
    
    .contact-info {
        padding: 2rem;
    }
    
    .contact-items {
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info-section,
    .contact-form {
        padding: 2rem;
    }
    
    .map-container {
        height: 300px;
    }
    
    .map-header {
        padding: 1.5rem;
    }
    
    .map-header h3 {
        font-size: 1.5rem;
    }
    
    .social-section .social-links.extended {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .social-section .social-links.extended a {
        width: 80%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-categories {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 70vh;
        padding: 1.5rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
}

/* Scroll reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Carousel Mobile Responsive Styles */
@media (max-width: 768px) {
    .hero .carousel-control-prev,
    .hero .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .hero .carousel-control-prev {
        left: 15px;
    }
    
    .hero .carousel-control-next {
        right: 15px;
    }
    
    .hero .carousel-control-prev-icon,
    .hero .carousel-control-next-icon {
        width: 20px;
        height: 20px;
    }
    
    .hero .carousel-indicators {
        bottom: 15px;
    }
    
    .hero .carousel-indicators li {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .hero .carousel,
    .hero .carousel-inner,
    .hero .carousel-item {
        height: 70vh;
    }
}

/* Alert Messages */
.alert {
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.alert-success i {
    color: #16a34a;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.alert-error i {
    color: #dc2626;
}

/* ================================
   DEALER APPLICATION PAGE STYLES
   ================================ */

/* Dealer Hero Section */
.dealer-hero {
    position: relative;
    min-height: 50vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -80px;
    padding-top: 80px;
}

.dealer-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(24,76,63,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(24,76,63,0.05)"/><circle cx="25" cy="75" r="1" fill="rgba(24,76,63,0.05)"/><circle cx="75" cy="25" r="1" fill="rgba(24,76,63,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.7;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
}

.dealer-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--primary-color);
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.dealer-hero .hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
}

.dealer-hero .hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.dealer-hero .hero-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
    animation: float 3s ease-in-out infinite;
}

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

/* Main Application Section */
.dealer-application-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    min-height: 70vh;
}

/* Custom Alerts */
.custom-alert {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: slideInDown 0.5s ease-out;
}

.custom-alert.alert-success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
    border: 1px solid #34d399;
}

.custom-alert.alert-error {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
    border: 1px solid #f87171;
}

.custom-alert i {
    font-size: 1.5rem;
}

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

/* Content Wrapper */
.dealer-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Side - Information Cards */
.dealer-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card, .benefits-card, .contact-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(24, 76, 63, 0.1);
    transition: all 0.3s ease;
}

.info-card:hover, .benefits-card:hover, .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(24, 76, 63, 0.1);
}

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

.info-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.info-content p {
    color: #374151;
    line-height: 1.7;
    font-size: 1rem;
}

.benefits-card h4, .contact-card h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: #374151;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li i {
    color: #10b981;
    font-size: 1.1rem;
}

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

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.08) 0%, rgba(14, 165, 233, 0.08) 100%);
    border-radius: 16px;
    text-decoration: none;
    color: #0EA5E9;
    transition: all 0.3s ease;
    border: 1px solid rgba(14, 165, 233, 0.15);
}

.contact-link:hover {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.15) 0%, rgba(14, 165, 233, 0.15) 100%);
    transform: translateY(-2px);
    text-decoration: none;
    color: #0284C7;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-link i {
    font-size: 1.3rem;
    color: #0EA5E9;
    background: rgba(14, 165, 233, 0.12);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

/* Right Side - Form */
.dealer-form-wrapper {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.form-card {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(24, 76, 63, 0.1);
    position: relative;
    overflow: hidden;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(24, 76, 63, 0.1);
}

.form-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #6b7280;
    font-size: 1.1rem;
}

/* Form Styles */
.dealer-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.form-label i {
    font-size: 1.1rem;
    width: 16px;
    text-align: center;
}

.optional {
    color: #9ca3af;
    font-weight: 400;
    font-size: 0.9rem;
}

.form-input, .form-select, .form-textarea {
    padding: 1rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
    color: #1f2937;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(24, 76, 63, 0.1);
    transform: translateY(-2px);
}

.form-input::placeholder, .form-textarea::placeholder {
    color: #9ca3af;
}

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

.form-hint {
    color: #6b7280;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* Submit Section */
.form-submit {
    margin-top: 2rem;
    text-align: center;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(24, 76, 63, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(24, 76, 63, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.form-note {
    margin-top: 1.5rem;
    color: #6b7280;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

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

/* ================================
   DEALER APPLICATION RESPONSIVE
   ================================ */

/* Tablet Styles */
@media (max-width: 1024px) {
    .dealer-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .dealer-form-wrapper {
        position: static;
    }
    
    .form-card {
        padding: 2.5rem;
    }
    
    .dealer-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .dealer-hero .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .dealer-hero {
        min-height: 40vh;
        padding-top: 70px;
        margin-top: -70px;
    }
    
    .dealer-hero .hero-title {
        font-size: 2rem;
    }
    
    .dealer-hero .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .dealer-hero .hero-icon {
        font-size: 3rem;
    }
    
    .dealer-application-section {
        padding: 2rem 0;
    }
    
    .dealer-content-wrapper {
        gap: 1.5rem;
    }
    
    .info-card, .benefits-card, .contact-card {
        padding: 1.5rem;
    }
    
    .form-card {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .form-header h2 {
        font-size: 1.7rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .submit-btn {
        padding: 1.1rem 2.5rem;
        font-size: 1rem;
    }
    
    .custom-alert {
        padding: 1.25rem 1.5rem;
        border-radius: 12px;
    }
    
    .contact-link {
        padding: 0.875rem;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .dealer-hero {
        min-height: 35vh;
    }
    
    .dealer-hero .hero-content {
        padding: 1.5rem 1rem;
    }
    
    .dealer-hero .hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .dealer-hero .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .dealer-hero .hero-icon {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }
    
    .dealer-application-section {
        padding: 1.5rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .info-card, .benefits-card, .contact-card {
        padding: 1.25rem;
        border-radius: 15px;
    }
    
    .form-card {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .form-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
    
    .form-header p {
        font-size: 1rem;
    }
    
    .form-input, .form-select, .form-textarea {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
        border-radius: 10px;
    }
    
    .submit-btn {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 0.95rem;
        border-radius: 12px;
    }
    
    .benefits-list li {
        padding: 0.625rem 0;
        font-size: 0.95rem;
    }
    
    .contact-link {
        padding: 0.75rem;
        font-size: 0.95rem;
    }
    
    .custom-alert {
        padding: 1rem 1.25rem;
        border-radius: 10px;
        font-size: 0.95rem;
    }
    
    .form-note {
        font-size: 0.85rem;
        text-align: center;
        line-height: 1.5;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .dealer-hero .hero-title {
        font-size: 1.5rem;
    }
    
    .dealer-hero .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .form-card {
        padding: 1.25rem;
    }
    
    .form-header h2 {
        font-size: 1.4rem;
    }
    
    .info-card, .benefits-card, .contact-card {
        padding: 1rem;
    }
}

/* Landscape Mobile Orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .dealer-hero {
        min-height: 60vh;
    }
    
    .dealer-hero .hero-content {
        padding: 1rem;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .form-card {
        border: 1px solid rgba(24, 76, 63, 0.15);
    }
    
    .form-input, .form-select, .form-textarea {
        border-width: 1px;
    }
}

/* Dark Mode Support (if needed in future) */
@media (prefers-color-scheme: dark) {
    .dealer-application-section {
        background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    }
    
    .info-card, .benefits-card, .contact-card, .form-card {
        background: #1f2937;
        border-color: rgba(255, 255, 255, 0.1);
        color: #f9fafb;
    }
    
    .info-content p, .benefits-list li {
        color: #d1d5db;
    }
    
    .form-header p, .form-hint, .form-note {
        color: #9ca3af;
    }
    
    .form-input, .form-select, .form-textarea {
        background: #374151;
        border-color: rgba(255, 255, 255, 0.1);
        color: #f9fafb;
    }
    
    .form-input::placeholder, .form-textarea::placeholder {
        color: #6b7280;
    }
}
