/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@400;600&family=Khand:wght@400;600;700&family=Signika+Negative:wght@300;400;500&display=swap');

/* CSS Variables */
:root {
    --cream: #F3F3E0;
    --deep-blue: #27548A;
    --navy-teal: #183B4E;
    --gold: #DDA853;
    --white: #ffffff;
    --dark: #2c3e50;
    --light-gray: #f8f9fa;
    --shadow: rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Signika Negative', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--cream);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Khand', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}
.navbar-brand img{
    max-width: 200px;
    width: 200px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}
/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, var(--deep-blue), var(--navy-teal));
    border: none;
    font-family: 'Source Code Pro', monospace;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 25px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(39, 84, 138, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(39, 84, 138, 0.3);
    background: linear-gradient(135deg, var(--navy-teal), var(--deep-blue));
}

.btn-outline-gold {
    color: var(--gold);
    border: 2px solid var(--gold);
    font-family: 'Source Code Pro', monospace;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 25px;
    background: transparent;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(221, 168, 83, 0.3);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.875rem;
}

/* Navigation Styles */
.navbar {
    background: rgba(243, 243, 224, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(39, 84, 138, 0.1);
    transition: var(--transition);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background: rgba(243, 243, 224, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.navbar-brand {
    font-family: 'Khand', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy-teal) !important;
    text-decoration: none;
    transition: var(--transition);
}

.navbar-brand:hover {
    color: var(--gold) !important;
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    font-family: 'Source Code Pro', monospace;
    color: var(--deep-blue) !important;
    font-weight: 500;
    margin: 0 15px;
    transition: var(--transition);
    position: relative;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link:hover {
    color: var(--gold) !important;
    transform: translateY(-1px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2839, 84, 138, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(24, 59, 78, 0.4), rgba(39, 84, 138, 0.4)), 
                url('images/banner.jpg') center/cover;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.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='%23DDA853' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateX(0); }
    100% { transform: translateX(-60px); }
}

.hero-content {
    color: var(--white);
    z-index: 2;
    position: relative;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
    max-width: 600px;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.6s both;
}

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

/* Decorative Shapes */
.shape-decoration {
    position: absolute;
    z-index: 1;
}

.shape-1 {
    top: 10%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: rgba(221, 168, 83, 0.1);
    border-radius: 50%;
    animation: pulse 4s infinite;
}

.shape-2 {
    bottom: 20%;
    left: 5%;
    width: 150px;
    height: 150px;
    background: rgba(39, 84, 138, 0.1);
    transform: rotate(45deg);
    animation: rotate 10s infinite linear;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.1; 
    }
    50% { 
        transform: scale(1.2); 
        opacity: 0.2; 
    }
}

@keyframes rotate {
    from { transform: rotate(45deg); }
    to { transform: rotate(405deg); }
}

/* Section Styling */
.section-bg {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-opacity='0.03'%3E%3Cpolygon fill='%2327548A' points='50 0 60 40 100 50 60 60 50 100 40 60 0 50 40 40'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.section-content {
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3rem;
    color: var(--navy-teal);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--deep-blue);
    text-align: center;
    margin-bottom: 50px;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Feature Cards */
.feature-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--gold);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(221, 168, 83, 0.1), transparent);
    transition: var(--transition);
}

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

.feature-card:hover::before {
    left: 100%;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--deep-blue), var(--navy-teal));
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--gold), var(--deep-blue));
}

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

.feature-card p {
    color: var(--dark);
    opacity: 0.8;
    line-height: 1.6;
}

/* Yacht Spotlight */
.yacht-spotlight {
    background: var(--navy-teal);
    color: var(--white);
    position: relative;
}

.yacht-spotlight::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='%23DDA853' fill-opacity='0.05'%3E%3Cpath d='M20 20c0-11.046 8.954-20 20-20s20 8.954 20 20-8.954 20-20 20-20-8.954-20-20z'/%3E%3C/g%3E%3C/svg%3E");
}

.yacht-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    color: var(--dark);
}

.yacht-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.yacht-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.yacht-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1));
}

.yacht-price {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-family: 'Source Code Pro', monospace;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Interactive Map */
.map-container {
    height: 500px;
    background: var(--deep-blue);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--deep-blue), var(--navy-teal));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    font-family: 'Source Code Pro', monospace;
}
.map-placeholder img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.map-placeholder iframe{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.destination-marker {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 0 0 4px rgba(221, 168, 83, 0.3);
    animation: markerPulse 2s infinite;
}

.destination-marker:hover {
    transform: scale(1.5);
    box-shadow: 0 0 0 8px rgba(221, 168, 83, 0.5);
    animation-play-state: paused;
}

@keyframes markerPulse {
    0% {
        box-shadow: 0 0 0 4px rgba(221, 168, 83, 0.3);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(221, 168, 83, 0.1);
    }
    100% {
        box-shadow: 0 0 0 4px rgba(221, 168, 83, 0.3);
    }
}

.marker-vancouver { top: 74%; left: 21%; }
.marker-toronto { top: 93%; left: 60%; }
.marker-halifax { top: 66%; left: 80%; }
.marker-victoria { top: 74%; left: 18%; }

/* Client Stories / Testimonials */
.testimonial-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px var(--shadow);
    text-align: center;
    margin: 15px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.3;
    font-family: serif;
}

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

.client-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background-size: cover;
    background-position: center;
    border: 4px solid var(--gold);
    transition: var(--transition);
}

.testimonial-card:hover .client-avatar {
    transform: scale(1.1);
}

.testimonial-card blockquote {
    font-style: italic;
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark);
}

.testimonial-card cite {
    color: var(--deep-blue);
    font-weight: 600;
    font-style: normal;
}

/* Booking Section */
.booking-section {
    background: linear-gradient(135deg, var(--deep-blue), var(--navy-teal));
    color: var(--white);
    position: relative;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23DDA853' fill-opacity='0.03'%3E%3Ccircle cx='40' cy='40' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.booking-form {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    color: var(--dark);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.booking-form h4 {
    color: var(--navy-teal);
    margin-bottom: 30px;
    text-align: center;
}

.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 15px;
    font-family: 'Signika Negative', sans-serif;
    transition: var(--transition);
    background: var(--white);
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(221, 168, 83, 0.25);
    background: var(--white);
}

.form-label {
    font-weight: 500;
    color: var(--navy-teal);
    margin-bottom: 8px;
}

/* Safety Section */
.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.safety-item {
    text-align: center;
    padding: 20px;
    transition: var(--transition);
}

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

.safety-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition);
}

.safety-item:hover .safety-icon {
    transform: scale(1.1);
    background: var(--deep-blue);
}

.safety-item h5 {
    color: var(--navy-teal);
    margin-bottom: 10px;
}

.safety-item p {
    color: var(--dark);
    opacity: 0.8;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--navy-teal);
    color: var(--white);
    padding: 60px 0 30px;
    position: relative;
}

.footer::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='%23DDA853' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.footer h5 {
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer p {
    opacity: 0.9;
    line-height: 1.6;
}

.footer a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.9;
}

.footer a:hover {
    color: var(--gold);
    opacity: 1;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 8px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--deep-blue);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: var(--transition);
    color: var(--white);
}

.social-icons a:hover {
    background: var(--gold);
    transform: translateY(-3px);
    color: var(--white);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy-teal);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-banner p {
    margin: 0;
    opacity: 0.9;
}

/* Utility Classes */
.text-gold {
    color: var(--gold) !important;
}

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

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

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

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

.mb-0 {
    margin-bottom: 0 !important;
}

/* Page-specific styles */
.page-header {
    background: linear-gradient(135deg, var(--deep-blue), var(--navy-teal));
    color: var(--white);
    padding: 160px 0 60px;
    text-align: center;
    position: relative;
}

.page-header::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='%23DDA853' fill-opacity='0.05'%3E%3Ccircle cx='20' cy='20' r='2'/%3E%3C/g%3E%3C/svg%3E");
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Content sections */
.content-section {
    padding: 80px 0;
}

.content-section:nth-child(even) {
    background: var(--light-gray);
}

/* Form styling */
.form-group {
    margin-bottom: 20px;
}

.form-control:invalid {
    border-color: #dc3545;
}

.form-control:valid {
    border-color: var(--gold);
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .feature-card {
        margin-bottom: 30px;
    }
    
    .safety-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
}

.notification button{
    outline: none;
    background: none;
    color: #fff;
    font-weight: bold;
    border: none;
}

@media (max-width: 768px) {
    .hero {
        height: 80vh;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        margin: 10px auto;
        width: 100%;
        max-width: 100%;
    }
    
    .navbar-nav {
        text-align: center;
        padding-top: 20px;
    }
    
    .navbar-nav .nav-link {
        margin: 5px 0;
    }
    
    .booking-form {
        padding: 30px 20px;
    }
    
    .cookie-banner .col-md-4 {
        text-align: center;
        margin-top: 15px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header {
        padding: 140px 0 40px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card,
    .testimonial-card {
        margin: 10px 0;
    }
    
    .yacht-image {
        height: 200px;
    }
    
    .booking-form {
        padding: 20px 15px;
    }
    
    .safety-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .map-container{
        height: 310px;
    }
    .map-placeholder img{
        object-fit: cover;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero,
    .cookie-banner,
    .social-icons {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section-bg {
        background: white;
    }
}
    