    :root {
            --primary-color: #1a4d6f;
            --secondary-color: #2196F3;
            --accent-color: #FFD700;
            --dark-blue: #0a2540;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Montserrat", sans-serif;
            overflow-x: hidden;
            background: #f5f5f5;
        }

        /* Navbar */
        .navbar {
            background: linear-gradient(122deg, rgb(249 249 249 / 55%), rgb(1 47 123 / 0%));           
            padding: 3px 33px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .navbar-brand {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            color: white !important;
        }

        .brand-title {
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: 3px;
            color: white;
        }

        .brand-subtitle {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.8);
            letter-spacing: 2px;
        }

        .nav-link {
            color: white !important;
            margin: 0 20px;
            font-weight: 500;
            font-size: 1rem;
            transition: color 0.3s ease;
            font-family: "Montserrat", sans-serif;
        }

        .nav-link:hover {
            color: var(--accent-color) !important;
        }

        /* Dropdown hover ile açılması için */
.navbar-nav .dropdown:hover > .dropdown-menu {
    display: block;
    animation: fadeIn 0.3s;
}

/* Alt menü hover */
.dropdown-submenu:hover > .dropdown-menu {
    display: block;
    animation: fadeIn 0.3s;
}

/* İç içe dropdown pozisyon */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    margin-left: 0;
}

/* Dropdown ok işareti */
.dropdown-menu .dropdown-toggle::after {
    display: none;
}

/* Animasyon */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dropdown menu stil */
.dropdown-menu {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border: none;
    padding: 0.2rem 0;
    margin-top: 0.1rem;
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    padding-left: 2rem;
}

/* Mobil için */
@media (max-width: 991.98px) {
    .dropdown-submenu .dropdown-menu {
        left: 0;
        margin-left: 1rem;
        position: relative;
    }
    
    .navbar-nav .dropdown-menu {
        animation: none;
    }
}

        

        .language-flags {
            display: flex;
            gap: 10px;
            margin-left: 20px;
			color:#fff;
        }

        .language-flags img {
            width: 30px;
            height: 20px;
            cursor: pointer;
            border-radius: 3px;
            transition: transform 0.3s ease;
        }

        .language-flags img:hover {
            transform: scale(1.1);
        }

        /* Hero Slider Section */
        .hero-slider {
            position: relative;
            height: 700px;
            overflow: hidden;
            margin-bottom: 150px;
        }

        .hero-video-bg {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 1920px;
            height: 700px;
            max-width: none;
            object-fit: cover;
            z-index: 0;
        }

        .hero-video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6));
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            height: 500px;
        }

        .hero-title {
            font-size: 2.5rem;
            font-weight: 400;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 20px rgba(0,0,0,0.7);
            animation: fadeInUp 1s ease;
            font-family: "Montserrat", sans-serif;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            letter-spacing: 8px;
            font-weight: 300;
            animation: fadeInUp 1.2s ease;
            font-family: "Montserrat", sans-serif;
        }

        /* Text Slider Animation */
        .text-slider-container {
            height: 60px;
            overflow: hidden;
            margin-bottom: 2rem;
            animation: fadeInUp 2.4s ease;
        }

        .text-slider {
            animation: slideText 11s infinite;
        }

        .slider-text {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--accent-color);
            text-shadow: 2px 2px 15px rgba(0,0,0,0.7);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            letter-spacing: 2px;
            font-family: "Montserrat", sans-serif;
        }

        @keyframes slideText {
            0%, 30% {
                transform: translateY(0);
            }
            33%, 63% {
                transform: translateY(-60px);
            }
            66%, 96% {
                transform: translateY(-120px);
            }
            100% {
                transform: translateY(-180px);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Search Box Inside Hero */
           .search-box-hero {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 30px 40px 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            max-width: 1200px;
            width: 100%;
            margin: 0 20px;          
            position: absolute;
            top: 640px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 99999;
        }

        .search-box-hero h3 {
            color: var(--primary-color);
            margin-bottom: 25px;
            font-weight: 700;
            font-size: 1.5rem;
        }

        .form-control, .custom-select {
            border-radius: 10px;
            border: 2px solid #e0e0e0;
            padding: 12px 20px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus, .custom-select:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.25);
        }

        .btn-search {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            padding: 12px 40px;
            border-radius: 10px;
            font-weight: 600;
            width: 100%;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .btn-search:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(33, 150, 243, 0.4);
        }

        /* Yacht Cards Grid */
        .yacht-cards-grid {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            animation: fadeInUp 1.6s ease;
            margin-top: 1px;
        }

        .yacht-modern-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            transition: all 0.4s ease;
            margin-bottom: 30px;
            height: 100%;
        }

        .yacht-modern-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.25);
        }

        .yacht-modern-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .yacht-modern-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .yacht-modern-card:hover .yacht-modern-image img {
            transform: scale(1.1);
        }

        .yacht-modern-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--accent-color);
            color: var(--dark-blue);
            padding: 8px 25px;
            border-radius: 25px;
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
        }

        .yacht-modern-body {
            padding: 30px;
        }

        .yacht-modern-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .yacht-modern-specs {
            display: flex;
            justify-content: space-around;
            margin-bottom: 25px;
            padding: 20px 0;
            border-top: 2px solid #f0f0f0;
            border-bottom: 2px solid #f0f0f0;
        }

        .yacht-modern-spec {
            text-align: center;
        }

        .yacht-modern-spec i {
            color: var(--secondary-color);
            font-size: 2rem;
            margin-bottom: 8px;
            display: block;
        }

        .yacht-modern-spec-value {
            font-weight: 700;
            font-size: 1.3rem;
            color: var(--primary-color);
            display: block;
        }

        .yacht-modern-spec-label {
            font-size: 0.9rem;
            color: #666;
            margin-top: 5px;
        }

        .yacht-modern-price {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent-color);
            margin-bottom: 20px;
            text-align: center;
        }

        .yacht-modern-price small {
            font-size: 1.1rem;
            color: #666;
            font-weight: 500;
        }

        .btn-modern-book {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 12px;
            font-weight: 600;
            width: 100%;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-modern-book:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(33, 150, 243, 0.4);
        }

        /* Features Section */
        .features-section {
		    margin-top: 750px;
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary-color), var(--dark-blue));
            color: white;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            margin-bottom: 60px;
            opacity: 0.9;
        }

        .feature-box {
            text-align: center;
            padding: 40px 30px;
            border-radius: 20px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
            height: 100%;
        }

        .feature-box:hover {
            background: rgba(255,255,255,0.15);
            transform: translateY(-10px);
        }

        .feature-icon {
            font-size: 4rem;
            color: var(--accent-color);
            margin-bottom: 20px;
        }

        .feature-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        /* Footer */
        .footer {
            background: var(--dark-blue);
            color: white;
            padding: 60px 0 30px;
        }

        .footer-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--accent-color);
        }

        .footer-link {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }

        .footer-link:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }

        .social-icons {
            margin-top: 20px;
        }

        .social-icon {
            display: inline-block;
            width: 45px;
            height: 45px;
            line-height: 45px;
            text-align: center;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            color: white;
            margin-right: 10px;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: var(--accent-color);
            color: var(--dark-blue);
            transform: translateY(-5px);
        }

        /* Contact Icons */
        .contact-icons {
            position: fixed;
            right: 20px;
            bottom: 20px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .contact-icon {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }

        .contact-icon:hover {
            transform: scale(1.1);
        }

        .contact-icon.email {
            background: #9b59b6;
        }

        .contact-icon.instagram {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        }

        .contact-icon.phone {
            background: #2196F3;
        }

        .contact-icon.whatsapp {
            background: #25D366;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-subtitle {
                font-size: 1rem;
                letter-spacing: 4px;
            }
            .search-box-hero {
                padding: 20px;
                margin-bottom: 2rem;
            }
            .yacht-modern-specs {
                flex-wrap: wrap;
            }
            .yacht-modern-spec {
                flex: 0 0 33.333%;
                margin-bottom: 15px;
            }
        }