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

        :root {
            --primary-color: #1a4d8f;
            --primary-dark: #0f2d52;
            --primary-light: #2563a8;
            --secondary-color: #d4af37;
            --accent-color: #ff6b35;
            --dark-bg: #0a1929;
            --dark-bg-light: #13253a;
            --text-dark: #1a1a1a;
            --text-light: #ffffff;
            --text-gray: #6b7280;
            --border-color: #e5e7eb;
            --success-color: #10b981;
            --error-color: #ef4444;
            --glass-bg: rgba(255, 255, 255, 0.1);
            --glass-border: rgba(255, 255, 255, 0.2);
            --header-bg: #0d1b2a;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

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

        /* Header & Navigation - Fraser Style */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--header-bg);
            transition: all 0.3s ease;
        }

        .header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: #c41e3a;
        }

        .navbar {
            padding: 0;
        }

        .nav-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 30px;
        }

        /* Left Section - Search */
        .nav-left {
            flex: 1;
            display: flex;
            align-items: center;
        }

        .search-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: var(--text-light);
            padding: 10px 20px;
            border-radius: 3px;
            cursor: pointer;
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }

        .search-btn:hover {
            border-color: rgba(255, 255, 255, 0.6);
            background: rgba(255, 255, 255, 0.05);
        }

        .search-btn i {
            font-size: 14px;
        }

        /* Center Section - Logo & Menu */
        .nav-center {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-icon i {
            color: var(--text-light);
            font-size: 24px;
        }

        .logo-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 32px;
            font-weight: 400;
            color: var(--text-light);
            letter-spacing: 8px;
            text-transform: uppercase;
            display: flex;
            flex-direction: column;
            align-items: center;
            line-height: 1.2;
        }

        .logo-subtitle {
            font-size: 10px;
            font-weight: 300;
            letter-spacing: 2px;
            opacity: 0.8;
            margin-top: 2px;
        }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 400;
            font-size: 12px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: rgba(255, 255, 255, 0.7);
        }

        /* Right Section - Actions */
        .nav-right {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 20px;
        }

        .btn-icon {
            position: relative;
            background: transparent;
            border: none;
            color: var(--text-light);
            width: 40px;
            height: 40px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

        .btn-icon:hover {
            color: rgba(255, 255, 255, 0.7);
        }

        .badge {
            position: absolute;
            top: 2px;
            right: 2px;
            background: var(--accent-color);
            color: white;
            font-size: 9px;
            font-weight: bold;
            padding: 2px 5px;
            border-radius: 10px;
            min-width: 16px;
        }

        .btn-inquire {
            background: transparent;
            color: var(--text-light);
            border: 1px solid var(--text-light);
            padding: 12px 30px;
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-inquire:hover {
            background: var(--text-light);
            color: var(--header-bg);
        }

        .mobile-menu-btn {
            display: none;
            background: transparent;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            z-index: 1002;
        }

        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1001;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Mobile Menu Panel */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -320px;
            width: 320px;
            max-width: 85%;
            height: 100%;
            background: var(--header-bg);
            z-index: 1002;
            transition: right 0.3s ease;
            overflow-y: auto;
            box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-menu-logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px;
            color: white;
            letter-spacing: 3px;
        }

        .mobile-menu-close {
            background: transparent;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            padding: 5px;
            transition: opacity 0.3s ease;
        }

        .mobile-menu-close:hover {
            opacity: 0.7;
        }

        .mobile-menu-links {
            padding: 20px 0;
        }

        .mobile-menu-links a {
            display: block;
            padding: 15px 25px;
            color: white;
            text-decoration: none;
            font-size: 14px;
            font-weight: 400;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }

        .mobile-menu-links a:hover {
            background: rgba(255, 255, 255, 0.05);
            padding-left: 35px;
        }

        .mobile-menu-links a i {
            margin-right: 12px;
            width: 20px;
            text-align: center;
            opacity: 0.7;
        }

        .mobile-menu-footer {
            padding: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-menu-contact {
            margin-bottom: 20px;
        }

        .mobile-menu-contact p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 13px;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .mobile-menu-contact p i {
            width: 16px;
            text-align: center;
        }

        .mobile-menu-contact a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
        }

        .mobile-menu-social {
            display: flex;
            gap: 12px;
        }

        .mobile-menu-social a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .mobile-menu-social a:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
        }

        /* Body scroll lock when menu is open */
        body.menu-open {
            overflow: hidden;
        }

        /* User Menu */
        .user-menu {
            position: relative;
        }

        .user-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 8px 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: inherit;
            font-size: 12px;
            letter-spacing: 1px;
        }

        .user-btn:hover {
            border-color: rgba(255, 255, 255, 0.6);
        }

        .user-btn i {
            font-size: 14px;
        }

        .user-btn span {
            font-weight: 400;
            max-width: 100px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .user-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            margin-top: 10px;
            background: white;
            border-radius: 4px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            min-width: 200px;
            display: none;
            overflow: hidden;
            z-index: 1001;
        }

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

        .user-dropdown a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 16px;
            color: var(--text-dark);
            text-decoration: none;
            font-size: 13px;
            transition: background 0.3s ease;
        }

        .user-dropdown a:hover {
            background: #f5f5f5;
        }

        .user-dropdown a.logout {
            color: var(--error-color);
            border-top: 1px solid #f0f0f0;
        }

        /* Hero Section - Video Background */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 700px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-video-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            overflow: hidden;
        }

        .hero-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            text-align: center;
            color: white;
        }

        .hero-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 80px;
            font-weight: 300;
            letter-spacing: 20px;
            text-transform: uppercase;
            line-height: 1.2;
            text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }

        .hero-title span {
            display: block;
        }



        /* First Choice Section - Fraser Style */
        .first-choice-section {
            padding: 80px 0;
            background: #fff;
        }

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

        .intro-text-section {
            text-align: center;
            max-width: 1000px;
            margin: 0 auto 80px;
            padding: 0 20px;
        }

        .intro-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 48px;
            font-weight: 400;
            color: var(--text-dark);
            margin-bottom: 30px;
            letter-spacing: 2px;
        }

        .intro-description {
            font-size: 16px;
            line-height: 1.8;
            color: #4a5568;
            text-align: justify;
        }

        .section-title-fraser {
            font-family: 'Cormorant Garamond', serif;
            font-size: 14px;
            font-weight: 400;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--text-dark);
            position: relative;
            display: inline-block;
        }

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

        .yacht-type-tabs {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 60px;
        }

        .yacht-type-tab {
            padding: 15px 50px;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            background: transparent;
        }

        .yacht-type-tab.active {
            background: var(--header-bg);
            color: white;
        }

        .yacht-type-tab:not(.active) {
            border: 1px solid var(--border-color);
            color: var(--text-dark);
        }

        .yacht-type-tab:not(.active):hover {
            border-color: var(--header-bg);
        }

        /* Fraser Style Yacht Slider */
        .yachts-slider-wrapper {
            position: relative;
            overflow: hidden;
        }

        .yachts-slider {
            display: flex;
            transition: transform 0.5s ease;
        }

        .yacht-slide {
            min-width: 50%;
            padding: 0 15px;
            box-sizing: border-box;
        }

        .yacht-card-fraser {
            cursor: pointer;
            transition: all 0.3s ease;
        }

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

        .yacht-image-fraser {
            position: relative;
            height: 400px;
            overflow: hidden;
            background: #f0f0f0;
        }

        .yacht-image-fraser img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .yacht-card-fraser:hover .yacht-image-fraser img {
            transform: scale(1.05);
        }

        .yacht-image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
        }

        .yacht-brand {
            font-family: 'Cormorant Garamond', serif;
            font-size: 18px;
            font-weight: 400;
            letter-spacing: 3px;
            color: white;
            text-transform: uppercase;
        }

        .yacht-favorite-fraser {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .yacht-favorite-fraser:hover {
            background: white;
            transform: scale(1.1);
        }

        .yacht-favorite-fraser i {
            color: var(--text-dark);
            font-size: 16px;
        }

        .yacht-favorite-fraser.active i {
            color: #c41e3a;
        }

        .yacht-badge-fraser {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 8px 12px;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .yacht-media-icons {
            position: absolute;
            bottom: 15px;
            right: 15px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .media-icon {
            width: 30px;
            height: 30px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: var(--text-dark);
        }

        .yacht-info-fraser {
            padding: 25px 0 15px;
            text-align: center;
        }

        .yacht-name-fraser {
            font-family: 'Cormorant Garamond', serif;
            font-size: 24px;
            font-weight: 400;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .yacht-builder {
            font-size: 12px;
            color: var(--text-gray);
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .yacht-specs-fraser {
            display: flex;
            justify-content: center;
            gap: 30px;
            padding: 20px 0;
            border-top: 1px solid var(--border-color);
        }

        .spec-item {
            text-align: center;
            padding: 0 15px;
            border-right: 1px solid var(--border-color);
        }

        .spec-item:last-child {
            border-right: none;
        }

        .spec-value {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 4px;
        }

        .spec-label {
            font-size: 10px;
            color: var(--text-gray);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Price Section */
        .yacht-price-fraser {
            background: #f8f9fa;
            padding: 15px;
            text-align: center;
            font-size: 13px;
            color: var(--text-dark);
        }

        .yacht-price-fraser .price-from {
            color: var(--text-gray);
        }

        .yacht-price-fraser .price-amount {
            font-weight: 700;
            color: var(--text-dark);
        }

        .yacht-price-fraser .price-period {
            color: var(--text-gray);
        }

        /* Slider Navigation */
        .slider-navigation {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            margin-top: 50px;
        }

        .slider-arrow {
            width: 50px;
            height: 50px;
            border: 1px solid var(--border-color);
            border-radius: 50%;
            background: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            color: var(--primary-color);
        }

        .slider-arrow:hover {
            border-color: var(--primary-color);
            background: var(--primary-color);
            color: white;
        }

        .slider-arrow:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .slider-arrow:disabled:hover {
            border-color: var(--border-color);
            background: white;
            color: var(--primary-color);
        }

        .slider-view-all {
            padding: 15px 40px;
            border: 1px solid var(--text-dark);
            background: white;
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            color: var(--text-dark);
        }

        .slider-view-all:hover {
            background: var(--text-dark);
            color: white;
        }

        .yachts-container-fraser {
            display: none;
        }

        .yachts-container-fraser.active {
            display: block;
        }

        /* Yacht Cards */
        .yacht-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .yacht-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }

        .yacht-image-container {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

        .yacht-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .yacht-card:hover .yacht-image {
            transform: scale(1.1);
        }

        .yacht-badges {
            position: absolute;
            top: 15px;
            left: 15px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .yacht-badge {
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .badge-featured {
            background: var(--secondary-color);
            color: white;
        }

        .badge-new {
            background: var(--success-color);
            color: white;
        }

        .badge-sale {
            background: var(--accent-color);
            color: white;
        }

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

        .yacht-favorite {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.95);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .yacht-favorite:hover {
            transform: scale(1.1);
        }

        .yacht-favorite i {
            color: #dc2626;
            font-size: 18px;
        }

        .yacht-favorite.active i {
            font-weight: 900;
        }

        .yacht-info {
            padding: 20px;
        }

        .yacht-name {
            font-size: 18px;
            font-weight: 700;
            color: var(--dark-bg);
            margin-bottom: 8px;
        }

        .yacht-location {
            display: flex;
            align-items: center;
            gap: 6px;
            color: var(--text-gray);
            font-size: 13px;
            margin-bottom: 15px;
        }

        .yacht-specs {
            display: flex;
            gap: 15px;
            padding: 15px 0;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 15px;
        }

        .yacht-specs span {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            color: var(--text-gray);
        }

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

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

        .yacht-price {
            display: flex;
            flex-direction: column;
        }

        .price-label {
            font-size: 11px;
            color: var(--text-gray);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .price-value {
            font-size: 20px;
            font-weight: 800;
            color: var(--primary-color);
        }

        .price-period {
            font-size: 12px;
            color: var(--text-gray);
            font-weight: normal;
        }

        .btn-detail {
            background: transparent;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 6px;
        }

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

        /* Loading */
        .loading {
            text-align: center;
            padding: 40px;
        }

        .loading-spinner {
            width: 40px;
            height: 40px;
            border: 3px solid #f3f3f3;
            border-top: 3px solid var(--primary-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 15px;
        }

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

            100% {
                transform: rotate(360deg);
            }
        }

        /* Features Section */
        .features-section {
            padding: 80px 0;
            background: white;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .feature-card {
            text-align: center;
            padding: 30px 20px;
            border-radius: 16px;
            transition: all 0.3s ease;
            background: #f8fafc;
        }

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

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .feature-icon i {
            font-size: 28px;
            color: white;
        }

        .feature-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--dark-bg);
        }

        .feature-text {
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.6;
        }

        /* Stats Section */
        .stats-section {
            padding: 60px 0;
            background: var(--dark-bg);
            color: white;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

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

        .stat-number {
            font-size: 48px;
            font-weight: 800;
            color: var(--secondary-color);
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 14px;
            opacity: 0.8;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Footer */
        .footer {
            background: #0d1b2a;
            color: white;
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand {
            max-width: 300px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .footer-logo i {
            color: var(--secondary-color);
        }

        .footer-description {
            font-size: 14px;
            opacity: 0.7;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .footer-social {
            display: flex;
            gap: 10px;
        }

        .social-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-btn:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
        }

        .footer-title {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }

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

        .footer-bottom p {
            font-size: 13px;
            opacity: 0.6;
        }

        /* Favori Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            overflow-y: auto;
        }

        .modal.active {
            display: flex;
            align-items: flex-start;
            justify-content: center;
            padding: 50px 20px;
        }

        .modal-content {
            background: white;
            border-radius: 20px;
            max-width: 1000px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 25px;
            border-bottom: 1px solid var(--border-color);
        }

        .modal-title {
            font-size: 20px;
            font-weight: 700;
        }

        .modal-close {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--text-gray);
        }

        .modal-body {
            padding: 25px;
        }

        .empty-state {
            text-align: center;
            padding: 40px;
            color: var(--text-gray);
        }

        /* Search Modal */
        .search-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 3000;
            overflow-y: auto;
            padding: 100px 20px 50px;
        }

        .search-modal.active {
            display: flex;
            align-items: flex-start;
            justify-content: center;
        }

        .search-modal-content {
            background: white;
            border-radius: 12px;
            max-width: 900px;
            width: 100%;
            padding: 30px;
            position: relative;
        }

        .search-modal-close {
            position: absolute;
            top: -50px;
            right: 0;
            background: none;
            border: none;
            color: white;
            font-size: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .search-modal-close:hover {
            transform: scale(1.1);
        }

        .search-modal-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 28px;
            font-weight: 400;
            letter-spacing: 3px;
            text-transform: uppercase;
            text-align: center;
            margin-bottom: 30px;
            color: var(--text-dark);
        }

        .search-input-container {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
        }

        .search-input {
            flex: 1;
            padding: 18px 24px;
            border: 2px solid #e5e7eb;
            border-radius: 50px;
            font-size: 16px;
            transition: all 0.3s;
            font-family: 'Inter', sans-serif;
        }

        .search-input:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 0 4px rgba(201, 169, 98, 0.1);
        }

        .search-examples {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
            padding: 20px;
            background: #f9fafb;
            border-radius: 8px;
        }

        .example-label {
            font-size: 13px;
            color: #6b7280;
            font-weight: 600;
        }

        .example-tag {
            padding: 8px 16px;
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 20px;
            font-size: 13px;
            color: var(--text-dark);
            cursor: pointer;
            transition: all 0.3s;
        }

        .example-tag:hover {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
            transform: translateY(-2px);
        }

        .search-tabs {
            display: flex;
            gap: 10px;
            margin-bottom: 25px;
        }

        .search-tab {
            padding: 12px 30px;
            border: none;
            background: #f3f4f6;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 13px;
        }

        .search-tab.active {
            background: var(--primary-color);
            color: white;
        }

        .search-content {
            display: none;
        }

        .search-content.active {
            display: block;
        }

        .search-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 15px;
        }

        .form-group {
            position: relative;
        }

        .form-group label {
            display: block;
            font-size: 11px;
            font-weight: 600;
            color: var(--text-gray);
            margin-bottom: 6px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 12px 14px;
            border: 2px solid var(--border-color);
            border-radius: 6px;
            font-size: 14px;
            transition: all 0.3s ease;
            background: white;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(26, 77, 143, 0.1);
        }

        .search-actions {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .btn-search {
            flex: 1;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            color: white;
            border: none;
            padding: 14px 24px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-search:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(26, 77, 143, 0.3);
        }

        .btn-advanced {
            background: transparent;
            border: 2px solid var(--border-color);
            padding: 12px 18px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 500;
            font-size: 13px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .btn-advanced:hover {
            border-color: var(--primary-color);
            color: var(--primary-color);
        }

        .advanced-filters {
            display: none;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
        }

        .advanced-filters .search-grid {
            grid-template-columns: repeat(4, 1fr);
        }

        @media (max-width: 768px) {
            .search-grid {
                grid-template-columns: 1fr;
            }

            .advanced-filters .search-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ========================================
           RESPONSIVE HEADER STYLES
           ======================================== */

        /* Tablet ve altı için (992px) */
        @media (max-width: 992px) {
            .nav-left,
            .nav-center .nav-links {
                display: none;
            }

            .nav-center {
                flex: 1;
            }

            .mobile-menu-btn {
                display: block;
            }

            .btn-inquire {
                display: none;
            }
        }

        /* Mobil için (768px) */
        @media (max-width: 768px) {
            .nav-content {
                padding: 15px 20px;
            }

            .logo-text {
                font-size: 22px;
                letter-spacing: 3px;
            }

            .logo-subtitle {
                font-size: 9px;
                letter-spacing: 1px;
            }

            .logo-icon {
                width: 35px;
                height: 35px;
            }

            .logo-icon img {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }
        }

        /* Küçük mobil için (480px) */
        @media (max-width: 480px) {
            .nav-content {
                padding: 12px 15px;
            }

            .logo-text {
                font-size: 18px;
                letter-spacing: 2px;
            }

            .logo-subtitle {
                font-size: 8px;
            }

            .logo-icon {
                width: 30px;
                height: 30px;
            }

            .mobile-menu {
                width: 280px;
            }

            .mobile-menu-logo {
                font-size: 18px;
                letter-spacing: 2px;
            }

            .mobile-menu-links a {
                font-size: 13px;
                padding: 14px 20px;
            }
        }
