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

:root {
    --primary-color: #60C5D1;
    --secondary-color: #2c7fb8;
    --accent-color: #f39c12;
    --warm-orange: #ff6b35;
    --warm-red: #e63946;
    --warm-yellow: #ffb703;
    --warm-coral: #ff8c69;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #3a4046;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Styles */
.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar {
    padding: 1.2rem 0;
}

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

.logo {
    flex-shrink: 0;
}

.logo a {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.8;
}

.logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Footer Logo */
.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    opacity: 1;
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    display: inline-block;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.phone {
    flex-shrink: 0;
}

.phone a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.phone a i {
    font-size: 1rem;
}

.phone a:hover {
    background: var(--primary-color);
    color: #ffffff;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s;
}

/* Banner Section */
.banner-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.banner-desktop {
    display: block;
}

.banner-mobile {
    display: none;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.btn-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(26, 84, 144, 0.3);
    animation: fadeInLeft 1.2s ease-out;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(26, 84, 144, 0.4);
}

/* Contact Form Section */
.contact-form-section {
    background: var(--bg-light);
    padding: 2rem 0;
    /*margin-top: -3rem;*/
    position: relative;
    z-index: 2;
}

.form-wrapper {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}

.form-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.info-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group select,
.form-group input[type="text"],
.form-group input[type="tel"] {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
    background: var(--bg-white);
}

.form-group select:focus,
.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus {
    outline: none;
    border-color: var(--warm-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-fields-wrapper {
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.form-fields-wrapper.show {
    opacity: 1;
    transform: translateY(0);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-light);
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.2rem;
    cursor: pointer;
}

.btn-submit {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--warm-orange), var(--warm-red));
    color: var(--bg-white);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-submit:not(:disabled):hover {
    background: linear-gradient(135deg, var(--warm-red), var(--warm-orange));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-submit:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Success Message */
.success-message {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.1), rgba(46, 204, 113, 0.05));
    border-radius: 20px;
    border: 2px solid rgba(39, 174, 96, 0.3);
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.success-message.show {
    opacity: 1;
    transform: scale(1);
}

.success-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.success-message h3 {
    font-size: 2rem;
    color: var(--success-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.success-message p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-success {
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--success-color), #2ecc71);
    color: var(--bg-white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.btn-success:hover {
    background: linear-gradient(135deg, #2ecc71, var(--success-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

/* Ship Features Section */
.ship-features {
    padding: 5rem 0;
    background: var(--bg-white);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon i {
    transition: all 0.3s;
}

.feature-card:hover .feature-icon i {
    transform: scale(1.2) rotate(5deg);
    color: var(--secondary-color);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

/* Tours Section */
.tours-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.tour-group {
    margin-bottom: 5rem;
}

.tour-group:last-child {
    margin-bottom: 0;
}

.tour-group-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid var(--primary-color);
    position: relative;
}

.tour-group-header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--accent-color);
}

.tour-group-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    font-style: italic;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.tour-card {
    background: var(--bg-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(26, 84, 144, 0.1);
    animation: fadeInUp 0.6s ease-out;
}

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

.tour-card:nth-child(1) { animation-delay: 0.1s; }
.tour-card:nth-child(2) { animation-delay: 0.2s; }
.tour-card:nth-child(3) { animation-delay: 0.3s; }
.tour-card:nth-child(4) { animation-delay: 0.4s; }
.tour-card:nth-child(5) { animation-delay: 0.5s; }
.tour-card:nth-child(6) { animation-delay: 0.6s; }

.tour-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.tour-card:hover::before {
    transform: scaleX(1);
}

.tour-image {
    width: 100%;
    height: 380px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.tour-image .tour-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 2;
    margin: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.tour-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 84, 144, 0.3), rgba(44, 127, 184, 0.3));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
}

.tour-card:hover .tour-image::before {
    opacity: 1;
}

.tour-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.tour-card:hover .tour-image::after {
    opacity: 1;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(0.95);
}

.tour-card:hover .tour-image img {
    filter: brightness(1.1);
}

.tour-card:hover .tour-image img {
    transform: scale(1.15) rotate(1deg);
}

.tour-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

.tour-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.tour-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 3;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tour-badge i {
    font-size: 1rem;
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.9;
    }
}

.tour-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
    z-index: 0;
}

.tour-badge span,
.tour-badge i {
    position: relative;
    z-index: 1;
}

/* Price Overlay on Image */
.tour-price-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.55) 30%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.2) 85%, transparent 100% );
    padding: 1.5rem 1.5rem 1.25rem;
    z-index: 2;
    /*! backdrop-filter: blur(8px) saturate(1.2); */
    -webkit-backdrop-filter: blur(8px) saturate(1.2);
    mask-image: linear-gradient(to top, black 0%, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, black 0%, black 70%, transparent 100%);
}

.price-overlay-content {
    display: flex;
    flex-direction: column;
    /*! gap: 0.5rem; */
    align-items: flex-start;
}

.price-start-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    opacity: 0.9;
}

.price-overlay-main {
    display: flex;
    /*! align-items: baseline; */
    /*! gap: 0.5rem; */
    flex-wrap: wrap;
}

.price-overlay-main .price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--bg-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    letter-spacing: -1px;
}

.price-overlay-main .price-currency {
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2rem;
}

.price-overlay-main .price-currency-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /*! gap: 0.2rem; */
    padding-top: 4px;
    margin-left: 3px;
}

.price-overlay-note {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    opacity: 0.9;
    line-height: 1;
}

.tour-card:hover .tour-price-overlay {
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(0, 0, 0, 0.8) 30%, 
        rgba(0, 0, 0, 0.6) 60%, 
        rgba(0, 0, 0, 0.3) 85%, 
        transparent 100%
    );
    backdrop-filter: blur(10px) saturate(1.3);
    -webkit-backdrop-filter: blur(10px) saturate(1.3);
}

.tour-card:hover .price-overlay-main .price-amount {
    transform: scale(1.05);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

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

.tour-badge.vizesiz {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 50%, #1e8449 100%);
    color: var(--bg-white);
    box-shadow: 0 6px 25px rgba(39, 174, 96, 0.4),
                0 0 20px rgba(39, 174, 96, 0.2);
}

.tour-badge.vizesiz::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: rotate-shine 3s linear infinite;
}

@keyframes rotate-shine {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.tour-badge.her-sey-dahil {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 50%, #d35400 100%);
    color: var(--bg-white);
    box-shadow: 0 6px 25px rgba(243, 156, 18, 0.4),
                0 0 20px rgba(243, 156, 18, 0.2);
}

.tour-badge.her-sey-dahil::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
    animation: rotate-shine 3s linear infinite;
}

.tour-card:hover .tour-image .tour-badge {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.35),
                0 0 30px rgba(255, 255, 255, 0.1);
}

.tour-card:hover .tour-badge.vizesiz {
    box-shadow: 0 8px 35px rgba(39, 174, 96, 0.5),
                0 0 30px rgba(39, 174, 96, 0.3);
}

.tour-card:hover .tour-badge.her-sey-dahil {
    box-shadow: 0 8px 35px rgba(243, 156, 18, 0.5),
                0 0 30px rgba(243, 156, 18, 0.3);
}

.tour-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    /*! color: var(--primary-color); */
    line-height: 1.4;
    transition: color 0.3s;
}

.tour-card:hover .tour-title {
    /*! color: var(--secondary-color); */
}

.tour-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tour-price {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 179, 3, 0.08));
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    margin-bottom: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.15);
}

.tour-price::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

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

.tour-card:hover .tour-price {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 179, 3, 0.12));
    border-color: var(--warm-orange);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    position: relative;
    z-index: 1;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--warm-orange), var(--warm-red), var(--warm-yellow));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
    transition: all 0.3s;
    letter-spacing: -0.5px;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.price-currency {
    font-size: 1rem;
    font-weight: 700;
    color: var(--warm-orange);
    opacity: 0.9;
    transition: all 0.3s;
    position: relative;
    top: -2px;
}

.tour-card:hover .price-amount {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.tour-card:hover .price-currency {
    opacity: 1;
    color: var(--warm-red);
    transform: scale(1.1);
}

.price-note {
    font-size: 0.7rem;
    color: var(--warm-orange);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    position: relative;
    z-index: 1;
    opacity: 0.85;
}

.tour-card:hover .price-note {
    opacity: 1;
    color: var(--warm-red);
}

.tour-dates {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    /*! margin: 1.5rem 0; */
    max-height: 320px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 0.5rem;
}

.tour-dates::-webkit-scrollbar {
    width: 6px;
}

.tour-dates::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 10px;
}

.tour-dates::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.tour-dates::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.date-item {
    /*! background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(26, 84, 144, 0.03)); */
    /*! padding: 1rem 1.5rem; */
    border-radius: 12px;
    font-size: 0.9rem;
    /*! border: 2px solid rgba(26, 84, 144, 0.1); */
    /*! transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); */
    position: relative;
    overflow: hidden;
    /*! box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); */
    /*! min-height: 60px; */
    display: flex;
    align-items: center;
    width: 100%;
}



.date-range {
    color: var(--text-dark);
    font-weight: 600;
    display: flex;
    flex-direction: row;
    align-items: center;
    /*! justify-content: space-between; */
    gap: 0.75rem;
    position: relative;
    z-index: 1;
    width: 100%;
    line-height: 1.5;
}

.date-range i {
    color: var(--primary-color);
    font-size: 0.75rem;
    opacity: 0.6;
    transition: all 0.3s;
    flex-shrink: 0;
}

.date-start,
.date-end {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    font-size: 0.9rem;
    line-height: 1.4;
    flex: 1;
}

.tour-details {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--bg-light), rgba(26, 84, 144, 0.03));
    border-radius: 12px;
    font-size: 0.95rem;
    border: 1px solid rgba(26, 84, 144, 0.08);
    transition: all 0.3s;
}

.tour-card:hover .tour-details {
    background: linear-gradient(135deg, rgba(26, 84, 144, 0.05), rgba(44, 127, 184, 0.05));
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.tour-duration {
    font-weight: 600;
    color: var(--primary-color);
}

.tour-ports,
.tour-ship {
    color: var(--text-dark);
}

.tour-actions {
    display: flex;
    gap: 1rem;
    /*! margin-top: auto; */
    /*! padding-top: 1.5rem; */
}

.btn-tour {
    flex: 1;
    padding: 1rem 0.2rem;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--warm-orange);
    color: var(--warm-orange);
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-tour::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--warm-orange), var(--warm-red));
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

/* Rezervasyon Yap butonu hover (turuncu) - sadece WhatsApp olmayan butonlar için */
.btn-tour:not(.btn-whatsapp):hover {
    color: var(--bg-white) !important;
    background: linear-gradient(135deg, var(--warm-orange), var(--warm-red));
    border-color: var(--warm-orange);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.btn-tour:not(.btn-whatsapp):hover::before {
    width: 300px;
    height: 300px;
}

/* Text'in her zaman görünür olması için */
.btn-tour > *,
.btn-tour {
    position: relative;
    z-index: 2;
}

/* WhatsApp butonu özel stilleri */
.btn-whatsapp {
    background: #25d366;
    color: var(--bg-white);
    border-color: #25d366;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #20ba5a;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    border-color: #20ba5a;
    color: white !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover::before {
    width: 300px;
    height: 300px;
}

/* WhatsApp text'in her zaman görünür olması için */
.btn-whatsapp > *,
.btn-whatsapp {
    position: relative;
    z-index: 2;
}

/* Cabins Section */
.cabins-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    position: relative;
    overflow: hidden;
}

.cabins-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(26,84,144,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.cabins-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.cabins-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.cabin-card {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}

.cabin-card:nth-child(1) { animation-delay: 0.1s; }
.cabin-card:nth-child(2) { animation-delay: 0.2s; }
.cabin-card:nth-child(3) { animation-delay: 0.3s; }
.cabin-card:nth-child(4) { animation-delay: 0.4s; }
.cabin-card:nth-child(5) { animation-delay: 0.5s; }
.cabin-card:nth-child(6) { animation-delay: 0.6s; }

.cabin-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.cabin-card:hover::before {
    transform: scaleX(1);
}

.cabin-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(26, 84, 144, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.cabin-card:hover::after {
    opacity: 1;
}

.cabin-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 60px rgba(26, 84, 144, 0.2);
    border-color: var(--primary-color);
}

.cabin-card.featured {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    border: 2px solid var(--accent-color);
}

.cabin-card.featured .cabin-icon,
.cabin-card.featured .cabin-number,
.cabin-card.featured .cabin-type,
.cabin-card.featured .cabin-size {
    color: var(--bg-white);
}

.cabin-card.luxury {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--bg-white);
    border: 2px solid var(--accent-color);
}

.cabin-card.luxury .cabin-icon,
.cabin-card.luxury .cabin-number,
.cabin-card.luxury .cabin-type,
.cabin-card.luxury .cabin-size {
    color: var(--bg-white);
}

.cabin-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.cabin-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    transition: all 0.5s;
    position: relative;
    z-index: 1;
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.cabin-icon i {
    transition: all 0.5s;
}

.cabin-card:hover .cabin-icon i {
    transform: scale(1.2) rotate(5deg);
}

.cabin-card.featured .cabin-icon,
.cabin-card.luxury .cabin-icon {
    color: var(--bg-white);
}

.cabin-card.featured .cabin-icon i,
.cabin-card.luxury .cabin-icon i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.cabin-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cabin-card.featured .cabin-number,
.cabin-card.luxury .cabin-number {
    background: linear-gradient(135deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cabin-type {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.cabin-size {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.cabin-features {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cabin-feature {
    background: var(--bg-light);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s;
}

.cabin-card.featured .cabin-feature,
.cabin-card.luxury .cabin-feature {
    background: rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
}

.cabin-card:hover .cabin-feature {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.cabins-footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    margin-top: 3rem;
}

.cabins-total {
    text-align: center;
    padding: 2rem;
    border-right: 2px solid var(--border-color);
    flex: 1;
}

.total-number {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.total-label {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 500;
}

.cabins-special {
    display: flex;
    gap: 3rem;
    flex: 1;
    justify-content: center;
}

.special-item {
    text-align: center;
    padding: 1rem 2rem;
}

.special-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.special-label {
    display: block;
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Facilities Section */
.facilities-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

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

.facility-item {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid var(--border-color);
}

.facility-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.facility-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.facility-icon i {
    transition: all 0.3s;
}

.facility-item:hover .facility-icon i {
    transform: scale(1.2) rotate(-5deg);
    color: var(--secondary-color);
}

.facility-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    /*! color: var(--primary-color); */
}

.facility-item > p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.facility-detail {
    display: block;
    font-size: 0.9rem;
}

/* Cruise Guide Section */
.cruise-guide-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
}

.guide-header {
    text-align: center;
    margin-bottom: 4rem;
}

.guide-header .section-title {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.guide-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
}

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

.guide-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.guide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.guide-card:hover::before {
    transform: scaleX(1);
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.guide-card-highlight {
    background: linear-gradient(135deg, rgba(26, 84, 144, 0.05), rgba(44, 127, 184, 0.03));
    border-color: var(--primary-color);
}

.guide-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-light);
}

.guide-card-header i {
    font-size: 2rem;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 84, 144, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.guide-card-header h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

.guide-card-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.guide-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s;
}

.guide-item:hover {
    background: rgba(26, 84, 144, 0.05);
    transform: translateX(5px);
}

.guide-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 24px;
}

.guide-item p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 0.95rem;
}

.guide-item strong {
    color: var(--primary-color);
    font-weight: 600;
}

.guide-schedule {
    background: rgba(26, 84, 144, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 0.5rem 0;
}

.guide-schedule h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(26, 84, 144, 0.1);
}

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

.schedule-item i {
    color: var(--warm-orange);
    font-size: 1rem;
    width: 20px;
}

.schedule-item span {
    color: var(--text-dark);
    font-size: 0.95rem;
}

.guide-intro {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 500;
}

.guide-checklist {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(39, 174, 96, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--success-color);
}

.checklist-item i {
    color: var(--success-color);
    font-size: 1rem;
}

.checklist-item span {
    color: var(--text-dark);
    font-size: 0.95rem;
}

.cabin-list {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
    padding-left: 0;
}

.cabin-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
}

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

/* Contact Section */
/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--warm-orange));
}

.contact-section .section-title {
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.contact-section .section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Contact Channels */
.contact-channels {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-channel-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-channel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.contact-channel-card:hover::before {
    transform: scaleX(1);
}

.contact-channel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.channel-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    transition: all 0.4s;
    position: relative;
}

.channel-icon.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--bg-white);
}

.channel-icon.phone {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
}

.channel-icon.email {
    background: linear-gradient(135deg, var(--warm-orange), var(--warm-red));
    color: var(--bg-white);
}

.contact-channel-card:hover .channel-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-channel-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.contact-link:hover {
    color: var(--primary-color);
    background: rgba(26, 84, 144, 0.05);
    transform: translateX(5px);
}

.contact-link i {
    font-size: 0.9rem;
    color: var(--primary-color);
}

/* Sales Offices */
.sales-offices {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.office-group {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    border: 2px solid transparent;
}

.office-group:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.office-group-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-light);
}

.office-group-header i {
    font-size: 1.8rem;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 84, 144, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.office-group-header h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.office-phones {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.office-phone {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--bg-light);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.05rem;
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.office-phone i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 84, 144, 0.1);
    border-radius: 8px;
    transition: all 0.3s;
    flex-shrink: 0;
}

.office-phone:hover {
    background: rgba(26, 84, 144, 0.05);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.office-phone:hover i {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: scale(1.1);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--bg-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 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: var(--bg-white);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .container {
        max-width: 1400px;
        padding: 0 30px;
    }
}

@media (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    .feature-icon {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-card h3 {
        font-size: 1rem;
    }
    
    .feature-value {
        font-size: 1.2rem;
    }
    
    .ship-features {
        padding: 4rem 0;
    }
    
    .cabins-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
        margin-bottom: 3rem;
    }
    
    .cabin-card {
        padding: 2rem 1.5rem;
    }
    
    .cabin-icon {
        font-size: 3rem;
        margin-bottom: 0.8rem;
    }
    
    .cabin-number {
        font-size: 2.8rem;
    }
    
    .cabin-type {
        font-size: 1.2rem;
    }
    
    .cabin-size {
        font-size: 0.9rem;
    }
    
    .cabins-section {
        padding: 5rem 0;
    }
    
    .cabins-header {
        margin-bottom: 3rem;
    }
    
    .contact-channels {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .sales-offices {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .guide-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .guide-header .section-title {
        font-size: 2rem;
    }
    
    .cabins-footer {
        flex-direction: column;
        gap: 2rem;
    }
    
    .cabins-total {
        border-right: none;
        border-bottom: 2px solid var(--border-color);
        padding-bottom: 2rem;
    }
    
    .cabins-special {
        flex-direction: column;
        gap: 2rem;
    }
    
    
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
        margin-top: 2.5rem;
    }
    
    .facility-item {
        padding: 1.5rem 1.2rem;
    }
    
    .facility-icon {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }
    
    .facility-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }
    
    .facility-item > p {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
    
    .facility-detail {
        font-size: 0.8rem;
    }
    
    .facilities-section {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .banner-desktop {
        display: none;
    }
    
    .banner-mobile {
        display: block;
    }
    
    .contact-channels {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .sales-offices {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .guide-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .guide-header {
        margin-bottom: 2rem;
    }
    
    .guide-header .section-title {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }
    
    .guide-subtitle {
        font-size: 0.9rem;
    }
    
    .guide-card {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .guide-card-header {
        gap: 0.8rem;
        margin-bottom: 1rem;
        padding-bottom: 0.8rem;
    }
    
    .guide-card-header i {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    
    .guide-card-header h3 {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .guide-card-content {
        gap: 0.8rem;
    }
    
    .guide-item {
        padding: 0.8rem;
        gap: 0.8rem;
        border-radius: 10px;
    }
    
    .guide-item i {
        font-size: 1rem;
        width: 20px;
        margin-top: 0.1rem;
    }
    
    .guide-item p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .guide-schedule {
        padding: 1rem;
        border-radius: 10px;
        margin: 0.3rem 0;
    }
    
    .guide-schedule h4 {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }
    
    .schedule-item {
        padding: 0.6rem 0;
        gap: 0.6rem;
    }
    
    .schedule-item i {
        font-size: 0.9rem;
        width: 18px;
    }
    
    .schedule-item span {
        font-size: 0.85rem;
    }
    
    .guide-intro {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .guide-checklist {
        gap: 0.6rem;
    }
    
    .checklist-item {
        padding: 0.6rem 0.8rem;
        gap: 0.6rem;
    }
    
    .checklist-item i {
        font-size: 0.9rem;
    }
    
    .checklist-item span {
        font-size: 0.85rem;
    }
    
    .cruise-guide-section {
        padding: 3rem 0;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .phone {
        display: none;
    }
    
    .navbar {
        padding: 0.4rem 0;
    }
    
    .nav-wrapper {
        gap: 1rem;
        position: relative;
        justify-content: center;
    }
    
    .mobile-menu-toggle {
        order: -1;
        position: absolute;
        left: 0;
    }
    
    .logo {
        order: 0;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
    }
    
    .phone a {
        padding: 0.6rem 1.2rem;
        font-size: 1rem;
    }
    
    .logo-img {
        height: 70px;
    }

    .section-title {
        font-size: 2rem;
    }

    .form-wrapper {
        padding: 2rem 1.5rem;
    }

    .tours-grid {
        grid-template-columns: 1fr;
    }

    .tour-card {
        padding: 0;
    }

    .tour-content {
        padding: 1.5rem;
    }

    .tour-title {
        font-size: 1rem;
    }

    .price-amount {
        font-size: 1.8rem;
    }
    
    .price-currency {
        font-size: 0.9rem;
    }
    
    .tour-price {
        padding: 0.6rem 1rem;
        gap: 0.5rem;
    }
    
    .price-note {
        font-size: 0.65rem;
    }

    .logo-img {
        height: 65px;
    }
    
    .footer-logo-img {
        height: 50px;
    }
    
    .tour-price-overlay {
        padding: 1rem 1rem 0.5rem;
    }
    
    .price-overlay-main .price-amount {
        font-size: 2rem;
    }
    
    .price-overlay-main .price-currency {
        font-size: 1rem;
    }
    
    .price-start-label {
        font-size: 0.5rem;
    }
    
    .price-overlay-note {
        font-size: 0.55rem;
    }

    .tour-actions {
        flex-direction: row;
        gap: 0.6rem;
        margin-top: 1rem;
    }
    
    .btn-tour {
        padding: 0.7rem 0.5rem;
        font-size: 0.85rem;
        border-radius: 10px;
    }
    
    .tour-details {
        padding: 1rem;
        font-size: 0.85rem;
        gap: 0.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        margin-top: 2rem;
    }
    
    .feature-card {
        padding: 1rem 0.8rem;
    }
    
    .feature-icon {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-card h3 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .feature-value {
        font-size: 1.1rem;
    }
    
    .ship-features {
        padding: 3rem 0;
    }
    
    .cabins-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        margin-bottom: 2.5rem;
    }
    
    .cabin-card {
        padding: 1rem 0.8rem;
        border-radius: 16px;
    }
    
    .cabin-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .cabin-number {
        font-size: 2rem;
        margin-bottom: 0.3rem;
    }
    
    .cabin-type {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .cabin-size {
        font-size: 0.75rem;
        margin-bottom: 0.8rem;
    }
    
    .cabin-features {
        gap: 0.3rem;
    }
    
    .cabin-feature {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .cabin-badge {
        top: 0.5rem;
        right: 0.5rem;
        padding: 0.3rem 0.6rem;
        font-size: 0.65rem;
    }
    
    .cabins-footer {
        padding: 1rem 0.8rem;
        margin-top: 1.5rem;
        border-radius: 16px;
        flex-direction: column;
        gap: 1rem;
    }
    
    .cabins-total {
        padding: 0.8rem;
        border-right: none;
        border-bottom: 2px solid var(--border-color);
        padding-bottom: 1rem;
        margin-bottom: 0;
    }
    
    .total-number {
        font-size: 2rem;
        margin-bottom: 0.3rem;
    }
    
    .total-label {
        font-size: 0.9rem;
    }
    
    .cabins-special {
        flex-direction: row;
        gap: 1.5rem;
        justify-content: space-around;
        padding-top: 0.8rem;
    }
    
    .special-item {
        padding: 0;
        flex: 1;
    }
    
    .special-number {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }
    
    .special-label {
        font-size: 0.8rem;
    }
    
    .cabins-section {
        padding: 3rem 0;
    }
    
    .cabins-header {
        margin-bottom: 2rem;
    }
    
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        margin-top: 2rem;
    }
    
    .facility-item {
        padding: 1rem 0.8rem;
        border-radius: 12px;
    }
    
    .facility-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .facility-item h3 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
        line-height: 1.3;
    }
    
    .facility-item > p {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }
    
    .facility-detail {
        font-size: 0.7rem;
        line-height: 1.3;
    }
    
    .facilities-section {
        padding: 3rem 0;
    }

    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-section .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .contact-channels {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .contact-channel-card {
        padding: 1.2rem 1rem;
        border-radius: 16px;
    }
    
    .channel-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-channel-card h3 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-link {
        font-size: 0.9rem;
        gap: 0.6rem;
        padding: 0.4rem 0.8rem;
    }
    
    .contact-link i {
        font-size: 0.8rem;
    }
    
    .sales-offices {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .office-group {
        padding: 1rem;
        border-radius: 16px;
    }
    
    .office-group-header {
        gap: 0.8rem;
        margin-bottom: 1rem;
        padding-bottom: 0.8rem;
    }
    
    .office-group-header i {
        font-size: 1.4rem;
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    
    .office-group-header h3 {
        font-size: 0.95rem;
        line-height: 1.3;
    }
    
    .office-phones {
        gap: 0.8rem;
    }
    
    .office-phone {
        padding: 0.8rem 1rem;
        border-radius: 10px;
        font-size: 0.9rem;
        gap: 0.8rem;
    }
    
    .office-phone i {
        font-size: 0.95rem;
        width: 30px;
        height: 30px;
        border-radius: 6px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
        margin-top: 1.5rem;
    }
    
    .feature-card {
        padding: 0.8rem 0.5rem;
    }
    
    .feature-icon {
        font-size: 1.5rem;
        margin-bottom: 0.4rem;
    }
    
    .feature-card h3 {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
        line-height: 1.2;
    }
    
    .feature-value {
        font-size: 1rem;
        line-height: 1.2;
    }
    
    .ship-features {
        padding: 2.5rem 0;
    }
    
    .section-title {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
        margin-top: 1.5rem;
    }
    
    .facility-item {
        padding: 0.8rem 0.5rem;
        border-radius: 10px;
    }
    
    .facility-icon {
        font-size: 1.6rem;
        margin-bottom: 0.4rem;
    }
    
    .facility-item h3 {
        font-size: 0.75rem;
        margin-bottom: 0.2rem;
        line-height: 1.2;
    }
    
    .facility-item > p {
        font-size: 0.7rem;
        margin-bottom: 0.4rem;
        line-height: 1.2;
    }
    
    .facility-detail {
        font-size: 0.65rem;
        line-height: 1.2;
    }
    
    .facilities-section {
        padding: 2.5rem 0;
    }
    
    .cabins-section {
        padding: 2.5rem 0;
    }
    
    .cabins-header {
        margin-bottom: 1.5rem;
    }
    
    .cabins-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
        margin-bottom: 2rem;
    }
    
    .cabin-card {
        padding: 0.8rem 0.5rem;
        border-radius: 12px;
    }
    
    .cabin-icon {
        font-size: 1.6rem;
        margin-bottom: 0.4rem;
    }
    
    .cabin-number {
        font-size: 1.6rem;
        margin-bottom: 0.2rem;
    }
    
    .cabin-type {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
        line-height: 1.2;
    }
    
    .cabin-size {
        font-size: 0.7rem;
        margin-bottom: 0.6rem;
    }
    
    .cabin-features {
        gap: 0.25rem;
    }
    
    .cabin-feature {
        padding: 0.25rem 0.5rem;
        font-size: 0.65rem;
    }
    
    .cabin-badge {
        top: 0.4rem;
        right: 0.4rem;
        padding: 0.25rem 0.5rem;
        font-size: 0.6rem;
    }
    
    .cabins-footer {
        padding: 0.8rem 0.6rem;
        margin-top: 1.2rem;
        border-radius: 12px;
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .cabins-total {
        padding: 0.6rem;
        border-right: none;
        border-bottom: 1.5px solid var(--border-color);
        padding-bottom: 0.8rem;
        margin-bottom: 0;
    }
    
    .total-number {
        font-size: 1.6rem;
        margin-bottom: 0.2rem;
    }
    
    .total-label {
        font-size: 0.8rem;
    }
    
    .cabins-special {
        flex-direction: row;
        gap: 1rem;
        justify-content: space-around;
        padding-top: 0.6rem;
    }
    
    .special-item {
        padding: 0;
        flex: 1;
    }
    
    .special-number {
        font-size: 1.2rem;
        margin-bottom: 0.2rem;
    }
    
    .special-label {
        font-size: 0.7rem;
    }
    
    .tours-grid {
        gap: 1.5rem;
    }
    
    .tour-actions {
        flex-direction: row;
        gap: 0.5rem;
        margin-top: 0rem;
    }
    
    .btn-tour {
        padding: 0.6rem 0.4rem;
        font-size: 0.75rem;
        border-radius: 8px;
    }
    
    .tour-image {
        height: 220px;
    }
    
    .tour-image .tour-badge {
        top: 1rem;
        right: 1rem;
        padding: 0.6rem 1.2rem;
        font-size: 0.75rem;
        gap: 0.4rem;
    }
    
    .tour-badge i {
        font-size: 0.85rem;
    }
    
    .tour-content {
        padding: 1.5rem;
    }

    .form-wrapper {
        padding: 1.5rem 1rem;
    }

    .tour-content {
        padding: 1rem;
    }

    .tour-image {
        height: 200px;
    }

    .date-item {
        font-size: 0.85rem;
        /*! padding: 0.8rem 1rem; */
        /*! min-height: 35px; */
    }
    
    .date-range {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .date-start,
    .date-end {
        font-size: 0.85rem;
        flex: 0 1 auto;
    }
    
    .date-range i {
        font-size: 0.65rem;
    }
    
    .tour-details {
        padding: 0.8rem;
        font-size: 0.8rem;
        gap: 0.4rem;
    }
    
    .tour-duration,
    .tour-ports,
    .tour-ship {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .guide-grid {
        gap: 0.8rem;
    }
    
    .guide-header {
        margin-bottom: 1.5rem;
    }
    
    .guide-header .section-title {
        font-size: 1.4rem;
        margin-bottom: 0.4rem;
    }
    
    .guide-subtitle {
        font-size: 0.8rem;
    }
    
    .guide-card {
        padding: 0.8rem;
        border-radius: 10px;
    }
    
    .guide-card-header {
        gap: 0.6rem;
        margin-bottom: 0.8rem;
        padding-bottom: 0.6rem;
    }
    
    .guide-card-header i {
        font-size: 1.3rem;
        width: 35px;
        height: 35px;
        border-radius: 8px;
    }
    
    .guide-card-header h3 {
        font-size: 0.9rem;
        line-height: 1.2;
    }
    
    .guide-card-content {
        gap: 0.6rem;
    }
    
    .guide-item {
        padding: 0.6rem;
        gap: 0.6rem;
        border-radius: 8px;
    }
    
    .guide-item i {
        font-size: 0.9rem;
        width: 18px;
    }
    
    .guide-item p {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .guide-schedule {
        padding: 0.8rem;
        border-radius: 8px;
        margin: 0.3rem 0;
    }
    
    .guide-schedule h4 {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
    
    .schedule-item {
        padding: 0.5rem 0;
        gap: 0.5rem;
    }
    
    .schedule-item i {
        font-size: 0.8rem;
        width: 16px;
    }
    
    .schedule-item span {
        font-size: 0.75rem;
    }
    
    .guide-intro {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
    
    .guide-checklist {
        gap: 0.5rem;
    }
    
    .checklist-item {
        padding: 0.5rem 0.6rem;
        gap: 0.5rem;
    }
    
    .checklist-item i {
        font-size: 0.8rem;
    }
    
    .checklist-item span {
        font-size: 0.75rem;
    }
    
    .cruise-guide-section {
        padding: 2.5rem 0;
    }
    
    .contact-section {
        padding: 2.5rem 0;
    }
    
    .contact-section .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.6rem;
    }
    
    .contact-section .section-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-channels {
        gap: 0.8rem;
        margin-bottom: 2rem;
    }
    
    .contact-channel-card {
        padding: 1rem 0.8rem;
        border-radius: 12px;
    }
    
    .channel-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-channel-card h3 {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .contact-link {
        font-size: 0.85rem;
        gap: 0.5rem;
        padding: 0.3rem 0.6rem;
    }
    
    .contact-link i {
        font-size: 0.75rem;
    }
    
    .sales-offices {
        gap: 0.8rem;
        margin-top: 1.5rem;
    }
    
    .office-group {
        padding: 0.8rem;
        border-radius: 12px;
    }
    
    .office-group-header {
        gap: 0.6rem;
        margin-bottom: 0.8rem;
        padding-bottom: 0.6rem;
    }
    
    .office-group-header i {
        font-size: 1.2rem;
        width: 35px;
        height: 35px;
        border-radius: 8px;
    }
    
    .office-group-header h3 {
        font-size: 0.85rem;
        line-height: 1.2;
    }
    
    .office-phones {
        gap: 0.6rem;
    }
    
    .office-phone {
        padding: 0.6rem 0.8rem;
        border-radius: 8px;
        font-size: 0.85rem;
        gap: 0.6rem;
    }
    
    .office-phone i {
        font-size: 0.85rem;
        width: 28px;
        height: 28px;
        border-radius: 6px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tour-card,
.facility-item,
.feature-card {
    animation: fadeIn 0.6s ease-out;
}

