/* Marine World Custom Styles */

/* Modern About Section */
.about-section-modern {
    padding: 40px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

.ocean-wave-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: rotate(180deg);
}

.modern-about-wrapper {
    position: relative;
    z-index: 10;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.title-block {
    margin-bottom: 20px;
}

.subtitle {
    display: inline-block;
    color: #0084ff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    padding-left: 50px;
}

.subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #0084ff, transparent);
}

.main-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a1a;
    margin: 0;
}

.main-title span {
    display: block;
}

.main-title .highlight {
    background: linear-gradient(135deg, #0084ff, #00bfff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 132, 255, 0.15);
    border: 1px solid rgba(0, 132, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 132, 255, 0.05) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.glass-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
}

.glass-card .lead-text {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.glass-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid rgba(0, 132, 255, 0.1);
    border-bottom: 1px solid rgba(0, 132, 255, 0.1);
}

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

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #0084ff;
    margin-bottom: 5px;
    font-family: 'Rubik', sans-serif;
}

.stat-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modern-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #0084ff, #00bfff);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.modern-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #00bfff, #0084ff);
    transition: width 0.3s ease;
    z-index: -1;
}

.modern-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 132, 255, 0.3);
    color: white;
}

.modern-btn:hover::before {
    width: 100%;
}

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

.modern-btn:hover svg {
    transform: translateX(5px);
}

/* Secondary variant of modern-btn for hero section */
.modern-btn.secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #0084ff;
    border: 2px solid rgba(0, 132, 255, 0.2);
    backdrop-filter: blur(10px);
}

.modern-btn.secondary::before {
    background: rgba(0, 132, 255, 0.1);
}

.modern-btn.secondary:hover {
    border-color: #0084ff;
    color: #0084ff;
}

.visual-content {
    position: relative;
    height: 600px;
}

.image-stack {
    position: relative;
    height: 100%;
    width: 100%;
}

.main-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 132, 255, 0.2);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 132, 255, 0.2) 0%, transparent 100%);
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 10;
}

.floating-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 132, 255, 0.2);
}

.floating-card img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.floating-card span {
    font-weight: 600;
    color: #333;
}

.floating-card.card-1 {
    top: 10%;
    left: 5%;
    animation: floatCard1 6s ease-in-out infinite;
}

.floating-card.card-2 {
    top: 20%;
    right: 0;
    animation: floatCard2 8s ease-in-out infinite;
}

.floating-card.card-3 {
    bottom: 15%;
    left: 10%;
    animation: floatCard3 7s ease-in-out infinite;
}

@keyframes floatCard1 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes floatCard2 {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-15px) translateX(-10px); }
}

@keyframes floatCard3 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-25px); }
}

.experience-badge {
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #0084ff, #00bfff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 132, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

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

.badge-content {
    text-align: center;
    color: white;
}

.badge-content .years {
    display: block;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 5px;
}

.badge-content .text {
    font-size: 12px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Modern Our Fishes Section */
.our-fishes-modern {
    padding: 100px 0;
    background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.bubbles-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -100px;
    background: radial-gradient(circle, rgba(0, 132, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: rise 20s infinite ease-in;
}

.bubble:nth-child(1) {
    width: 80px;
    height: 80px;
    left: 10%;
    animation-duration: 20s;
    animation-delay: 0s;
}

.bubble:nth-child(2) {
    width: 120px;
    height: 120px;
    left: 30%;
    animation-duration: 25s;
    animation-delay: 2s;
}

.bubble:nth-child(3) {
    width: 60px;
    height: 60px;
    left: 50%;
    animation-duration: 18s;
    animation-delay: 4s;
}

.bubble:nth-child(4) {
    width: 100px;
    height: 100px;
    left: 70%;
    animation-duration: 22s;
    animation-delay: 6s;
}

.bubble:nth-child(5) {
    width: 90px;
    height: 90px;
    left: 85%;
    animation-duration: 20s;
    animation-delay: 8s;
}

@keyframes rise {
    0% {
        bottom: -100px;
        transform: translateX(0);
    }
    50% {
        transform: translateX(100px);
    }
    100% {
        bottom: 120%;
        transform: translateX(-100px);
    }
}

.our-fishes-modern .auto-container {
    position: relative;
    z-index: 10;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 30px;
}

.title-wrapper .section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #0084ff, #00bfff);
    color: white;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0;
}

.section-title .subtitle {
    display: block;
    font-size: 32px;
    font-weight: 400;
    color: #666;
    margin-top: 10px;
}

.section-stats {
    display: flex;
    gap: 30px;
}

.stat-bubble {
    background: white;
    padding: 25px 35px;
    border-radius: 100px;
    box-shadow: 0 15px 40px rgba(0, 132, 255, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.stat-bubble:hover {
    transform: translateY(-5px);
}

.stat-bubble .number {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #0084ff, #00bfff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-bubble .label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.content-wrapper {
    margin-bottom: 80px;
}

.description-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.desc-card {
    position: relative;
}

.desc-card .card-inner {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 132, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.desc-card:hover .card-inner {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 132, 255, 0.15);
}

.wave-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0084ff, #00bfff, #0084ff);
    background-size: 200% 100%;
    animation: wave-animation 3s linear infinite;
}

@keyframes wave-animation {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.desc-card h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.desc-card p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.species-showcase {
    position: relative;
    padding: 30px 0;
    min-height: 300px;
    overflow: visible;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 280px;
    mask: linear-gradient(90deg, transparent, white 5%, white 95%, transparent);
    -webkit-mask: linear-gradient(90deg, transparent, white 5%, white 95%, transparent);
    z-index: 1;
    padding: 0 60px;
}

.marquee-track {
    display: flex;
    gap: 20px;
    animation: marqueeScroll 60s linear infinite;
    width: max-content;
}

.marquee-track:hover {
    animation-play-state: paused;
}

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

.marquee-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    height: 60px;
    z-index: 15;
    pointer-events: none;
}

.marquee-prev,
.marquee-next {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(0, 132, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    box-shadow: 0 5px 15px rgba(0, 132, 255, 0.3);
    z-index: 20;
}

.marquee-prev:hover,
.marquee-next:hover {
    background: #0084ff;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 132, 255, 0.5);
}

.marquee-prev:active,
.marquee-next:active {
    transform: scale(0.95);
}

.marquee-prev {
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.marquee-next {
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

.species-card {
    position: relative;
    height: 250px;
    width: 185px;
    flex-shrink: 0;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 132, 255, 0.15);
    transition: all 0.4s ease;
    cursor: pointer;
}

.species-card.featured {
    grid-column: span 2;
}

.species-card:hover .card-front {
    opacity: 0;
    transform: scale(0.95);
}

.species-card:hover .card-back {
    opacity: 1;
    transform: scale(1);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.4s ease;
}

.card-front {
    background: white;
    box-shadow: 0 15px 40px rgba(0, 132, 255, 0.1);
    border: none;
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.species-card:hover .card-front {
    box-shadow: 0 20px 50px rgba(0, 132, 255, 0.15);
}

.card-back {
    background: linear-gradient(135deg, #0084ff, #00bfff);
    opacity: 0;
    transform: scale(1.05);
    z-index: 1;
}

.card-back h4 {
    color: #ffffff !important;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card-back p {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff !important;
    margin: 0;
    padding: 0 10px;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 132, 255, 0.2));
}

.ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(0, 132, 255, 0.3);
    animation: ripple-effect 2s infinite ease-in-out;
}

@keyframes ripple-effect {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.species-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px 0;
}

.category-tag {
    display: inline-block;
    padding: 5px 15px;
    background: linear-gradient(135deg, #0084ff20, #00bfff20);
    color: #0084ff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fishes-type-section {
    padding: 30px 0;
    background: #f8f9fa;
}

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

.fish-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.fish-card:hover {
    transform: translateY(-10px);
}

.fish-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fish-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
}

.fish-card-content h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 10px;
}

.fish-card-content p {
    color: rgba(255,255,255,0.9);
    margin: 0;
}

.stats-box {
    position: absolute;
    top: 50px;
    right: 50px;
    text-align: center;
}

.stats-box h2 {
    font-size: 48px;
    color: #0084ff;
    margin-bottom: 10px;
}

.stats-box p {
    color: #666;
    font-size: 18px;
}

.tickets-section {
    padding: 30px 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.ticket-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.ticket-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.ticket-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.ticket-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: #e3f2fd;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticket-icon i {
    font-size: 40px;
    color: #0084ff;
}

.ticket-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #222;
}

.ticket-price {
    font-size: 36px;
    color: #0084ff;
    font-weight: 700;
    margin-bottom: 20px;
}

.ticket-price span {
    font-size: 20px;
    color: #666;
}

.ticket-btn {
    display: inline-block;
    padding: 12px 35px;
    background: #0084ff;
    color: white;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ticket-btn:hover {
    background: #0066cc;
    color: white;
}

.attractions-carousel {
    margin-top: 60px;
}

.attraction-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    margin: 0 10px;
}

.attraction-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.attraction-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
}

.attraction-overlay h3 {
    color: white;
    font-size: 24px;
    margin: 0;
    text-transform: uppercase;
    font-weight: 700;
}

.info-area-section {
    padding: 30px 0;
    background: linear-gradient(135deg, #e8f4ff 0%, #ffffff 100%);
}

.info-content {
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.info-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #222;
}

.info-content h3 {
    color: #0084ff;
    font-size: 24px;
    margin-bottom: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 40px;
    color: white;
}

.whale-decoration {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.1;
    width: 400px;
    height: auto;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .visual-content {
        height: 500px;
    }
    
    .main-title {
        font-size: 42px;
    }
    
    .showcase-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .species-card.featured {
        grid-column: span 1;
    }
    
    .fish-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-section-modern {
        padding: 80px 0;
    }
    
    .main-title {
        font-size: 36px;
    }
    
    .glass-card {
        padding: 30px;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .floating-card {
        display: none;
    }
    
    .main-image {
        width: 100%;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
    }
    
    .badge-content .years {
        font-size: 24px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .description-cards {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .section-title .subtitle {
        font-size: 24px;
    }
    
    .showcase-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 15px;
    }
    
    .species-card {
        height: 200px;
    }
    
    .fish-cards,
    .ticket-cards {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .species-showcase {
        padding: 25px 0;
        min-height: 280px;
    }

    .marquee-container {
        padding: 0 50px;
    }

    .marquee-nav {
        width: 100vw;
        left: 50%;
        margin-left: -50vw;
    }

    .marquee-prev {
        left: 20px;
    }

    .marquee-next {
        right: 20px;
    }

    .species-card {
        width: 170px;
        height: 230px;
    }

    .marquee-track {
        gap: 18px;
    }

    .marquee-nav {
        width: calc(100% + 60px);
        left: -30px;
    }

    .marquee-prev,
    .marquee-next {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .marquee-track {
        animation-duration: 40s;
        gap: 15px;
    }
    
    .species-card {
        width: 160px;
        height: 220px;
    }
    
    .species-showcase {
        padding: 20px 0;
        min-height: 260px;
    }
    
    .marquee-container {
        height: 260px;
        padding: 0 40px;
    }
    
    .marquee-nav {
        width: 100vw;
        left: 50%;
        margin-left: -50vw;
    }

    .marquee-prev {
        left: 15px;
    }

    .marquee-next {
        right: 15px;
    }
    
    .marquee-prev,
    .marquee-next {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== FISHES TYPE MODERN SECTION ===== */
.fishes-type-modern {
    position: relative;
    padding: 10px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

.ocean-waves-top svg, .ocean-waves-bottom svg {
    width: 100%;
    height: 80px;
    display: block;
}

.ocean-waves-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.ocean-waves-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.section-header-modern {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.section-header-modern .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.section-header-modern .title-block {
    flex: 1;
    text-align: left;
}

.section-header-modern .section-tag {
    display: inline-block;
    background: linear-gradient(45deg, #0084ff, #00a8ff);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-header-modern .main-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}

.section-header-modern .main-title .highlight {
    color: #0084ff;
}

.section-header-modern .main-title span {
    display: block;
}

.stats-container {
    display: flex;
    gap: 30px;
}

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

.stat-inner {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0084ff, #00a8ff);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 132, 255, 0.3);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.stat-plus {
    font-size: 20px;
    color: white;
    font-weight: 600;
}

.stat-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fish-categories-carousel {
    position: relative;
    margin-bottom: 20px;
    padding: 20px 0 40px 0;
    min-height: 580px;
    overflow: visible;
}

.fish-categories-carousel .carousel-container {
    position: relative;
    overflow: visible;
    border-radius: 0;
    min-height: 520px;
    padding: 10px 100px 40px 100px;
}

.carousel-track {
    display: flex;
    gap: 25px;
    animation: fishCarouselFloat 80s linear infinite;
    width: max-content;
    padding-bottom: 20px;
}

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

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

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    height: 60px;
    z-index: 15;
    pointer-events: none;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0084ff, #00bfff);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    box-shadow: 0 8px 25px rgba(0, 132, 255, 0.3);
    z-index: 20;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: linear-gradient(135deg, #00bfff, #0084ff);
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 132, 255, 0.4);
}

.carousel-prev {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-next {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.fish-category-card {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 480px;
    width: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.fish-category-card.featured {
    width: 320px;
    height: 480px;
}

.fish-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 132, 255, 0.2);
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 132, 255, 0.1), rgba(0, 168, 255, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.fish-category-card:hover .card-background {
    opacity: 1;
}

.card-image {
    position: relative;
    height: 60%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.fish-category-card:hover .card-image img {
    transform: scale(1.1);
}

.fish-category-card .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
}

.card-content {
    position: relative;
    padding: 25px;
    background: white;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fish-category-card .category-badge {
    display: inline-block;
    background: rgba(240, 245, 255, 1) !important;
    color: #0084ff !important;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    border: 1px solid rgba(0, 132, 255, 0.15);
    transition: all 0.3s ease;
    background-image: none !important;
    background-attachment: initial !important;
    background-origin: initial !important;
    background-clip: initial !important;
    background-size: initial !important;
    background-repeat: initial !important;
    background-position: initial !important;
    width: fit-content;
    white-space: nowrap;
}

.fish-category-card:hover .category-badge {
    background: rgba(0, 132, 255, 0.15) !important;
    color: #0066cc !important;
    border-color: rgba(0, 132, 255, 0.25);
    transform: translateY(-2px);
}

.card-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.card-content p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 15px;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.fish-stats {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: auto;
}

.stat-item {
    font-size: 12px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 5px;
}

.stat-item i {
    color: #0084ff;
    font-size: 14px;
}

.ecosystem-info {
    margin-top: 60px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.info-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0084ff, #00a8ff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.info-icon i {
    font-size: 32px;
    color: white;
}

.info-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 15px 0;
}

.info-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Fishes Type Modern */
@media (max-width: 1200px) {
    .fish-category-card.featured {
        grid-column: span 1;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .fishes-type-modern {
        padding: 10px 0;
    }
    
    .section-header-modern .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .section-header-modern .title-block {
        text-align: center;
    }
    
    .section-header-modern .main-title {
        font-size: 36px;
    }
    
    .stats-container {
        justify-content: center;
    }
    
    .stat-inner {
        width: 100px;
        height: 100px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .fish-categories-carousel {
        padding: 15px 0 30px 0;
        min-height: 480px;
    }
    
    .carousel-container {
        height: 460px;
        padding: 10px 80px 30px 80px;
    }
    
    .carousel-nav {
        width: 100vw;
        left: 50%;
        margin-left: -50vw;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .fish-category-card {
        height: 420px;
        width: 280px;
    }
    
    .fish-category-card.featured {
        width: 280px;
        height: 420px;
    }
    
    .fish-categories-carousel .attraction-card-modern {
        height: 420px;
        width: 280px;
    }
    
    .fish-categories-carousel .attraction-card-modern.featured {
        width: 280px;
        height: 420px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .section-header-modern .main-title {
        font-size: 28px;
    }
    
    .fish-categories-carousel {
        padding: 10px 0 25px 0;
        min-height: 440px;
    }
    
    .carousel-container {
        height: 420px;
        padding: 10px 60px 25px 60px;
    }
    
    .carousel-track {
        gap: 20px;
        animation-duration: 60s;
    }
    
    .carousel-nav {
        width: 100vw;
        left: 50%;
        margin-left: -50vw;
    }
    
    .carousel-prev {
        left: 20px;
    }
    
    .carousel-next {
        right: 20px;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .fish-category-card {
        height: 380px;
        width: 260px;
    }
    
    .fish-category-card.featured {
        width: 260px;
        height: 380px;
    }
    
    .fish-categories-carousel .attraction-card-modern {
        height: 380px;
        width: 260px;
    }
    
    .fish-categories-carousel .attraction-card-modern.featured {
        width: 260px;
        height: 380px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .card-content h3 {
        font-size: 20px;
    }
    
    .info-card {
        padding: 25px;
    }
}

/* Attraction cards in carousel layout */
.fish-categories-carousel .attraction-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 480px;
    width: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    backdrop-filter: none;
    border: none;
}

.fish-categories-carousel .attraction-card-modern.featured {
    width: 320px;
    height: 480px;
}

.fish-categories-carousel .attraction-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 132, 255, 0.2);
}

.fish-categories-carousel .attraction-image {
    position: relative;
    height: 60%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.fish-categories-carousel .attraction-card-modern:hover .attraction-image img {
    transform: scale(1.1);
}

.fish-categories-carousel .attraction-content {
    position: relative;
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fish-categories-carousel .attraction-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 132, 255, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
    width: fit-content;
    white-space: nowrap;
    display: inline-block;
}

.fish-categories-carousel .attraction-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
    margin: 0;
}

.fish-categories-carousel .attraction-content p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.fish-categories-carousel .attraction-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: auto;
}

.fish-categories-carousel .feature-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.fish-categories-carousel .attraction-icon {
    display: none;
}

/* Fix image overlay for attractions carousel cards */
.fish-categories-carousel .attraction-card-modern .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
    z-index: 2;
}

.fishes-type-modern .section-subtitle {
    text-align: left !important;
    margin: 15px 0 0 0 !important;
    max-width: none !important;
}

.fishes-type-modern .title-block .section-subtitle {
    text-align: left !important;
}
/* End Fishes Type Modern Section */

/* ===== GALLERY SECTION ENHANCEMENTS ===== */
.gallery-section {
    padding: 30px 0 0 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.gallery-section .sec-title h2 {
    font-size: 48px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 60px;
}

.gallery-block-one {
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.4s ease;
}

.gallery-block-one:hover {
    transform: none;
    box-shadow: none;
}

.gallery-block-one .inner-box {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.gallery-block-one .image-box {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
}

.gallery-block-one .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-block-one:hover .image-box img {
    transform: scale(1.1);
}

.gallery-block-one .content-box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    padding: 30px 25px 25px;
    z-index: 2;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.gallery-block-one:hover .content-box {
    opacity: 0;
}

.gallery-block-one .content-box h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
}

.gallery-block-one .content-box h3 a {
    color: white !important;
    text-decoration: none;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
}

.gallery-block-one .overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 132, 255, 0.9), rgba(0, 168, 255, 0.9));
    padding: 40px 25px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.9);
    transition: all 0.4s ease;
    z-index: 3;
}

.gallery-block-one:hover .overlay-content {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.gallery-block-one .overlay-content h3 {
    margin: 0 0 15px 0;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.gallery-block-one .overlay-content h3 a {
    color: white !important;
    text-decoration: none;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.gallery-block-one .overlay-content p {
    color: white !important;
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 25px 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    opacity: 0.95;
}

.gallery-block-one .overlay-content .link {
    margin-top: auto;
}

.gallery-block-one .overlay-content .link a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white !important;
    font-size: 18px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.gallery-block-one .overlay-content .link a:hover {
    background: white;
    color: #0084ff !important;
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

/* Owl Carousel Navigation Enhancement */
.gallery-carousel.owl-carousel .owl-nav {
    margin: 0;
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 10;
}

.gallery-carousel.owl-carousel .owl-nav button {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(0, 132, 255, 0.9) !important;
    border-radius: 50%;
    font-size: 18px !important;
    color: white !important;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 132, 255, 0.3);
}

.gallery-carousel.owl-carousel .owl-nav button:hover {
    background: #0084ff !important;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 132, 255, 0.5);
}

.gallery-carousel.owl-carousel .owl-nav .owl-prev {
    left: -25px;
}

.gallery-carousel.owl-carousel .owl-nav .owl-next {
    right: -25px;
}

/* Responsive Design for Gallery */
@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0 0 0;
    }
    
    .gallery-section .sec-title h2 {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .gallery-block-one .inner-box {
        height: 280px;
    }
    
    .gallery-block-one .content-box {
        padding: 20px 20px 15px;
    }
    
    .gallery-block-one .content-box h3 {
        font-size: 20px;
    }
    
    .gallery-block-one .overlay-content {
        padding: 30px 20px 20px;
    }
    
    .gallery-block-one .overlay-content h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .gallery-block-one .overlay-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .gallery-carousel.owl-carousel .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 16px !important;
    }
    
    .gallery-carousel.owl-carousel .owl-nav .owl-prev {
        left: -20px;
    }
    
    .gallery-carousel.owl-carousel .owl-nav .owl-next {
        right: -20px;
    }
}

@media (max-width: 480px) {
    .gallery-section .sec-title h2 {
        font-size: 28px;
    }
    
    .gallery-block-one .inner-box {
        height: 250px;
    }
    
    .gallery-block-one .content-box h3 {
        font-size: 18px;
    }
    
    .gallery-block-one .overlay-content h3 {
        font-size: 20px;
    }
    
    .gallery-carousel.owl-carousel .owl-nav .owl-prev {
        left: -15px;
    }
    
    .gallery-carousel.owl-carousel .owl-nav .owl-next {
        right: -15px;
    }
}
/* End Gallery Section Enhancements */

/* ===== TICKETS MODERN SECTION ===== */
.tickets-modern {
    position: relative;
    padding: 40px 0;
    background: linear-gradient(135deg, #f1f9ff 0%, #e6f3ff 100%);
    overflow: hidden;
}

.tickets-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.floating-fish {
    position: absolute;
    opacity: 0.1;
    animation: floatFish 20s infinite ease-in-out;
}

.fish-1 {
    width: 120px;
    height: auto;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.fish-2 {
    width: 80px;
    height: auto;
    top: 60%;
    right: 10%;
    animation-delay: 7s;
}

.fish-3 {
    width: 100px;
    height: auto;
    top: 30%;
    right: 20%;
    animation-delay: 14s;
}

.fish-4 {
    width: 70px;
    height: auto;
    top: 75%;
    left: 15%;
    animation-delay: 3s;
    transform: scaleX(-1);
}

.fish-5 {
    width: 50px;
    height: auto;
    top: 50%;
    right: 30%;
    animation-delay: 10s;
}

.fish-6 {
    width: 80px;
    height: auto;
    top: 80%;
    left: 40%;
    animation-delay: 17s;
    transform: scaleX(-1);
}

@keyframes floatFish {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(2deg);
    }
    50% {
        transform: translateY(10px) rotate(-1deg);
    }
    75% {
        transform: translateY(-15px) rotate(1deg);
    }
}

.wave-pattern {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
}

.wave-pattern svg {
    width: 100%;
    height: 100%;
}

.section-header-tickets {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 132, 255, 0.1);
    border: 2px solid rgba(0, 132, 255, 0.2);
    padding: 12px 24px;
    border-radius: 30px;
    color: #0084ff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.section-badge i {
    font-size: 16px;
}

.section-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 20px 0;
}

.section-title .main-text {
    color: #1a202c;
    display: block;
}

.section-title .highlight-text {
    color: #0084ff;
    display: block;
}

.section-subtitle {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.ticket-card-modern {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.ticket-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 132, 255, 0.2);
}

.ticket-header {
    padding: 30px 30px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.ticket-icon-wrapper {
    width: 70px;
    height: 70px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0084ff, #00a8ff);
    border-radius: 50%;
    opacity: 0.1;
}

.ticket-icon-wrapper.senior .icon-bg {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.ticket-icon-wrapper.child .icon-bg {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.ticket-icon-wrapper i {
    font-size: 28px;
    color: #0084ff;
    position: relative;
    z-index: 2;
}

.ticket-icon-wrapper.senior i {
    color: #10b981;
}

.ticket-icon-wrapper.child i {
    color: #f59e0b;
}

.ticket-popular,
.ticket-discount,
.ticket-special {
    background: linear-gradient(45deg, #0084ff, #00a8ff);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ticket-discount {
    background: linear-gradient(45deg, #10b981, #34d399);
}

.ticket-special {
    background: linear-gradient(45deg, #f59e0b, #fbbf24);
}

.ticket-content {
    padding: 0 30px 20px;
}

.ticket-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 8px 0;
}

.age-range {
    color: #64748b;
    font-size: 16px;
    margin: 0 0 25px 0;
    font-weight: 500;
}

.features-list {
    space-y: 12px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.feature i {
    color: #10b981;
    font-size: 14px;
    width: 16px;
}

.feature span {
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

.ticket-pricing {
    padding: 25px 30px 30px;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
}

.price-display {
    text-align: center;
    margin-bottom: 20px;
}

.currency {
    font-size: 20px;
    color: #64748b;
    font-weight: 600;
    vertical-align: top;
}

.amount {
    font-size: 42px;
    font-weight: 800;
    color: #1a202c;
    line-height: 1;
}

.period {
    display: block;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    margin-top: 5px;
}

.ticket-btn-modern {
    width: 100%;
    background: linear-gradient(135deg, #0084ff, #00a8ff);
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ticket-btn-modern:hover {
    background: linear-gradient(135deg, #0066cc, #0084ff);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 132, 255, 0.3);
}

.ticket-info-banner {
    background: linear-gradient(135deg, rgba(0, 132, 255, 0.1), rgba(0, 168, 255, 0.05));
    border: 2px solid rgba(0, 132, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.info-content {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0084ff, #00a8ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    color: white;
    font-size: 24px;
}

.info-text {
    flex: 1;
    min-width: 300px;
}

.info-text h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 8px 0;
}

.info-text p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.contact-btn {
    background: linear-gradient(135deg, #0084ff, #00a8ff);
    color: white !important;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.contact-btn:hover {
    background: linear-gradient(135deg, #0066cc, #0084ff);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 132, 255, 0.3);
}

.operating-hours {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.hours-card,
.location-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.hours-icon,
.location-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0084ff, #00a8ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.hours-icon i,
.location-icon i {
    color: white;
    font-size: 20px;
}

.hours-content h4,
.location-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 15px 0;
}

.time-slot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}

.time-slot:last-child {
    border-bottom: none;
}

.day {
    font-weight: 500;
    color: #1a202c;
}

.time {
    color: #0084ff;
    font-weight: 600;
}

.location-content p {
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.direction-btn {
    background: rgba(0, 132, 255, 0.1);
    color: #0084ff !important;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.direction-btn:hover {
    background: rgba(0, 132, 255, 0.2);
}

/* Responsive Design for Tickets */
@media (max-width: 768px) {
    .tickets-modern {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .tickets-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ticket-card-modern {
        margin: 0 10px;
    }
    
    .info-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .info-text {
        min-width: auto;
    }
    
    .operating-hours {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .ticket-header {
        padding: 25px 25px 15px;
    }
    
    .ticket-content {
        padding: 0 25px 15px;
    }
    
    .ticket-pricing {
        padding: 20px 25px 25px;
    }
    
    .amount {
        font-size: 36px;
    }
    
    .hours-card,
    .location-card {
        padding: 25px;
    }
}
/* End Tickets Modern Section */

/* ===== ATTRACTIONS MODERN SECTION ===== */
.attractions-modern {
    position: relative;
    padding: 40px 0;
    background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 50%, #2563eb 100%);
    overflow: hidden;
    color: white;
}

.attractions-bg {
    display: none !important; /* Hidden to remove background elements */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.underwater-elements {
    display: none !important; /* Hidden to remove background elements */
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.floating-bubble {
    position: absolute;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 70%);
    border-radius: 50%;
    animation: floatBubble 15s infinite ease-in-out;
}

.bubble-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.bubble-2 {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 20%;
    animation-delay: 5s;
}

.bubble-3 {
    width: 80px;
    height: 80px;
    top: 70%;
    left: 70%;
    animation-delay: 10s;
}

.bubble-4 {
    width: 30px;
    height: 30px;
    top: 40%;
    right: 10%;
    animation-delay: 12s;
}

@keyframes floatBubble {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) scale(1.1);
        opacity: 0.6;
    }
}

.seaweed {
    display: none !important; /* Hidden to remove background elements */
    position: absolute;
    bottom: 0;
    width: 4px;
    background: linear-gradient(0deg, #059669 0%, #10b981 100%);
    border-radius: 2px;
    animation: sway 8s infinite ease-in-out;
}

.seaweed-1 {
    height: 200px;
    left: 10%;
    animation-delay: 0s;
}

.seaweed-2 {
    height: 150px;
    right: 15%;
    animation-delay: 4s;
}

@keyframes sway {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(3deg);
    }
}


.attractions-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-badge-attractions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 30px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.section-badge-attractions i {
    font-size: 16px;
    color: #fbbf24;
}

.attractions-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 20px 0;
}

.attractions-title .main-text {
    color: white;
    display: block;
}

.attractions-title .highlight-text {
    color: #fbbf24;
    display: block;
}

.attractions-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Special layout: Row 1: 3 cards, Row 2: 2 cards */
@media (min-width: 1200px) {
    .attractions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* First 3 cards (Arapaima, Sting Ray, Ornamental) fill first row */
    .attractions-grid .attraction-card-modern:nth-child(1),
    .attractions-grid .attraction-card-modern:nth-child(2),
    .attractions-grid .attraction-card-modern:nth-child(3) {
        grid-column: span 1;
    }
    
    /* Fourth card (Silver Alligator Gar) starts second row */
    .attractions-grid .attraction-card-modern:nth-child(4) {
        grid-column: span 1;
    }
    
    /* CTA takes remaining 2 columns in second row */
    .attractions-grid .attractions-cta {
        grid-column: span 2;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .attractions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.attraction-card-modern {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.attraction-card-modern.featured {
    grid-column: span 2;
}

.attraction-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.attraction-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.attraction-card-modern:hover .attraction-image img {
    transform: scale(1.1);
}

.attraction-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #0084ff, #00a8ff);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
}

.attraction-badge.tech {
    background: linear-gradient(45deg, #8b5cf6, #a78bfa);
}

.attraction-badge.activity {
    background: linear-gradient(45deg, #f59e0b, #fbbf24);
}

.attraction-badge.nature {
    background: linear-gradient(45deg, #10b981, #34d399);
}

.attraction-badge.kids {
    background: linear-gradient(45deg, #ec4899, #f472b6);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

/* Fix for fishes categories grid section image overlay */
.attractions-modern .attraction-card-modern .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
    z-index: 2;
}

/* Fix for about section main-image overlay */
.main-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 132, 255, 0.2) 0%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

/* Modern Footer Styling */
.modern-footer {
    position: relative;
    background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 50%, #2563eb 100%);
    color: #ffffff;
    overflow: hidden;
    padding: 0;
}


.footer-content {
    position: relative;
    z-index: 10;
    padding: 80px 0 60px 0;
}

.footer-main {
    margin-bottom: 40px;
}

/* Brand Widget */
.brand-widget .brand-section {
    padding-right: 20px;
}

.brand-widget .footer-logo {
    margin-bottom: 25px;
}

.brand-widget .footer-logo img {
    max-height: 60px;
    filter: brightness(1.2);
}

.brand-description {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 30px 0;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: #0084ff;
    border-color: #0084ff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 132, 255, 0.3);
    color: #ffffff;
    text-decoration: none;
}

/* Widget Titles */
.footer-widget .widget-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 30px 0;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget .widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #0084ff, #00bfff);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 3px 0;
    line-height: 1.2;
    white-space: nowrap;
}

.footer-links a i {
    font-size: 10px;
    color: #0084ff;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #0084ff;
    text-decoration: none;
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: translateX(3px);
}

/* Contact Widget */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.contact-icon i {
    color: #0084ff;
    font-size: 18px;
}

.contact-details {
    flex: 1;
    padding-top: 5px;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.contact-details a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #0084ff;
    text-decoration: none;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright-text p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 14px;
}

.footer-links-bottom {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
    align-items: center;
}

.footer-links-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
    white-space: nowrap;
    line-height: 1.2;
    flex-shrink: 0;
}

.footer-links-bottom a:hover {
    color: #0084ff;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 991px) {
    .footer-content {
        padding: 60px 0 40px 0;
    }
    
    .brand-widget .brand-section {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links-bottom {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .footer-content {
        padding: 50px 0 30px 0;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 20px;
    }
    
    .footer-links-bottom {
        justify-content: center;
        gap: 8px;
    }
    
    .footer-links-bottom a {
        font-size: 11px;
    }
    
    .contact-info {
        gap: 20px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .footer-links-bottom {
        flex-direction: column;
        gap: 10px;
    }
}

/* Modern Info Area Section - Hero Style Layout */
.info-area-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 50%, #e6f3ff 100%);
    position: relative;
    overflow: hidden;
}

.ocean-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-particle {
    position: absolute;
    background: rgba(0, 132, 255, 0.1);
    border-radius: 50%;
    animation: floatParticle 15s infinite ease-in-out;
}

.particle-1 {
    width: 8px;
    height: 8px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    width: 12px;
    height: 12px;
    top: 60%;
    left: 80%;
    animation-delay: -3s;
}

.particle-3 {
    width: 6px;
    height: 6px;
    top: 80%;
    left: 20%;
    animation-delay: -6s;
}

.particle-4 {
    width: 10px;
    height: 10px;
    top: 30%;
    left: 70%;
    animation-delay: -9s;
}

.particle-5 {
    width: 14px;
    height: 14px;
    top: 70%;
    left: 50%;
    animation-delay: -12s;
}

@keyframes floatParticle {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.8;
    }
}

.wave-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 0.6;
    animation: waveFlow 20s infinite linear;
}

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

.info-wrapper {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: start;
}

.hero-content {
    max-width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 132, 255, 0.1);
    color: #0084ff;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(0, 132, 255, 0.2);
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    font-size: 14px;
}

.hero-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 40px 0;
}

.title-main {
    display: block;
    color: #1a202c;
    margin-bottom: 10px;
}

.title-sub {
    display: block;
    background: linear-gradient(135deg, #0084ff, #00bfff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 38px;
}

.hero-description {
    margin-bottom: 40px;
}

.hero-description .lead-paragraph {
    font-size: 20px;
    font-weight: 500;
    color: #2d3748;
    line-height: 1.6;
    margin: 0 0 30px 0;
}

.hero-description p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
    margin: 0 0 20px 0;
}

.hero-description .conclusion {
    font-size: 18px;
    font-weight: 600;
    color: #0084ff;
    line-height: 1.6;
    margin: 30px 0 0 0;
    padding: 20px;
    background: rgba(0, 132, 255, 0.05);
    border-left: 4px solid #0084ff;
    border-radius: 0 8px 8px 0;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}


.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stats-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.showcase-stat {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(0, 132, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 132, 255, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.showcase-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 132, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.showcase-stat:hover::before {
    left: 100%;
}

.showcase-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 132, 255, 0.15);
}

.stat-visual {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0084ff, #00bfff);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-bottom: 15px;
    box-shadow: 0 8px 20px rgba(0, 132, 255, 0.25);
}

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

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #1a202c;
    line-height: 1;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 18px 20px;
    border-radius: 15px;
    border: 1px solid rgba(0, 132, 255, 0.1);
    box-shadow: 0 10px 25px rgba(0, 132, 255, 0.08);
    transition: all 0.3s ease;
    font-size: 15px;
    color: #2d3748;
    font-weight: 500;
}

.highlight-item:hover {
    transform: translateX(10px);
    background: rgba(0, 132, 255, 0.05);
    box-shadow: 0 15px 35px rgba(0, 132, 255, 0.15);
}

.highlight-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0084ff, #00bfff);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .title-sub {
        font-size: 32px;
    }
    
    .info-area-modern {
        padding: 80px 0;
    }
    
    .stats-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .showcase-stat {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .info-area-modern {
        padding: 60px 0;
    }
    
    .info-wrapper {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .title-sub {
        font-size: 24px;
    }
    
    .hero-description .lead-paragraph {
        font-size: 18px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    
    .stats-showcase {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .showcase-stat {
        padding: 18px;
        text-align: center;
    }
    
    .stat-details {
        text-align: center;
    }
    
    .highlight-item {
        justify-content: center;
        text-align: center;
        padding: 15px;
        font-size: 14px;
    }
    
    .highlight-item:hover {
        transform: translateY(-5px) translateX(0);
    }
}

.attraction-content {
    padding: 25px;
}

.attraction-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0084ff, #00a8ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.attraction-icon i {
    color: white;
    font-size: 20px;
}

.attraction-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.attraction-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.attraction-features {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-tag i {
    color: #fbbf24;
    font-size: 10px;
}

.attractions-cta {
    text-align: center;
    padding: 40px 25px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    grid-column: span 2;
}

.cta-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 25px 0;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.attractions-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1a202c !important;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.attractions-btn:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

.attractions-btn i {
    font-size: 18px;
}

/* Responsive Design for Attractions */
@media (max-width: 1200px) {
    .attraction-card-modern.featured,
    .attractions-cta {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .attractions-modern {
        padding: 80px 0;
    }
    
    .attractions-title {
        font-size: 36px;
    }
    
    .attractions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .attraction-image {
        height: 180px;
    }
    
    .attraction-content {
        padding: 20px;
    }
    
    .attractions-cta {
        padding: 40px 25px;
    }
    
    .cta-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .attractions-title {
        font-size: 28px;
    }
    
    .attractions-subtitle {
        font-size: 16px;
    }
    
    .attraction-content h3 {
        font-size: 20px;
    }
    
    .attractions-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h3 {
        font-size: 20px;
    }
    
    .attractions-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}
/* End Attractions Modern Section */

/* Header Width 100% Fix */
.main-header {
    width: 100% !important;
    max-width: 100% !important;
}

.header-style-one,
.header-style-two {
    width: 100% !important;
    max-width: 100% !important;
}

.header-top,
.header-lower {
    width: 100% !important;
    max-width: 100% !important;
}

.header-style-one .outer-box,
.header-style-two .outer-box {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding-left: 20px !important;
    padding-right: 100px !important;
}

.header-top .top-inner {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Reduce navigation menu top/bottom padding in header-lower only */
.header-lower .main-menu .navigation > li {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.header-lower .main-menu .navigation > li > a {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
}

/* Rework Book your ticket button styling */
.header-lower .menu-right-content .btn-box {
    margin: 0 !important;
    padding: 0 !important;
}

.header-lower .menu-right-content .btn-box a {
    background: linear-gradient(135deg, #0084ff, #00a8ff) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 10px 20px !important;
    border-radius: 25px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    white-space: nowrap !important;
    transition: all 0.3s ease !important;
    border: none !important;
    box-shadow: 0 2px 10px rgba(0, 132, 255, 0.3) !important;
    text-align: center !important;
    display: inline-block !important;
}

.header-lower .menu-right-content .btn-box a:hover {
    background: linear-gradient(135deg, #0070dd, #0096ff) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 15px rgba(0, 132, 255, 0.4) !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

/* Fix sticky header padding separately */
.sticky-header .outer-box {
    padding-left: 30px !important;
    padding-right: 30px !important;
}

/* Simple & Elegant Navigation Menu - No Underlines */
.header-lower .main-menu .navigation > li > a,
.sticky-header .main-menu .navigation > li > a {
    color: #333333 !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    padding: 6px 6px !important;
    margin: 0 -1px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border-radius: 4px !important;
    background: transparent !important;
}

/* Elegant hover effect with background */
.header-lower .main-menu .navigation > li > a:hover,
.sticky-header .main-menu .navigation > li > a:hover {
    color: #0084ff !important;
    background: rgba(0, 132, 255, 0.08) !important;
    transform: translateY(-1px) !important;
}

/* Active/Current page styling */
.header-lower .main-menu .navigation > li.current > a,
.sticky-header .main-menu .navigation > li.current > a {
    color: #ffffff !important;
    background: linear-gradient(135deg, #0084ff, #00a8ff) !important;
    font-weight: 600 !important;
    box-shadow: 0 2px 6px rgba(0, 132, 255, 0.25) !important;
    padding: 4px 6px !important;
}

.header-lower .main-menu .navigation > li.current > a:hover,
.sticky-header .main-menu .navigation > li.current > a:hover {
    transform: translateY(-1px) !important;
    padding: 4px 6px !important;
}

/* Attractions Mega Menu */
.header-lower .main-menu .navigation > li.attractions-mega,
.sticky-header .main-menu .navigation > li.attractions-mega {
    position: relative !important;
}

/* Add dropdown indicator for Attractions mega menu */
.header-lower .main-menu .navigation > li.attractions-mega > a::after,
.sticky-header .main-menu .navigation > li.attractions-mega > a::after {
    content: '' !important;
    display: inline-block !important;
    width: 0 !important;
    height: 0 !important;
    border-left: 4px solid transparent !important;
    border-right: 4px solid transparent !important;
    border-top: 4px solid #999 !important;
    margin-left: 8px !important;
    vertical-align: middle !important;
    transition: all 0.3s ease !important;
}

.header-lower .main-menu .navigation > li.attractions-mega:hover > a::after,
.sticky-header .main-menu .navigation > li.attractions-mega:hover > a::after {
    transform: rotate(180deg) !important;
    border-top-color: #0084ff !important;
}

.attractions-mega-panel {
    position: absolute !important;
    top: 100% !important;
    left: -100px !important;
    width: 800px !important;
    background: #ffffff !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1) !important;
    border-radius: 12px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(20px) !important;
    transition: all 0.4s ease !important;
    z-index: 9999 !important;
    margin-top: 0px !important;
}

/* Fix positioning for main header vs sticky header */
.header-lower .attractions-mega-panel {
    top: calc(100% + 1px) !important;
    margin-top: 8px !important;
}

/* Ensure mega menu appears flush with sticky header */
.sticky-header .attractions-mega-panel {
    top: calc(100% - 1px) !important;
    margin-top: 0px !important;
}

.attractions-mega:hover .attractions-mega-panel {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.attractions-mega-content {
    padding: 30px !important;
}

.attractions-mega-section {
    margin-bottom: 20px !important;
}

.attractions-mega-title {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #0084ff !important;
    margin-bottom: 15px !important;
    padding-bottom: 8px !important;
    border-bottom: 2px solid rgba(0, 132, 255, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.attractions-mega-title i {
    font-size: 18px !important;
}

.attractions-mega-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.attractions-mega-list li {
    margin-bottom: 3px !important;
}

.attractions-mega-list a {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 8px 12px !important;
    color: #555 !important;
    text-decoration: none !important;
    font-size: 14px !important;
    border-radius: 6px !important;
    transition: all 0.3s ease !important;
}

.attractions-mega-list a:hover {
    background: rgba(0, 132, 255, 0.08) !important;
    color: #0084ff !important;
    transform: translateX(5px) !important;
}

.attractions-mega-list a i {
    font-size: 8px !important;
    width: 16px !important;
    text-align: center !important;
    color: #ccc !important;
}

/* Featured Image Cards Styling */
.attractions-featured-cards {
    margin-bottom: 15px !important;
}

.attractions-featured-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 12px !important;
    padding: 10px !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    background: rgba(0, 132, 255, 0.02) !important;
}

.attractions-featured-item:hover {
    background: rgba(0, 132, 255, 0.08) !important;
    transform: translateX(3px) !important;
}

.featured-image {
    width: 60px !important;
    height: 45px !important;
    border-radius: 6px !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
    background: #f5f5f5 !important;
    display: block !important;
    position: relative !important;
}

.featured-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.3s ease !important;
}

.attractions-featured-item:hover .featured-image img {
    transform: scale(1.1) !important;
}

.featured-content h6 {
    margin: 0 0 4px 0 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}

.featured-content h6 a {
    color: #333 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.featured-content h6 a:hover {
    color: #0084ff !important;
}

.featured-content p {
    margin: 0 !important;
    font-size: 12px !important;
    color: #666 !important;
    line-height: 1.2 !important;
}

/* Compact List for remaining items */
.attractions-compact-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.attractions-compact-list li {
    margin-bottom: 2px !important;
}

.attractions-compact-list a {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 6px 8px !important;
    color: #555 !important;
    text-decoration: none !important;
    font-size: 13px !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
}

.attractions-compact-list a:hover {
    background: rgba(0, 132, 255, 0.05) !important;
    color: #0084ff !important;
    transform: translateX(3px) !important;
}

.attractions-compact-list a i {
    font-size: 6px !important;
    width: 12px !important;
    text-align: center !important;
    color: #ccc !important;
}

.attractions-mega-highlight {
    background: linear-gradient(135deg, rgba(0, 132, 255, 0.05), rgba(0, 168, 255, 0.05)) !important;
    border-radius: 10px !important;
    padding: 20px !important;
    text-align: center !important;
}

.attractions-highlight-card {
    text-align: center !important;
}

.attractions-highlight-image {
    width: 100% !important;
    height: 120px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    margin-bottom: 15px !important;
}

.attractions-highlight-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.attractions-highlight-content h5 {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #333 !important;
    margin-bottom: 8px !important;
}

.attractions-highlight-content p {
    font-size: 13px !important;
    color: #666 !important;
    margin-bottom: 15px !important;
}

.attractions-highlight-btn {
    display: inline-block !important;
    padding: 8px 16px !important;
    background: linear-gradient(135deg, #0084ff, #00a8ff) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 20px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.attractions-highlight-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(0, 132, 255, 0.3) !important;
}

/* Sticky header should use default styling - no overrides */

/* Reduce CISO Institute heading font size */
.glass-card h3 {
    font-size: 18px !important;
    font-weight: 600 !important;
}

/* Fix footer layout */
.footer-bottom-content .row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
}

.footer-left-content {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    white-space: nowrap !important;
}

.footer-left-content span,
.footer-left-content a {
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
}

.footer-left-content a:hover {
    color: #0084ff !important;
}

.footer-right-content {
    text-align: right !important;
    white-space: nowrap !important;
}

.footer-right-content span {
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Preloader Logo Styling */
.logo-loading {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.logo-loading img {
    display: block;
    animation: fadeInOut 2s infinite;
}

/* Position spinner below logo */
.animation-preloader {
    position: relative;
}

.animation-preloader .spinner {
    position: absolute !important;
    top: 60% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 60px !important;
    height: 60px !important;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}