/* CSS Variables */
: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);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 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: 0.6rem 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: 60px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    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: 0.85rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.3rem 0;
    display: inline-block;
    white-space: nowrap;
}

.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 {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.phone a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.phone a i {
    font-size: 0.9rem;
}

.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: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s;
}

/* Banner Section */
.banner-section {
    margin-top: 55px;
    position: relative;
    height: 600px;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-mobile {
    display: none;
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.banner-slider .banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: banner-fade 15s infinite;
}

.banner-slider .banner-image:nth-child(1) {
    animation-delay: 0s;
}

.banner-slider .banner-image:nth-child(2) {
    animation-delay: 3s;
}

.banner-slider .banner-image:nth-child(3) {
    animation-delay: 6s;
}

.banner-slider .banner-image:nth-child(4) {
    animation-delay: 9s;
}

.banner-slider .banner-image:nth-child(5) {
    animation-delay: 12s;
}

@keyframes banner-fade {
    0%, 20% {
        opacity: 0;
        transform: scale(1);
    }
    5%, 15% {
        opacity: 1;
        transform: scale(1.05);
    }
    20%, 100% {
        opacity: 0;
        transform: scale(1);
    }
}

@keyframes banner-zoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Contact Form Section */
.contact-form-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.form-wrapper h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1e3c72;
    font-size: 1.8rem;
}

.info-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
}

.form-fields-wrapper {
    display: none;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.form-fields-wrapper.show {
    display: flex;
}

.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;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.2rem;
    width: auto;
}

.btn-submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.success-message {
    display: none;
    text-align: center;
    padding: 2rem;
}

.success-message.show {
    display: block;
}

.success-icon {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: 1rem;
}

.success-message h3 {
    color: #4caf50;
    margin-bottom: 1rem;
}

.btn-success {
    background: #4caf50;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 1rem;
}

/* Ship Features Section */
.ship-features {
    padding: 4rem 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e3c72;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.feature-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Tours Section */
.tours-section {
    padding: 4rem 0;
}

.tour-group {
    margin-bottom: 4rem;
}

.tour-group-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tour-group-subtitle {
    color: #666;
    margin-top: 0.5rem;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.tour-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.tour-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.05);
}

.tour-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    z-index: 100;
}

.tour-badge.vizesiz {
    background: #4caf50;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.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);
    position: absolute;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 100;
}

.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;
    opacity: 0.8;
    z-index: -1;
}

.tour-badge i {
    position: relative;
    z-index: 101;
}

.tour-badge span {
    position: relative;
    z-index: 101;
}

.tour-price-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 1rem;
    color: white;
}

.price-overlay-content {
    text-align: right;
}

.price-start-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

.price-overlay-main {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 0.5rem;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
}

.price-currency-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.price-currency {
    font-size: 0.9rem;
    font-weight: 600;
}

.price-overlay-note {
    font-size: 0.7rem;
    opacity: 0.7;
}

.tour-content {
    padding: 1.5rem;
}

.tour-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1e3c72;
}

.tour-dates {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.date-item {
    background: #f0f0f0;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.tour-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #666;
}

.tour-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tour-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
}

.btn-tour {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.btn-tour:first-child {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.btn-tour:first-child:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(96, 197, 209, 0.3);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white !important;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    white-space: nowrap;
    flex: 1;
}

.btn-whatsapp:hover {
    background: #128c7e;
}

/* Facilities Section */
.facilities-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.facility-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facility-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.facility-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.facility-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.facility-item p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.facility-detail {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.5rem;
}

/* 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: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.total-label {
    font-size: 1rem;
    color: var(--text-light);
}

.cabins-special {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding: 0 2rem;
}

.special-item {
    text-align: center;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    background: var(--bg-light);
    flex: 1;
}

.special-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.special-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cruise Guide Section */
.cruise-guide-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.guide-header {
    text-align: center;
    margin-bottom: 3rem;
}

.guide-subtitle {
    opacity: 0.9;
    margin-top: 1rem;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.guide-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-5px);
}

.guide-card-highlight {
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.3);
}

.guide-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.guide-card-header i {
    font-size: 2rem;
    color: #60C5D1;
}

.guide-card-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.guide-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.guide-item i {
    color: #60C5D1;
    margin-top: 0.2rem;
}

.guide-item p {
    flex: 1;
    line-height: 1.5;
}

.guide-intro {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.guide-schedule h4 {
    margin-bottom: 1rem;
    color: #60C5D1;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.schedule-item i {
    color: #60C5D1;
    width: 20px;
}

.guide-checklist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checklist-item i {
    color: #4caf50;
    margin-top: 0.2rem;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.contact-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-channel-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-channel-card:hover {
    transform: translateY(-5px);
}

.channel-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.channel-icon.whatsapp {
    background: #25d366;
}

.channel-icon.phone {
    background: #60C5D1;
}

.contact-channel-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #60C5D1;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-link:hover {
    text-decoration: underline;
}

.sales-offices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.office-group {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.office-group-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.office-group-header i {
    font-size: 1.5rem;
    color: #60C5D1;
}

.office-group-header h3 {
    color: #333;
}

.office-phones {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.office-phone {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #60C5D1;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.office-phone:hover {
    color: #1e3c72;
}

/* Footer */
.footer {
    background: #1e3c72;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 60px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.footer-section p {
    opacity: 0.8;
    margin-bottom: 1rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #60C5D1;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.footer-section p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-wrapper {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .phone {
        display: none;
    }

    .banner-desktop {
        display: none;
    }

    .banner-mobile {
        display: block;
        height: 400px;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .facilities-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 1rem;
    }

    .tours-grid {
        grid-template-columns: 1fr;
    }

    .cabins-grid {
        grid-template-columns: 1fr;
    }

    .cabins-footer {
        flex-direction: column;
        gap: 2rem;
    }

    .cabins-footer::before {
        display: none;
    }

    .cabins-total {
        text-align: center;
        padding: 1rem;
        border: 2px solid var(--border-color);
        border-radius: 10px;
        background: var(--bg-light);
        flex: none;
        min-width: 150px;
        width: auto;
    }

    .cabins-special {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        flex: 1;
        padding: 0;
    }

    .special-item {
        flex: 1;
        max-width: none;
        width: 100%;
    }

    .guide-grid {
        grid-template-columns: 1fr;
    }

    .contact-channels {
        grid-template-columns: 1fr;
    }

    .sales-offices {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .form-wrapper {
        padding: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 1rem;
    }

    .feature-card,
    .facility-item,
    .contact-channel-card,
    .office-group {
        padding: 1.5rem;
    }

    .tour-card {
        margin: 0 -10px;
        border-radius: 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .tour-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .tour-badge {
        padding: 0.5rem 1rem;
        border-radius: 25px;
        font-size: 0.8rem;
        gap: 0.3rem;
    }

    .btn-tour {
        font-size: 0.75rem;
        padding: 0.6rem 1rem;
    }

    .guide-card {
        padding: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #60C5D1;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Error States */
.error {
    border-color: #f44336 !important;
}

.error-message {
    color: #f44336;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

/* Success States */
.success {
    border-color: #4caf50 !important;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

/* Animations */
@keyframes rotate-shine {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Focus States */
.form-group input:focus,
.form-group select:focus {
    box-shadow: 0 0 0 3px rgba(96, 197, 209, 0.1);
}

.btn-submit:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(96, 197, 209, 0.3);
}

/* Print Styles */
@media print {
    .header,
    .contact-form-section,
    .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .section-title {
        font-size: 18pt;
    }
}
