/* Yacht Detail Pages Specific Styles */
.yacht-hero {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--deep-blue) 100%);
    background-image: url('../images/yacht1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
}
.yacht-hero .hero-overlay{
    z-index: 1;
}

.yacht-hero .container{
    z-index: 4;
}
.majesty-hero {
    background-image: url('../images/yacht2.jpg');
}



.horizon-hero {
    background-image: url('../images/yacht3.jpg');
}

.min-vh-75 {
    min-height: 75vh;
}

.yacht-quick-specs .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

.pricing-hero {
    margin: 2rem 0;
}

.price-large {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
}

.breadcrumb {
    background: none;
    padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: var(--gold);
}

/* Gallery Styles */
.main-gallery-image img {
    height: 400px;
    object-fit: cover;
    width: 100%;
}

.gallery-thumb {
    height: 120px;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-thumb:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Specification Cards */
.spec-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    border-left: 4px solid var(--gold);
}

.spec-card h4 {
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

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

.spec-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
}

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

.spec-list li strong {
    color: var(--navy-blue);
    font-weight: 600;
}

/* Amenity Categories */
.amenity-category {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.amenity-category h4 {
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
}

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

.amenity-list li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.amenity-list li::before {
    content: "✓";
    color: var(--gold);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.5rem;
}

/* Corporate Features */
.corporate-feature {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    border-top: 4px solid var(--gold);
}

.corporate-feature h4 {
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
}

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

.feature-list li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: "•";
    color: var(--gold);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.5rem;
}

/* Deck Layout Cards */
.deck-layout-card {
    background: linear-gradient(135deg, var(--navy-blue), var(--deep-blue));
    color: var(--white);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.deck-layout-card h4 {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

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

.deck-features li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 1.5rem;
}

.deck-features li::before {
    content: "⚓";
    color: var(--gold);
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.deck-features strong {
    color: var(--white);
    font-weight: 600;
}

/* Amenity Highlights for Navy Background */
.amenity-highlight {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.amenity-highlight h4 {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

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

.amenity-list-white li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 1.5rem;
}

.amenity-list-white li::before {
    content: "✦";
    color: var(--gold);
    position: absolute;
    left: 0;
    top: 0.5rem;
}

/* Pricing Cards for Yacht Pages */
.pricing-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.pricing-card.featured {
    border: 2px solid var(--gold);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy-blue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
}

.pricing-card h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    text-align: center;
}

.price-display {
    text-align: center;
    margin-bottom: 2rem;
}

.price-display .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.price-display .duration {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

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

.pricing-features li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li::before {
    content: "✓";
    color: var(--gold);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.5rem;
}

/* Package Cards for Horizon */
.package-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    border-top: 4px solid var(--gold);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.package-card.featured {
    border-top: 4px solid var(--navy-blue);
    transform: scale(1.05);
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
}

.package-header h4 {
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.package-price .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.package-price .duration {
    color: var(--dark-gray);
    font-size: 1rem;
}

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

.package-features li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.package-features li::before {
    content: "✓";
    color: var(--gold);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.package-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gold);
    color: var(--navy-blue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
}

/* Testimonial Cards for Light Background */
.testimonial-card-light {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    border-left: 4px solid var(--gold);
}

.testimonial-card-light .testimonial-author {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.testimonial-card-light .testimonial-author strong {
    color: var(--navy-blue);
}

.stars {
    text-align: left;
}

.stars i {
    font-size: 1rem;
}

/* CTA Buttons */
.cta-buttons {
    margin: 2rem 0;
}

.btn-navy {
    background-color: var(--navy-blue);
    border-color: var(--navy-blue);
    color: var(--white);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-navy:hover {
    background-color: var(--deep-blue);
    border-color: var(--deep-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* Background Colors */
.bg-gold {
    background-color: var(--gold) !important;
}

/* Mobile Responsiveness for Yacht Pages */
@media (max-width: 768px) {
    .yacht-hero {
        min-height: 60vh;
        padding-top: 100px;
    }
    
    .price-large {
        font-size: 2rem;
    }
    
    .yacht-quick-specs {
        text-align: center;
    }
    
    .yacht-quick-specs .badge {
        display: block;
        margin: 0.5rem auto;
        width: fit-content;
    }
    
    .main-gallery-image img {
        height: 250px;
    }
    
    .gallery-thumb {
        height: 80px;
    }
    
    .spec-card,
    .amenity-category,
    .corporate-feature,
    .deck-layout-card,
    .package-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .pricing-card {
        margin-bottom: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}:root {
    --navy-blue: #1e3a5f;
    --deep-blue: #2c5aa0;
    --gold: #d4af37;
    --light-gold: #e6c757;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #6c757d;
    --black: #000000;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

/* Navigation */
.navbar {
    background-color: var(--navy-blue) !important;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}
.navbar-brand img{
    max-width: 250px;
}
.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.btn-detail{
    margin-left: 0!important;
    margin-top: 20px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gold) !important;
}

.btn-gold {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: var(--light-gold);
    border-color: var(--light-gold);
    color: var(--navy-blue);
    transform: translateY(-2px);
}

.btn-outline-light {
    border-radius: 50px;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--deep-blue) 100%);
    background-image: url('../images/og-image.jpg');
    background-size: cover;
    background-position: top;
    background-attachment: fixed;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.8) 0%, rgba(44, 90, 160, 0.6) 100%);
    z-index: 1;
}

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

.hero-buttons {
    margin-top: 2rem;
}

.hero-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 3rem;
}

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

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Section Styling */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--navy-blue);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--gold);
}

.text-gold {
    color: var(--gold) !important;
}

.bg-navy {
    background-color: var(--navy-blue) !important;
}

/* Yacht Cards */
.yacht-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.yacht-image {
    height: 250px;
    overflow: hidden;
}

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

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

.yacht-info {
    padding: 1.5rem;
}

.yacht-info h4 {
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.yacht-specs {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.yacht-specs i {
    color: var(--gold);
    margin-right: 0.5rem;
}

.pricing {
    margin-top: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

/* Feature Cards */
.feature-card {
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h4 {
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

/* Experience Cards */
.experience-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.experience-image {
    height: 300px;
    overflow: hidden;
}

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

.experience-content {
    padding: 1.5rem;
}

.experience-content h5 {
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.rating {
    margin-top: 1rem;
}

/* Testimonial Cards */
.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author h6 {
    color: var(--white);
    margin-bottom: 0.25rem;
}

/* Newsletter Section */
.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .input-group {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.newsletter-form .form-control {
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    border-color: var(--gold);
}

.newsletter-form .btn {
    border: none;
    padding: 1rem 2rem;
}

/* Footer */
footer {
    background-color: #1a1a1a !important;
}

footer h5, footer h6 {
    color: var(--white);
    margin-bottom: 1rem;
}

footer .text-muted {
    color: #aaa !important;
}
footer a{
    text-decoration: none;
}
footer a:hover {
    color: var(--gold) !important;
    text-decoration: none;
}



.social-links a {
    display: inline-block;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.contact-info p {
    margin-bottom: 0.5rem;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 1rem 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent p {
    margin-bottom: 0;
}

.cookie-consent .btn-sm {
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

/* Form Styling */
.form-control {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
}

/* Contact Form Specific */
.contact-form {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-card {
    background: var(--navy-blue);
    color: var(--white);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
}

.contact-info-card h4 {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

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

.contact-info-item i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-right: 1rem;
    width: 20px;
}

/* Map Container */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-size: 0;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* About Page Specific */
.team-member {
    text-align: center;
    margin-bottom: 2rem;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid var(--gold);
}

.team-member h5 {
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
}

.team-member .position {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Services Page Specific */
.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    border-left: 4px solid var(--gold);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card h4 {
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.service-card .price {
    color: var(--gold);
    font-size: 1.25rem;
    font-weight: 700;
}

/* Legal Pages Specific */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-content h2 {
    color: var(--navy-blue);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    color: var(--deep-blue);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--deep-blue) 100%);
    padding: 6rem 0 3rem;
    margin-top: 76px;
}

/* Error Styling */
.form-control.error {
    border-color: #dc3545;
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Success Styling */
.success-message {
    color: #28a745;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    .navbar .btn-gold{
    margin-left: 0!important;
    margin-top: 20px!important;
}
    
    .cookie-consent .col-lg-8,
    .cookie-consent .col-lg-4 {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .cookie-consent .col-lg-4 {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }

    .hero{
        padding-top: 120px;
        padding-bottom: 60px;
    }
    
    .hero .lead {
        font-size: 1rem;
    }
    
    .yacht-info,
    .experience-content,
    .feature-card {
        padding: 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}

/* Utility Classes */
.min-vh-100 {
    min-height: 100vh;
}

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.bg-gradient {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--deep-blue) 100%);
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}