/* Essential Genie Yacht Club Stylesheet */

/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1e3a5f;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

p {
    margin-bottom: 1rem;
    color: #555;
}

a {
    color: #2c5aa0;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #1e3a5f;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

/* ===== LAYOUT UTILITIES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.section-header i {
    font-size: 3rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
    display: block;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: #2c5aa0;
    color: white;
}

.btn-primary:hover {
    background-color: #1e3a5f;
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background-color: #545b62;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: #2c5aa0;
    border: 2px solid #2c5aa0;
}

.btn-outline:hover {
    background-color: #2c5aa0;
    color: white;
}

.btn-link {
    background: none;
    border: none;
    color: #2c5aa0;
    font-weight: 600;
    padding: 0;
}

.btn-link:hover {
    color: #1e3a5f;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a5f;
}

.logo i {
    margin-right: 0.5rem;
    color: #2c5aa0;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0 1rem;
}

.nav-menu a {
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2c5aa0;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #2c5aa0;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #1e3a5f;
    margin: 3px 0;
    transition: 0.3s;
}

/* ===== HERO BANNER ===== */
.hero-banner {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5aa0 50%, #4a90b8 100%);
    z-index: 1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.1) 2px, transparent 2px),
        radial-gradient(circle at 40% 20%, rgba(255,255,255,0.08) 1px, transparent 1px),
        radial-gradient(circle at 60% 80%, rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.05) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(255,255,255,0.05) 50%, transparent 60%);
    background-size: 
        100px 100px,
        120px 120px,
        60px 60px,
        80px 80px,
        200px 200px,
        200px 200px;
    background-position:
        0 0,
        50px 50px,
        25px 25px,
        75px 75px,
        0 0,
        100px 100px;
    animation: patternFloat 20s ease-in-out infinite;
    opacity: 0.7;
}

@keyframes patternFloat {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-20px) translateX(10px); }
    50% { transform: translateY(0px) translateX(-10px); }
    75% { transform: translateY(20px) translateX(5px); }
}

.hero-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 1rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-content .btn {
    margin: 0 0.5rem;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid transparent;
}

.hero-content .btn-primary {
    background: linear-gradient(45deg, #dc3545, #e74c3c);
    color: white;
    border-color: #dc3545;
}

.hero-content .btn-primary:hover {
    background: linear-gradient(45deg, #c82333, #dc3545);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.hero-content .btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: white;
    backdrop-filter: blur(10px);
}

.hero-content .btn-outline:hover {
    background: white;
    color: #1e3a5f;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* ===== MAIN CONTENT SECTIONS ===== */
.company-info,
.services,
.testimonials,
.newsletter,
.location {
    padding: 5rem 0;
}

.company-info {
    background-color: white;
}

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

.info-card,
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

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

.info-card i,
.service-card .service-icon {
    font-size: 3rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
    display: block;
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
}

.services {
    background-color: #f8f9fa;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background-color: white;
}

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

.testimonial-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #2c5aa0;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    color: #333;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author i {
    font-size: 2rem;
    color: #2c5aa0;
    margin-right: 1rem;
}

.testimonial-author h4 {
    margin-bottom: 0.25rem;
    color: #1e3a5f;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* ===== NEWSLETTER ===== */
.newsletter {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5aa0 100%);
    color: white;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.newsletter-text i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.newsletter-text h2,
.newsletter-text p {
    color: white;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    min-width: 400px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* ===== LOCATION ===== */
.location {
    background-color: white;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

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

.contact-item i {
    font-size: 1.5rem;
    color: #2c5aa0;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.location-map {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.location-map i {
    font-size: 4rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
    display: block;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #1e3a5f;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-description {
    color: white !important;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2c5aa0;
    color: white !important;
}

.footer-bottom p {
    color: white !important;
    margin: 0;
}

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

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #2c5aa0;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #4a90b8;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2c5aa0;
    color: #ccc;
}

/* ===== PAGE HEADERS ===== */
.page-header {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5aa0 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.page-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ===== ABOUT PAGE STYLES ===== */
.about-content {
    padding: 5rem 0;
    background-color: white;
}

.about-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.stat-item i {
    font-size: 2rem;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-item h3 {
    font-size: 2rem;
    margin-bottom: 0.25rem;
    color: #1e3a5f;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.mission,
.vision {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.mission i,
.vision i {
    font-size: 2rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
    display: block;
}

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

.value-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.value-card i {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
    display: block;
}

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

.team-member {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.team-member i {
    font-size: 3rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
    display: block;
}

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

.membership-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.membership-benefits i {
    color: #28a745;
    margin-right: 0.5rem;
}

/* ===== SERVICES PAGE STYLES ===== */
.services-detail {
    padding: 5rem 0;
    background-color: white;
}

.service-section {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #eee;
}

.service-section:last-child {
    border-bottom: none;
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.service-large-icon {
    width: 80px;
    height: 80px;
    margin-right: 2rem;
}

.yacht-types,
.course-grid,
.marina-services,
.certification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.yacht-type,
.course-item,
.marina-service,
.cert-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2c5aa0;
}

.yacht-type i,
.course-item i,
.marina-service i,
.cert-item i {
    font-size: 1.5rem;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
    display: block;
}

.yacht-type span,
.course-item span,
.cert-item span {
    display: block;
    font-weight: 600;
    color: #2c5aa0;
    margin-top: 0.5rem;
}

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

.additional-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.additional-item i {
    font-size: 2rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
    display: block;
}

.services-cta {
    text-align: center;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 10px;
    margin-top: 3rem;
}

.services-cta .btn-secondary {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    font-weight: 700;
    padding: 15px 30px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    border: 2px solid #28a745;
    margin-left: 1rem;
}

.services-cta .btn-secondary:hover {
    background: linear-gradient(45deg, #218838, #1e7e34);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

/* ===== BLOG STYLES ===== */
.blog-content {
    padding: 5rem 0;
    background-color: white;
}

.blog-content .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem 0;
}

.blog-icon {
    font-size: 2rem;
    color: #2c5aa0;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.category {
    background: #2c5aa0;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.blog-content-area {
    padding: 0 1.5rem 1.5rem;
}

.blog-content-area h2 {
    margin-bottom: 1rem;
}

.blog-content-area h2 a {
    color: #1e3a5f;
    text-decoration: none;
}

.blog-content-area h2 a:hover {
    color: #2c5aa0;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.author {
    font-size: 0.9rem;
    color: #666;
}

.read-more {
    color: #2c5aa0;
    font-weight: 600;
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.sidebar-widget h3 {
    margin-bottom: 1rem;
    color: #1e3a5f;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 0.75rem;
}

.category-list a {
    display: flex;
    align-items: center;
    color: #555;
    transition: color 0.3s ease;
}

.category-list a:hover {
    color: #2c5aa0;
}

.category-list i {
    margin-right: 0.5rem;
    color: #2c5aa0;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: #e9ecef;
    color: #495057;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #2c5aa0;
    color: white;
}

.newsletter-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.newsletter-sidebar input {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-content {
    padding: 5rem 0;
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
    margin-top: 0.2rem;
}

.contact-info-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.office-hours,
.emergency-contact {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
}

.office-hours h3,
.emergency-contact h3 {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.office-hours i,
.emergency-contact i {
    margin-right: 0.5rem;
    color: #2c5aa0;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
}

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

.emergency-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: #dc3545;
    margin: 0.5rem 0;
}

.additional-contact {
    margin-bottom: 4rem;
}

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

.contact-option {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.contact-option i {
    font-size: 2rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
    display: block;
}

.location-map-section {
    margin-bottom: 4rem;
}

.map-container {
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
}

.map-placeholder {
    text-align: center;
    padding: 3rem;
}

.map-placeholder i {
    font-size: 4rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
    display: block;
}

.map-directions {
    text-align: left;
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
}

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

.faq-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.faq-item h4 {
    margin-bottom: 0.75rem;
    color: #1e3a5f;
}

/* ===== THANK YOU PAGE STYLES ===== */
.thank-you-page {
    padding: 8rem 0 5rem;
    background-color: white;
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon i {
    font-size: 5rem;
    color: #28a745;
    margin-bottom: 2rem;
    display: block;
}

.thank-you-content h1 {
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.thank-you-message {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: #555;
}

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

.detail-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.detail-item i {
    font-size: 2rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
    display: block;
}

.thank-you-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.additional-info {
    margin-bottom: 4rem;
}

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

.info-card {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.info-card i {
    font-size: 2rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
    display: block;
}

.info-card a {
    color: #2c5aa0;
    font-weight: 600;
}

.social-follow {
    margin-bottom: 3rem;
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: #f8f9fa;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #2c5aa0;
    color: white;
    transform: translateY(-2px);
}

.social-link i {
    margin-right: 0.5rem;
}

.newsletter-signup {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 10px;
}

.newsletter-form-thanks {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form-thanks input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* ===== LEGAL PAGES STYLES ===== */
.legal-content {
    padding: 5rem 0;
    background-color: white;
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-meta {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    border-left: 4px solid #2c5aa0;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: #1e3a5f;
    border-bottom: 2px solid #2c5aa0;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.legal-section h3 {
    color: #2c5aa0;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin-left: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.75rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

/* Cookie Policy Specific */
.cookie-table {
    overflow-x: auto;
    margin: 1rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.cookie-table th {
    background: #2c5aa0;
    color: white;
    font-weight: 600;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

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

.purpose-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.purpose-item i {
    font-size: 2rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
    display: block;
}

.cookie-settings-btn {
    text-align: center;
    margin: 2rem 0;
}

/* ===== ARTICLE PAGES STYLES ===== */
.article-page {
    padding: 8rem 0 0;
    background-color: white;
}

.article-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.article-meta {
    margin-bottom: 2rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: #2c5aa0;
    font-weight: 600;
    margin-bottom: 1rem;
}

.back-link i {
    margin-right: 0.5rem;
}

.article-info {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    color: #666;
}

.article-header h1 {
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.article-lead {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.article-image {
    text-align: center;
    margin-bottom: 2rem;
}

.article-image i {
    font-size: 4rem;
    color: #2c5aa0;
    opacity: 0.7;
}

.article-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    display: flex;
    align-items: center;
    color: #1e3a5f;
    border-bottom: 2px solid #2c5aa0;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.content-section h2 i {
    margin-right: 0.75rem;
    color: #2c5aa0;
}

.content-section h3 {
    color: #2c5aa0;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-section h4 {
    color: #1e3a5f;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

/* Article Special Boxes */
.tip-box,
.warning-box,
.technique-box,
.performance-tip,
.wave-technique,
.analysis-tip,
.destination-highlight,
.route-tip,
.safety-reminder,
.maintenance-checklist,
.checklist-box,
.cta-box,
.practice-schedule,
.planning-checklist {
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid;
}

.tip-box,
.technique-box,
.performance-tip,
.analysis-tip,
.destination-highlight,
.route-tip {
    background: #e8f4f8;
    border-left-color: #2c5aa0;
}

.warning-box,
.safety-reminder {
    background: #fff3cd;
    border-left-color: #ffc107;
}

.maintenance-checklist,
.checklist-box,
.planning-checklist {
    background: #f8f9fa;
    border-left-color: #28a745;
}

.cta-box {
    background: #f8f9fa;
    border-left-color: #2c5aa0;
    text-align: center;
}

.practice-schedule {
    background: #e7f3ff;
    border-left-color: #007bff;
}

.wave-technique {
    background: #f0f8f0;
    border-left-color: #17a2b8;
}

.tip-box h4,
.warning-box h4,
.technique-box h4,
.performance-tip h4,
.wave-technique h4,
.analysis-tip h4,
.destination-highlight h4,
.route-tip h4,
.safety-reminder h4,
.maintenance-checklist h4,
.checklist-box h4,
.cta-box h4,
.practice-schedule h4,
.planning-checklist h4 {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #1e3a5f;
}

.tip-box i,
.warning-box i,
.technique-box i,
.performance-tip i,
.wave-technique i,
.analysis-tip i,
.destination-highlight i,
.route-tip i,
.safety-reminder i,
.maintenance-checklist i,
.checklist-box i,
.practice-schedule i,
.planning-checklist i {
    margin-right: 0.5rem;
}

/* Checklists */
.checklist {
    list-style: none;
    padding: 0;
}

.checklist li {
    margin-bottom: 0.5rem;
    font-family: monospace;
}

/* Maintenance Schedule Table */
.maintenance-schedule table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.maintenance-schedule th,
.maintenance-schedule td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.maintenance-schedule th {
    background: #2c5aa0;
    color: white;
    font-weight: 600;
}

.maintenance-schedule tr:last-child td {
    border-bottom: none;
}

/* Article Footer */
.article-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
}

.article-tags {
    margin-bottom: 2rem;
}

.article-tags .tag {
    background: #e9ecef;
    color: #495057;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.article-share {
    margin-bottom: 2rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.share-btn.facebook { background: #3b5998; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.email { background: #6c757d; }

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.author-bio {
    display: flex;
    align-items: flex-start;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.author-bio i {
    font-size: 3rem;
    color: #2c5aa0;
    margin-right: 1.5rem;
    margin-top: 0.5rem;
}

.author-info h4 {
    margin-bottom: 0.5rem;
    color: #1e3a5f;
}

.related-articles {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.related-articles h4 {
    color: #1e3a5f;
    margin-bottom: 1rem;
}

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

.related-articles li {
    margin-bottom: 0.75rem;
}

.related-articles a {
    color: #2c5aa0;
    font-weight: 600;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 58, 95, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal h3 {
    margin-bottom: 1.5rem;
    color: #1e3a5f;
}

.cookie-option {
    margin-bottom: 1.5rem;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cookie-option input[type="checkbox"] {
    margin-right: 0.5rem;
    margin-top: 0.2rem;
}

.cookie-option p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transition: top 0.3s ease;
    }

    .nav-menu.active {
        top: 100%;
    }

    .nav-menu li {
        margin: 0;
        border-bottom: 1px solid #eee;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
    }

    .hamburger {
        display: flex;
    }

    /* Hero */
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    /* Grids */
    .info-grid,
    .services-grid,
    .testimonials-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .about-intro {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .location-content {
        grid-template-columns: 1fr;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        min-width: auto;
        flex-direction: column;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-options {
        grid-template-columns: 1fr;
    }

    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }

    .social-links-large {
        flex-direction: column;
        align-items: center;
    }

    /* Blog */
    .blog-content .container {
        grid-template-columns: 1fr;
    }

    .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .blog-footer {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    /* Articles */
    .article-header h1 {
        font-size: 2rem;
    }

    .article-lead {
        font-size: 1.1rem;
    }

    .article-info {
        flex-direction: column;
        gap: 0.5rem;
    }

    .share-buttons {
        justify-content: center;
    }

    .author-bio {
        flex-direction: column;
        text-align: center;
    }

    .author-bio i {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    /* Services */
    .service-header {
        flex-direction: column;
        text-align: center;
    }

    .service-large-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .yacht-types,
    .course-grid,
    .marina-services,
    .certification-grid {
        grid-template-columns: 1fr;
    }

    /* Cookie Banner */
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-modal-buttons {
        flex-direction: column;
    }

    /* Page Headers */
    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    /* Tables */
    .cookie-table,
    .maintenance-schedule {
        font-size: 0.85rem;
    }

    .cookie-table th,
    .cookie-table td,
    .maintenance-schedule th,
    .maintenance-schedule td {
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 1rem;
    }

    .newsletter-form-thanks {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .purpose-grid,
    .additional-grid,
    .info-cards,
    .detail-item {
        grid-template-columns: 1fr;
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

/* ===== PRINT STYLES ===== */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal,
    .btn,
    .social-links,
    .share-buttons {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .page-header,
    .hero-banner {
        background: white !important;
        color: black !important;
    }

    .page-header h1,
    .hero-content h1 {
        color: black !important;
    }

    a {
        color: black !important;
        text-decoration: underline !important;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #2c5aa0;
    outline-offset: 2px;
}

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
