/*
Theme Name: Cruise Template
Theme URI: https://deckone.nl
Author: DeckOne
Description: Een professioneel cruise website thema met Captain Cruise integratie en eenvoudige aanpassingen voor kleur, logo en bedrijfsnaam.
Version: 6.8
License: GNU General Public License v2 or later
Text Domain: cruise-template
*/

/* ==========================================================================
   CSS VARIABLES - Worden overschreven door Customizer
   ========================================================================== */
:root {
    --primary-color: #e63946;
    --primary-dark: #c1121f;
    --secondary-color: #1a1a2e;
    --secondary-dark: #0f0f1a;
    --text-color: #333333;
    --text-light: #666666;
    --background-light: #f8f9fa;
    --white: #ffffff;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.header-top {
    display: contents;
}

.header-menu-wrapper {
    display: contents;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.site-logo img {
    max-height: 50px;
    width: auto;
}

.site-logo .site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.site-logo .site-title a {
    color: var(--white);
    text-decoration: none;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.header-personal {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.header-personal a {
    color: #ffffff !important;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 25px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.header-personal a:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.8);
    color: #ffffff !important;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
    color: var(--white);
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.3s;
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item a::after {
    width: 100%;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--white);
}

.header-contact a {
    color: var(--white);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: var(--white);
    padding: 80px 40px 60px;
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.hero-section > * {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-section p {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

/* Captain Cruise Search Widget Container */
.cruise-search-widget {
    background: var(--white);
    border-radius: 12px;
    padding: 25px 30px;
    width: calc(100% - 40px);
    max-width: 100%;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

/* ==========================================================================
   CONTENT SECTIONS
   ========================================================================== */
.content-section {
    padding: 60px 20px;
}

.content-section.bg-light {
    background-color: var(--background-light);
}

.content-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

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

.section-header h2 {
    margin-bottom: 15px;
    font-size: 2rem;
    color: var(--secondary-color);
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-subtitle {
    color: var(--primary-color);
    font-size: 1rem;
    font-style: italic;
    display: block;
    margin-bottom: 10px;
}

/* ==========================================================================
   FILTER INTRO TEXT
   ========================================================================== */
.filter-intro {
    text-align: center;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1rem;
}

/* ==========================================================================
   CRUISE FILTERS (zoals foto4)
   ========================================================================== */
.cruise-filters {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    padding: 30px 0;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-group-centered {
    align-items: center;
}

.filter-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.filter-btn {
    padding: 10px 20px;
    border: 1px solid #d0d0d0;
    border-radius: 25px;
    background: var(--white);
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

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

.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* Responsive filters */
@media (max-width: 992px) {
    .cruise-filters {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .filter-group {
        align-items: center;
    }
    
    .filter-buttons {
        justify-content: center;
    }
}

/* ==========================================================================
   CRUISE CARD ROWS
   ========================================================================== */
.cruise-row {
    margin-bottom: 50px;
}

.cruise-row:last-child {
    margin-bottom: 0;
}

.row-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.cruise-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cruise-card-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.cruise-card-item.hidden {
    display: none;
}

.cruise-card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
}

.cruise-card-content {
    padding: 20px;
}

.cruise-card-rederij {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cruise-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.cruise-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    line-height: 1.3;
}

.cruise-card-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.cruise-card-link {
    font-size: 0.9rem;
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s;
}

.cruise-card-link:hover {
    color: var(--primary-dark);
}

/* Responsive cruise cards */
@media (max-width: 992px) {
    .cruise-cards-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .cruise-cards-row {
        grid-template-columns: 1fr;
    }
    
    .cruise-card-image {
        height: 180px;
    }
}

/* ==========================================================================
   POPULAR CRUISES GRID (legacy)
   ========================================================================== */
.popular-cruises-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.popular-cruise-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.popular-cruise-card.hidden {
    display: none;
}

.popular-cruise-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: var(--secondary-color);
    position: relative;
}

.popular-cruise-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}

.popular-cruise-content {
    padding: 20px 25px 25px;
}

.popular-cruise-subtitle {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.popular-cruise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.cruise-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag-zee {
    background: #e3f2fd;
    color: #1565c0;
}

.tag-rivier {
    background: #e8f5e9;
    color: #2e7d32;
}

.tag-expeditie {
    background: #fff3e0;
    color: #ef6c00;
}

.tag-zeilschepen {
    background: #fce4ec;
    color: #c2185b;
}

.tag-familie {
    background: #f3e5f5;
    color: #7b1fa2;
}

.tag-singles {
    background: #e0f2f1;
    color: #00695c;
}

.tag-all-inclusive {
    background: #fff8e1;
    color: #f57f17;
}

.tag-luxe {
    background: #212121;
    color: #ffd700;
}

.popular-cruise-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.popular-cruise-title a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.popular-cruise-title a:hover {
    color: var(--primary-color);
}

.popular-cruise-description {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.popular-cruise-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: underline;
    transition: color 0.3s;
}

.popular-cruise-link:hover {
    color: var(--primary-color);
}

/* Responsive filters and cruises */
@media (max-width: 992px) {
    .popular-cruises-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cruise-filters {
        justify-content: center;
        gap: 30px;
        padding: 25px 30px;
    }
}

@media (max-width: 768px) {
    .popular-cruises-grid {
        grid-template-columns: 1fr;
    }
    
    .cruise-filters {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 20px;
    }
    
    .filter-group {
        align-items: center;
        width: 100%;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* No results message */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.no-results p {
    font-size: 1.1rem;
}

/* ==========================================================================
   CRUISE CARDS (voor handmatige content)
   ========================================================================== */
.cruise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.cruise-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.cruise-card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: var(--secondary-color);
}

.cruise-card-body {
    padding: 20px;
}

.cruise-card-body h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.cruise-card-body p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.cruise-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.cruise-price span {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-light);
}

/* ==========================================================================
   REDERIJEN CAROUSEL
   ========================================================================== */
.rederijen-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    cursor: grab;
    width: 100%;
}

.rederijen-carousel-wrapper:active {
    cursor: grabbing;
}

.rederijen-carousel {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 30px;
    animation: scroll-left 60s linear infinite;
    width: max-content;
}

.rederijen-carousel:hover {
    animation-play-state: paused;
}

.rederijen-carousel-wrapper.dragging .rederijen-carousel {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Carousel specific card styling */
.rederijen-carousel .rederij-card {
    background: var(--white);
    border-radius: 12px;
    padding: 20px 25px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    width: 180px;
    min-height: 120px;
    flex-shrink: 0;
    flex-grow: 0;
}

.rederijen-carousel .rederij-card a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 100%;
    height: 100%;
}

.rederijen-carousel .rederij-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.rederijen-carousel .rederij-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    margin-bottom: 10px;
}

.rederijen-carousel .rederij-card img {
    max-height: 50px;
    max-width: 140px;
    width: auto;
    object-fit: contain;
}

.rederijen-carousel .rederij-card h4 {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-color);
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
}

/* Carousel navigation hint */
.carousel-hint {
    text-align: center;
    margin-top: 15px;
    font-size: 0.8rem;
    color: var(--text-light);
    opacity: 0.7;
}

.carousel-hint span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ==========================================================================
   REDERIJEN GRID (for rederijen overview page)
   ========================================================================== */
.rederijen-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.rederijen-grid .rederij-card {
    background: var(--white);
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.rederijen-grid .rederij-card a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 100%;
    height: 100%;
}

.rederijen-grid .rederij-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.rederijen-grid .rederij-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    margin-bottom: 10px;
}

.rederijen-grid .rederij-card img {
    max-height: 50px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
}

.rederijen-grid .rederij-card h4 {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-color);
    margin: 0;
    line-height: 1.3;
}

/* Responsive rederijen grid */
@media (max-width: 1200px) {
    .rederijen-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .rederijen-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .rederijen-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .rederijen-grid .rederij-card {
        padding: 15px 10px;
        min-height: 100px;
    }
    
    .rederijen-grid .rederij-logo {
        height: 40px;
    }
    
    .rederijen-grid .rederij-card img {
        max-height: 40px;
    }
    
    .rederijen-grid .rederij-card h4 {
        font-size: 0.75rem;
    }
    
    .rederijen-carousel .rederij-card {
        min-width: 150px;
        width: 150px;
    }
}

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

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

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

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

.btn-secondary:hover {
    background: var(--secondary-dark);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

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

/* ==========================================================================
   CAPTAIN CRUISE WIDGET CONTAINERS
   ========================================================================== */
.captain-cruise-container {
    min-height: 400px;
}

/* Styling voor Captain Cruise elementen (indien mogelijk te overschrijven) */
.captain-cruise-container .cc-button,
.captain-cruise-container button[class*="cc-"] {
    background-color: var(--primary-color) !important;
}

.captain-cruise-container .cc-button:hover,
.captain-cruise-container button[class*="cc-"]:hover {
    background-color: var(--primary-dark) !important;
}

/* ==========================================================================
   FOOTER - Met curve bovenaan voor vloeiende overgang
   ========================================================================== */
.site-footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 70px 20px 5px;
    position: relative;
}

/* Curve bovenaan de footer */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: inherit;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.8;
    display: block;
    margin-bottom: 5px;
}

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

.footer-section.about p {
    margin-bottom: 15px;
}

/* Footer Icons Bar - Horizontal at bottom */
.footer-icons-bar {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 40px;
    margin-top: 20px;
}

.footer-icons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual icon item - same style for all */
.footer-icon-item {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 0;
}

/* Icon circle - uses primary color */
.footer-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

/* Icon label text */
.footer-icon-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    transition: color 0.3s ease;
}

.footer-icon-item:hover .footer-icon-label {
    color: white;
}

/* Footer Contact Section with icons */
.footer-contact-item {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.footer-contact-item:hover {
    color: white;
}

.footer-contact-icon {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    width: 20px;
    height: 20px;
    color: rgba(255,255,255,0.5);
    flex-shrink: 0;
}

.footer-contact-icon svg {
    display: block;
    width: 18px;
    height: 18px;
}

.footer-contact-item > span:last-child {
    display: inline !important;
    flex: 1;
}

.footer-contact-item:hover .footer-contact-icon {
    color: var(--primary-color);
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .footer-icons-bar {
        padding: 20px;
    }
    
    .footer-icons-container {
        gap: 15px 30px;
    }
    
    .footer-icon-circle {
        width: 20px;
        height: 20px;
    }
    
    .footer-icon-circle svg {
        width: 16px;
        height: 16px;
    }
    
    .footer-icon-label {
        font-size: 0.8rem;
    }
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 15px 20px 5px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom-main {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 6px;
}

.footer-bottom-powered {
    font-size: 0.55rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.3px;
}

/* Trust Badges (ANVR/SGR) */
.footer-trust-badges {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 15px;
    margin-top: 20px;
    align-items: center;
}

.trust-badge {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.85;
    flex-shrink: 0;
}

.trust-badge:hover {
    transform: scale(1.05);
    opacity: 1;
}

.trust-badge img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
}

/* Legal links under trust badges */
.footer-legal-links {
    margin-top: 12px;
    font-size: 0.8rem;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0;
}

.footer-legal-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-legal-links a:hover {
    color: rgba(255,255,255,0.8);
}

.footer-legal-links .footer-link-separator {
    color: rgba(255,255,255,0.3);
    margin: 0 8px;
    display: inline;
}

/* ==========================================================================
   PAGE TEMPLATES
   ========================================================================== */

/* ==========================================================================
   GRADIENT HERO - Standaard header voor alle pagina's (behalve homepage)
   Vloeiende overgang van primary (rood) naar secondary (blauw)
   Met zachte curve aan onderkant
   ========================================================================== */
.gradient-hero {
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 20px 80px;
    text-align: center;
    color: var(--white);
    position: relative;
}

/* Zachte curve aan onderkant - met overlap om kleurverschil te voorkomen */
.gradient-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: -5%;
    width: 110%;
    height: 50px;
    background: var(--white);
    border-radius: 100% 100% 0 0;
}

.gradient-hero h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.gradient-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
}

/* Kleinere variant voor minder prominente headers */
.gradient-hero.compact {
    padding: 50px 20px 60px;
}

.gradient-hero.compact h1 {
    font-size: 2.2rem;
}

/* Page Header - Ook met gradient en curve */
.page-header {
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 60px 20px 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: -5%;
    width: 110%;
    height: 40px;
    background: var(--white);
    border-radius: 100% 100% 0 0;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-top: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.page-content {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-content.narrow {
    max-width: 800px;
}

/* ==========================================================================
   DESTINATION PAGE HERO - Gradient Style met curve
   ========================================================================== */
.dest-hero {
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 20px 80px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.dest-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: -5%;
    width: 110%;
    height: 50px;
    background: var(--white);
    border-radius: 100% 100% 0 0;
}

.dest-hero-content {
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.dest-hero-content h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    color: var(--white);
}

.dest-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    color: var(--white);
}

/* ==========================================================================
   INFO PAGE HERO - Gradient Style met curve (zeecruises, riviercruises)
   ========================================================================== */
.info-hero {
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 20px 80px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.info-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: -5%;
    width: 110%;
    height: 50px;
    background: var(--white);
    border-radius: 100% 100% 0 0;
}

.info-hero-content {
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.info-hero-content h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    color: var(--white);
}

.info-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    color: var(--white);
}

/* ==========================================================================
   REDERIJ PAGE HERO - Gradient Style met curve
   ========================================================================== */
.rederij-hero {
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.rederij-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: -5%;
    width: 110%;
    height: 50px;
    background: var(--white);
    border-radius: 100% 100% 0 0;
}

.rederij-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.rederij-hero-content h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    color: var(--white);
}

.rederij-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    color: var(--white);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.contact-info-item p {
    color: var(--text-light);
    margin: 0;
}

/* ==========================================================================
   WORDPRESS SPECIFIC
   ========================================================================== */
.wp-block-image {
    margin: 20px 0;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.alignleft {
    float: left;
    margin-right: 20px;
}

.alignright {
    float: right;
    margin-left: 20px;
}

/* WordPress navigation classes */
.menu-item-has-children {
    position: relative;
}

.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    min-width: 200px;
    padding: 10px 0;
}

.menu-item-has-children:hover .sub-menu {
    display: block;
}

.sub-menu li {
    display: block;
}

.sub-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
}

.sub-menu a:hover {
    background: var(--background-light);
    color: var(--primary-color);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    /* Header structure for mobile */
    .header-inner {
        display: block;
        padding: 15px 20px;
    }

    .header-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .site-logo {
        flex: 0 0 auto;
    }

    .site-logo img {
        max-height: 45px;
    }

    /* Hamburger menu button */
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: rgba(255,255,255,0.1);
        border: 1px solid rgba(255,255,255,0.3);
        border-radius: 8px;
        color: var(--white);
        font-size: 1.4rem;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0;
    }

    .menu-toggle:hover,
    .menu-toggle:focus {
        background: rgba(255,255,255,0.2);
        outline: none;
    }

    .menu-icon {
        line-height: 1;
    }

    /* Menu wrapper - hidden by default */
    .header-menu-wrapper {
        display: none;
        width: 100%;
        padding-top: 20px;
        margin-top: 15px;
        border-top: 1px solid rgba(255,255,255,0.2);
    }

    .header-menu-wrapper.active {
        display: block;
    }

    /* Navigation menu */
    .main-navigation {
        display: block;
        width: 100%;
    }

    .main-navigation ul {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding: 0;
    }

    .main-navigation li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .main-navigation li:last-child {
        border-bottom: none;
    }

    .main-navigation a {
        display: block;
        padding: 16px 5px;
        font-size: 1.1rem;
        font-weight: 500;
        color: rgba(255,255,255,0.95) !important;
        text-align: left;
        transition: all 0.2s ease;
    }

    .main-navigation a::after {
        display: none;
    }

    .main-navigation a:hover,
    .main-navigation .current-menu-item a {
        background: rgba(255,255,255,0.1);
        padding-left: 15px;
        color: #ffffff !important;
    }

    /* Personal link button */
    .header-personal {
        display: block;
        width: 100%;
        padding-top: 20px;
        margin-top: 15px;
        border-top: 1px solid rgba(255,255,255,0.2);
    }

    .header-personal a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 16px 20px;
        font-size: 1rem;
        font-weight: 500;
        background: transparent;
        border: 2px solid rgba(255,255,255,0.5);
        border-radius: 30px;
        box-sizing: border-box;
    }

    .header-personal a:hover {
        background: rgba(255,255,255,0.15);
        border-color: rgba(255,255,255,0.8);
    }

    .header-contact {
        display: none;
    }

    /* Hero adjustments */
    .hero-section h1 {
        font-size: 2rem;
    }

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

    .hero-section {
        padding: 60px 15px 40px;
        min-height: 400px;
    }

    .cruise-search-widget {
        width: calc(100% - 20px);
        padding: 20px 15px;
    }

    /* Footer adjustments */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-trust-badges {
        justify-content: center;
    }

    .footer-legal-links {
        justify-content: center;
    }

    .content-section {
        padding: 40px 20px;
    }

    .rederijen-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }

.py-1 { padding-top: 10px; padding-bottom: 10px; }
.py-2 { padding-top: 20px; padding-bottom: 20px; }
.py-3 { padding-top: 30px; padding-bottom: 30px; }
.py-4 { padding-top: 40px; padding-bottom: 40px; }

/* ==========================================================================
   PAGE HERO SECTION (for subpages)
   ========================================================================== */
.page-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-color: var(--secondary-color);
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 20px;
}

.page-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.page-hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

/* ==========================================================================
   INTRO SECTION
   ========================================================================== */
.intro-section {
    background: var(--white);
}

.intro-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text .lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-color);
}

/* ==========================================================================
   4 W's GRID (Wat, Wie, Waar, Wanneer)
   ========================================================================== */
.four-w-section {
    background: var(--background-light);
}

.four-w-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.w-card {
    background: var(--white);
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.w-card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.w-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.w-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 20px 0 10px;
}

.w-card p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 15px;
}

.w-card ul {
    margin: 15px 0;
    padding-left: 20px;
}

.w-card ul li {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 5px;
}

/* ==========================================================================
   DEALS GRID (Acties pagina)
   ========================================================================== */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.deal-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.deal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.deal-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.deal-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.deal-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 20px 0 10px;
}

.deal-card p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 10px;
}

.deal-card ul {
    margin: 10px 0;
    padding-left: 20px;
}

.deal-card ul li {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 5px;
}

/* ==========================================================================
   TIPS GRID
   ========================================================================== */
.tips-section {
    background: var(--background-light);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.tip-item {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.tip-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.tip-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.tip-item p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   COMPARISON TABLE
   ========================================================================== */
.comparison-section {
    background: var(--white);
}

.comparison-table {
    max-width: 900px;
    margin: 30px auto 0;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--secondary-color);
    color: var(--white);
    font-weight: 600;
}

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

.comparison-table tr:hover td {
    background: var(--background-light);
}

/* ==========================================================================
   CTA SECTION - Met curve bovenaan voor vloeiende overgang
   ========================================================================== */
.cta-section {
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

/* Curve bovenaan de CTA sectie */
.cta-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -5%;
    width: 110%;
    height: 50px;
    background: var(--white);
    border-radius: 0 0 100% 100%;
}

.cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.cta-box p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 25px;
    color: var(--white);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background: var(--background-light);
}

.cta-section .btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.cta-section .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* ==========================================================================
   RESPONSIVE FOR NEW PAGES
   ========================================================================== */
@media (max-width: 992px) {
    .four-w-grid {
        grid-template-columns: 1fr;
    }
    
    .deals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .page-hero {
        min-height: 300px;
    }
    
    .page-hero-content h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .deals-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .page-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .page-hero-content p {
        font-size: 1rem;
    }
    
    .w-card {
        padding: 25px;
    }
    
    .cta-box h2 {
        font-size: 1.5rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   ACTIES & AANBIEDINGEN PAGE - Luxe Design
   ========================================================================== */

/* Acties Hero - Clean & Centered met gradient en curve */
.acties-hero {
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 20px 80px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.acties-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: -5%;
    width: 110%;
    height: 50px;
    background: var(--white);
    border-radius: 100% 100% 0 0;
}

.acties-hero h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.acties-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* Aanbiedingen Section */
.aanbiedingen-section {
    background: var(--white);
    padding: 80px 20px;
}

.aanbiedingen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Luxe Actie Cards */
.actie-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.actie-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.actie-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Card Image */
.actie-card .actie-image {
    position: relative;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
}

.actie-card .actie-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

/* Card Content */
.actie-card .actie-content {
    padding: 25px 5px;
}

/* Rederij Name - Gold/Accent Color */
.actie-rederij {
    font-size: 1.1rem;
    font-weight: 400;
    color: #b8860b; /* Goudkleur zoals in screenshot */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

/* Tags */
.actie-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.actie-tag {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
    background: var(--secondary-color);
    color: var(--white);
}

.actie-tag:nth-child(2) {
    background: transparent;
    border: 1px solid var(--text-light);
    color: var(--text-light);
}

.actie-tag:nth-child(3) {
    background: transparent;
    border: 1px solid var(--text-light);
    color: var(--text-light);
}

/* Title */
.actie-titel {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* Description */
.actie-beschrijving {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Link Text */
.actie-link-text {
    display: inline-block;
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-color);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s;
}

.actie-card:hover .actie-link-text {
    color: var(--primary-color);
}

/* Section Title for Acties */
.acties-page .section-title {
    font-size: 2rem;
    font-weight: 300;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 50px;
}

/* Responsive Acties - Luxe */
@media (max-width: 1100px) {
    .aanbiedingen-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .acties-hero {
        padding: 70px 20px 50px;
    }
    
    .acties-hero h1 {
        font-size: 2.2rem;
    }
    
    .aanbiedingen-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 500px;
    }
    
    .actie-card .actie-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .acties-hero h1 {
        font-size: 1.8rem;
    }
    
    .actie-rederij {
        font-size: 1rem;
    }
    
    .actie-titel {
        font-size: 0.9rem;
    }
}

/* ========================================
   INFO PAGES - Additional Styles
   ======================================== */

/* Content Sections */
.content-section {
    padding: 80px 20px;
}

.content-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Titles */
.section-title {
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light, #666);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

/* Intro Section */
.intro-section {
    background: var(--white) !important;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text .lead {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--text-light, #555);
}

/* Feature Section (image + text side by side) */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.feature-content h2 {
    font-size: 2rem;
    font-weight: 400;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.feature-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light, #555);
    margin-bottom: 20px;
}

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

.feature-list li {
    padding: 10px 0 10px 35px;
    position: relative;
    font-size: 1rem;
    color: var(--text-color);
    border-bottom: 1px solid #eee;
}

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

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Audience Cards */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.audience-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.audience-image {
    height: 180px;
    overflow: hidden;
}

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

.audience-card:hover .audience-image img {
    transform: scale(1.08);
}

.audience-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    padding: 20px 20px 10px;
    margin: 0;
}

.audience-card p {
    font-size: 0.95rem;
    color: var(--text-light, #666);
    padding: 0 20px 25px;
    margin: 0;
    line-height: 1.6;
}

/* Destination Cards */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.destination-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.destination-card.large {
    grid-column: span 2;
}

.destination-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.destination-card.large .destination-image {
    height: 300px;
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 60px 25px 25px;
    color: var(--white);
}

.destination-overlay h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 8px;
}

.destination-overlay p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
    line-height: 1.5;
}

/* Included Section */
.included-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.included-card {
    background: var(--white);
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.included-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
}

.included-card.included h3 {
    color: #28a745;
    border-color: #28a745;
}

.included-card.optional h3 {
    color: #ffc107;
    border-color: #ffc107;
}

.included-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.included-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    color: var(--text-color);
}

.included-card ul li:last-child {
    border-bottom: none;
}

.included-note {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 20px 30px;
    border-radius: 12px;
    max-width: 700px;
    margin: 0 auto;
    font-size: 0.95rem;
}

/* Comparison Table */
.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

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

.comparison-table thead th {
    background: var(--secondary-color);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

.comparison-table thead th:first-child {
    background: #2c4a6e;
}

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

.comparison-table tbody tr:hover {
    background: #f8f9fa;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--secondary-color);
}

/* Seasons Section */
.seasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.season-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.season-card.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.season-card.highlight h3,
.season-card.highlight .season-months {
    color: var(--white);
}

.season-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.season-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0 0 5px;
}

.season-months {
    display: block;
    font-size: 0.85rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.season-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    color: var(--text-light, #666);
}

.season-card.highlight p {
    color: rgba(255,255,255,0.9);
}

/* Responsive Info Pages */
@media (max-width: 1100px) {
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .destinations-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .destination-card.large {
        grid-column: span 2;
    }
    
    .seasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .included-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .info-hero {
        padding: 60px 20px 70px;
    }
    
    .info-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .info-hero-content p {
        font-size: 1.1rem;
    }
    
    .content-section {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .destination-card.large {
        grid-column: span 1;
    }
    
    .seasons-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .cta-box h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* ==========================================================================
   OVER ONS PAGINA
   ========================================================================== */

/* Intro sectie */
.about-intro {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 60px;
}

.about-tagline {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.about-intro-content h2 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* Paragraaf kopjes (h3) */
.about-paragraph-heading {
    color: var(--primary-color);
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 10px;
}

.about-paragraph-heading:first-child {
    margin-top: 0;
}

.about-intro-image {
    display: flex;
    justify-content: center;
}

/* Foto container met caption */
.about-photo-container {
    text-align: center;
}

.about-photo {
    width: 320px;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.about-photo-caption {
    margin-top: 20px;
    padding: 15px;
}

.about-photo-caption strong {
    display: block;
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.about-photo-caption span {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 500;
}

.about-image-placeholder {
    width: 300px;
    height: 350px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #888;
    border: 2px dashed #ddd;
}

.about-image-placeholder span {
    font-size: 4rem;
    margin-bottom: 15px;
}

.about-image-placeholder p {
    font-size: 0.9rem;
    text-align: center;
    padding: 0 20px;
}

/* Waarom kiezen sectie */
.about-why-choose {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 60px;
}

.about-why-choose h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 50px;
}

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

.about-feature {
    text-align: center;
    padding: 30px 25px;
    background: #f8f9fa;
    border-radius: 16px;
    transition: all 0.3s ease;
}

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

.about-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.about-feature h3 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.about-feature p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Specialisaties */
.about-specialties {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 60px;
}

.about-specialties h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 50px;
}

.specialty-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.specialty-card {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2d2d4a 100%);
    color: white;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.specialty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(26, 26, 46, 0.3);
}

.specialty-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.specialty-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: white;
}

.specialty-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

/* Contact sectie */
.about-contact {
    padding: 60px 0;
    text-align: center;
    background: #f8f9fa;
    border-radius: 20px;
    margin-bottom: 60px;
}

.about-contact h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.about-contact-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.about-contact-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.about-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    font-size: 2rem;
}

.contact-details {
    text-align: left;
}

.contact-details strong {
    display: block;
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.contact-details a,
.contact-details span {
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 500;
}

.contact-details a:hover {
    color: var(--primary-color);
}

.about-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.about-cta .btn {
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-cta .btn-primary {
    background: var(--primary-color);
    color: white;
}

.about-cta .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.about-cta .btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.about-cta .btn-secondary:hover {
    background: var(--secondary-color);
    color: white;
}

/* Garanties */
.about-guarantees {
    text-align: center;
    padding: 40px 0 60px;
}

.guarantee-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.guarantee-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 30px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
}

.guarantee-badge strong {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.guarantee-badge span {
    font-size: 0.85rem;
    color: #888;
}

.guarantee-badge .guarantee-number {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 5px;
    padding-top: 8px;
    border-top: 1px solid #eee;
}

.guarantee-text {
    font-size: 0.95rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Over Ons */
@media (max-width: 992px) {
    .about-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-intro-image {
        order: -1;
    }
    
    .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .specialty-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-features-grid,
    .specialty-cards {
        grid-template-columns: 1fr;
    }
    
    .about-contact-grid {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .about-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .guarantee-badges {
        flex-direction: column;
        gap: 15px;
    }
}

/* ==========================================================================
   LEGAL PAGES (Algemene Voorwaarden, Privacy)
   ========================================================================== */
.legal-content {
    padding: 60px 0 80px;
    background: var(--white);
}

.legal-content .container {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
    max-width: 1200px;
}

.legal-article {
    background: var(--white);
}

.legal-article h1 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.legal-article h2 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin: 35px 0 15px;
}

.legal-article h3 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin: 25px 0 12px;
}

.legal-article h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin: 20px 0 10px;
}

.legal-article p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: var(--text-color);
}

.legal-article ul,
.legal-article ol {
    margin: 15px 0 20px 25px;
    line-height: 1.8;
}

.legal-article li {
    margin-bottom: 8px;
}

.legal-article strong {
    color: var(--secondary-color);
}

.legal-article a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-article a:hover {
    color: var(--primary-dark);
}

/* Placeholder styling when no content added yet */
.legal-placeholder {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border: 2px dashed #ddd;
    border-radius: 12px;
    padding: 40px;
}

.legal-placeholder h2 {
    margin-top: 0;
}

/* Sidebar */
.legal-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.legal-sidebar-box {
    background: var(--background-light);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
}

.legal-sidebar-box h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin: 0 0 12px;
}

.legal-sidebar-box p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.legal-sidebar-box .last-updated {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0;
}

.legal-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.legal-contact-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

.legal-contact-link:last-child {
    margin-bottom: 0;
}

.legal-contact-link svg {
    flex-shrink: 0;
    color: var(--primary-color);
}

.legal-contact-link:hover svg {
    color: var(--white);
}

/* Trust badges in sidebar */
.trust-box {
    text-align: center;
}

.trust-badges-sidebar {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.trust-badges-sidebar img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* Responsive for legal pages */
@media (max-width: 900px) {
    .legal-content .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .legal-sidebar {
        position: static;
    }
    
    .legal-placeholder {
        padding: 25px;
    }
}

@media (max-width: 600px) {
    .legal-content {
        padding: 40px 0 60px;
    }
    
    .legal-article h1 {
        font-size: 1.6rem;
    }
    
    .legal-article h2 {
        font-size: 1.3rem;
    }
    
    .legal-article h3 {
        font-size: 1.1rem;
    }
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-section {
    padding: 60px 0 80px;
    background: var(--white);
    overflow: hidden;
    width: 100%;
}

.contact-section .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-form-wrapper {
    flex: 1 1 500px;
    min-width: 0;
    max-width: 100%;
}

.contact-info-sidebar {
    flex: 0 0 320px;
    max-width: 100%;
}

.contact-form-wrapper h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin: 0 0 10px;
}

.form-intro {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

.form-row {
    display: flex;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.form-group.full-width {
    flex: 0 0 100%;
    width: 100%;
}

.form-group label {
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group label .required {
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 45px;
}

/* Checkbox styling */
.checkbox-group {
    margin-top: 5px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

/* Submit button */
.btn-large {
    padding: 16px 35px;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-large svg {
    transition: transform 0.3s ease;
}

.btn-large:hover svg {
    transform: translateX(3px);
}

.form-disclaimer {
    width: 100%;
    margin-top: 10px;
    color: var(--text-light);
}

.form-disclaimer a {
    color: var(--primary-color);
}

/* Form Messages */
.form-success {
    text-align: center;
    padding: 60px 40px;
    background: #fafafa;
    border-radius: 12px;
    border: 2px solid var(--primary-color);
}

.success-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 25px;
}

.form-success h2 {
    color: var(--secondary-color);
    margin: 0 0 15px;
    font-size: 1.8rem;
}

.form-success p {
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.form-success .success-intro {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.success-message-copy {
    background: #ffffff;
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.success-message-copy h3 {
    color: var(--secondary-color);
    font-size: 1rem;
    margin: 0 0 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.success-message-copy .message-meta {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.success-message-copy .message-content {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    white-space: pre-wrap;
}

.success-urgent {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
}

.success-urgent p {
    color: white;
    margin: 0 0 5px;
}

.success-urgent a {
    color: white;
    font-size: 1.3rem;
    font-weight: bold;
}

.form-error {
    background: #fef2f2;
    border: 2px solid #fecaca;
    color: #dc2626;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: var(--background-light);
    border-radius: 12px;
    padding: 25px;
}

.contact-info-card h3 {
    font-size: 1.15rem;
    color: var(--secondary-color);
    margin: 0 0 10px;
}

.contact-info-card > p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-text strong {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.contact-text {
    color: var(--text-color);
    font-size: 0.95rem;
}

/* Address */
.address-text {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-color);
    line-height: 1.6;
}

.address-text svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary-color);
}

/* Opening Hours */
.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.95rem;
}

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

.hours-list li span:first-child {
    color: var(--text-color);
}

.hours-list li span:last-child {
    color: var(--secondary-color);
    font-weight: 500;
}

.hours-note {
    margin-top: 15px;
    color: var(--text-light);
}

/* Contact Page Responsive */
@media (max-width: 900px) {
    .contact-grid {
        flex-direction: column;
    }
    
    .contact-form-wrapper {
        flex: 1 1 100%;
    }
    
    .contact-info-sidebar {
        flex: 1 1 100%;
        order: -1;
    }
}

@media (max-width: 600px) {
    .contact-section {
        padding: 40px 0 60px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-form-wrapper h2 {
        font-size: 1.5rem;
    }
    
    .form-success {
        padding: 40px 25px;
    }
    
    .contact-info-card {
        padding: 20px;
    }
}
