/* Marine World Custom Styles */

/* ===== CONTACT FORM MESSAGES ===== */
.contact-message {
    padding: 30px 35px;
    border-radius: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    animation: slideInMessage 0.5s ease-out;
}

@keyframes slideInMessage {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-message .message-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-message .message-icon i {
    font-size: 32px;
}

.contact-message .message-content h4 {
    margin: 0 0 8px 0;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
}

.contact-message .message-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Success Message */
.contact-success {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border: none;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.2);
}

.contact-success .message-icon {
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
}

.contact-success .message-icon i {
    color: #fff;
}

.contact-success .message-content h4 {
    color: #2e7d32;
}

.contact-success .message-content p {
    color: #1b5e20;
}

/* Error Message */
.contact-error {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border: none;
    box-shadow: 0 10px 30px rgba(244, 67, 54, 0.2);
}

.contact-error .message-icon {
    background: linear-gradient(135deg, #f44336 0%, #c62828 100%);
}

.contact-error .message-icon i {
    color: #fff;
}

.contact-error .message-content h4 {
    color: #c62828;
}

.contact-error .message-content p {
    color: #b71c1c;
}

/* Responsive */
@media (max-width: 576px) {
    .contact-message {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .contact-message .message-icon {
        width: 60px;
        height: 60px;
    }

    .contact-message .message-icon i {
        font-size: 28px;
    }

    .contact-message .message-content h4 {
        font-size: 20px;
    }
}

/* ===== SEARCH BOX FIXES ===== */
/* Remove unwanted white sections and border radius from search dropdown */

.main-header .search-panel .form-container {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.main-header .search-panel .form-group {
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.main-header .search-panel {
    background: #ffffff !important;
    border-radius: 0 !important;
}

.main-header .search-box-outer .dropdown-menu {
    background: #ffffff !important;
    border-radius: 0px !important;
    border: none !important;
    border-color: transparent !important;
}

/* Ensure no extra white containers */
.search-panel * {
    border-radius: 0 !important;
}

/* ===== ATTRACTIONS CAROUSEL FIX ===== */
/* Fix carousel navigation to work properly */

.fish-categories-carousel .carousel-container {
    position: relative;
    overflow: hidden;
}

.fish-categories-carousel .carousel-track {
    display: flex;
    gap: 25px;
    animation: fishCarouselFloat 80s linear infinite;
    width: max-content;
    padding-bottom: 20px;
}

.fish-categories-carousel .carousel-track:hover {
    animation-play-state: paused;
}

.fish-categories-carousel .attraction-card-modern {
    flex: 0 0 auto;
}

.fish-categories-carousel .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.fish-categories-carousel .carousel-prev,
.fish-categories-carousel .carousel-next {
    position: absolute;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0084ff, #00bfff);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 8px 25px rgba(0, 132, 255, 0.3);
    z-index: 20;
    transition: all 0.3s ease;
}

.fish-categories-carousel .carousel-prev:hover,
.fish-categories-carousel .carousel-next:hover {
    background: linear-gradient(135deg, #00bfff, #0084ff);
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 132, 255, 0.4);
}

.fish-categories-carousel .carousel-prev.disabled,
.fish-categories-carousel .carousel-next.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.fish-categories-carousel .carousel-prev {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.fish-categories-carousel .carousel-next {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fish-categories-carousel .carousel-prev,
    .fish-categories-carousel .carousel-next {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .fish-categories-carousel .carousel-prev {
        margin-left: -20px;
    }
    
    .fish-categories-carousel .carousel-next {
        margin-right: -20px;
    }
}

/* ===== FISH SPECIES CAROUSEL FIX ===== */
/* Fix fish species marquee carousel navigation */

.species-showcase .marquee-container {
    position: relative;
    overflow: hidden;
}

.species-showcase .marquee-track {
    display: flex;
    gap: 20px;
    animation: marqueeScroll 60s linear infinite;
    width: max-content;
}

.species-showcase .marquee-track:hover {
    animation-play-state: paused;
}

.species-showcase .species-card {
    flex: 0 0 auto;
}

.species-showcase .marquee-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.species-showcase .marquee-prev,
.species-showcase .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;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 5px 15px rgba(0, 132, 255, 0.3);
    z-index: 20;
    transition: all 0.3s ease;
}

.species-showcase .marquee-prev:hover,
.species-showcase .marquee-next:hover {
    background: #0084ff;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 132, 255, 0.5);
}

.species-showcase .marquee-prev.disabled,
.species-showcase .marquee-next.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.species-showcase .marquee-prev {
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.species-showcase .marquee-next {
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}

/* ===== CSS ANIMATIONS ===== */
/* Keyframes for continuous carousel scrolling */

@keyframes fishCarouselFloat {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===== UNIVERSAL SECTION PADDING SYSTEM ===== */
/* Apply these classes to sections for consistent spacing across all pages */

.section-padding-xs {
    padding: 30px 0;
}

.section-padding-sm {
    padding: 35px 0;
}

.section-padding-md {
    padding: 40px 0;
}

.section-padding-lg {
    padding: 45px 0;
}

.section-padding-xl {
    padding: 50px 0;
}

.section-padding-2xl {
    padding: 55px 0;
}

.section-padding-3xl {
    padding: 60px 0;
}

/* Special padding modifier - removes bottom padding */
.no-bottom-padding {
    padding-bottom: 0 !important;
}

/* Responsive padding adjustments */
@media (max-width: 768px) {
    .section-padding-xs {
        padding: 25px 0;
    }
    
    .section-padding-sm {
        padding: 30px 0;
    }
    
    .section-padding-md {
        padding: 35px 0;
    }
    
    .section-padding-lg {
        padding: 40px 0;
    }
    
    .section-padding-xl {
        padding: 40px 0;
    }
    
    .section-padding-2xl {
        padding: 45px 0;
    }
    
    .section-padding-3xl {
        padding: 50px 0;
    }
}

/* Modern About Section */
.about-section-modern {
    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 {
    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 {
    padding: 8px 24px;
    border-radius: 30px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 56px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0;
}

/* Override Bootstrap h2 styles for section titles */
h2.section-title,
.section-title h2 {
    font-size: 56px !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
    line-height: 1.2 !important;
    margin: 0 !important;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #0084ff, #00bfff);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.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 {
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.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;
}


.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) {
    /* Padding handled by universal classes */
    
    .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,
    h2.section-title,
    .section-title h2 {
        font-size: 42px !important;
    }
    
    .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;
    }
}

@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 {
    background: linear-gradient(45deg, #0084ff, #00a8ff);
    font-size: 14px;
}

.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;
    min-height: 580px;
    overflow: visible;
}

.fish-categories-carousel .carousel-container {
    position: relative;
    overflow: visible;
    border-radius: 0;
    min-height: 520px;
    padding: 10px 100px 10px 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 {
        min-height: 480px;
    }
    
    .carousel-container {
        height: 460px;
        padding: 10px 80px 10px 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 {
        min-height: 440px;
    }
    
    .carousel-container {
        height: 420px;
        padding: 10px 60px 10px 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;
}
/* Grid layout cards - solid background for features section (About page only) */
/* Features section padding handled by universal classes */

body.about-page .fishes-type-modern .attraction-card-modern,
.about-features-section .attraction-card-modern {
    background: white;
    backdrop-filter: none;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

body.about-page .fishes-type-modern .attraction-card-modern:hover,
.about-features-section .attraction-card-modern:hover {
    background: white;
    box-shadow: 0 20px 60px rgba(0, 132, 255, 0.2);
}

/* Fix text colors for grid layout (About page only) */
body.about-page .fishes-type-modern .attraction-content h3,
.about-features-section .attraction-content h3 {
    color: #1a202c !important;
}

body.about-page .fishes-type-modern .attraction-content p,
.about-features-section .attraction-content p {
    color: #64748b !important;
}

body.about-page .fishes-type-modern .attraction-content .location-tag,
.about-features-section .attraction-content .location-tag {
    color: #0084ff !important;
    font-weight: 600;
}

body.about-page .fishes-type-modern .feature-tag,
.about-features-section .feature-tag {
    background: rgba(0, 132, 255, 0.1) !important;
    color: #0084ff !important;
    border: 1px solid rgba(0, 132, 255, 0.2);
}

/* End Fishes Type Modern Section */

/* ===== MISSION SECTION CUSTOM STYLES ===== */
.mission-content {
    margin-top: 60px;
}

.mission-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 132, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 132, 255, 0.03) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite;
}

.mission-card .card-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.mission-card .icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0084ff, #00a8ff);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    box-shadow: 0 10px 30px rgba(0, 132, 255, 0.3);
}

.mission-card .icon-wrapper i {
    font-size: 24px;
    color: white;
}

.mission-card .card-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
    line-height: 1.2;
}

.mission-card .card-content {
    position: relative;
    z-index: 2;
}

.mission-card .lead-text {
    font-size: 18px;
    font-weight: 500;
    color: #2d3748;
    line-height: 1.7;
    margin-bottom: 25px;
}

.mission-card p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(0, 132, 255, 0.08), rgba(0, 168, 255, 0.05));
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    border-left: 4px solid #0084ff;
    display: flex;
    align-items: flex-start;
    position: relative;
}

.highlight-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #0084ff, #00a8ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 18px;
    color: white;
}

.highlight-box p {
    margin: 0;
    font-weight: 600;
    color: #2d3748;
    font-size: 16px;
    line-height: 1.6;
}

.mission-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.mission-features .feature-item {
    display: flex;
    align-items: center;
    background: rgba(0, 132, 255, 0.05);
    padding: 15px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 132, 255, 0.1);
}

.mission-features .feature-item:hover {
    background: rgba(0, 132, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 132, 255, 0.15);
}

.mission-features .feature-item i {
    font-size: 18px;
    color: #0084ff;
    margin-right: 12px;
}

.mission-features .feature-item span {
    font-weight: 600;
    color: #2d3748;
    font-size: 14px;
}

.mission-image {
    position: relative;
}

.mission-image .image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(2deg);
    transition: all 0.4s ease;
}

.mission-image .image-wrapper:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 132, 255, 0.2);
}

.mission-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.mission-image .image-wrapper:hover img {
    transform: scale(1.05);
}

.mission-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.mission-badge .badge-title {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #0084ff;
    line-height: 1;
}

.mission-badge .badge-subtitle {
    display: block;
    font-size: 12px;
    color: #64748b;
    margin-top: 4px;
}

.cta-wrapper {
    margin-top: 30px;
    text-align: center;
}

.mission-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #0084ff, #00a8ff);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 10px 30px rgba(0, 132, 255, 0.4);
    transition: all 0.3s ease;
    border: none;
}

.mission-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 132, 255, 0.5);
    background: linear-gradient(135deg, #0066cc, #0084ff);
    color: white;
    text-decoration: none;
}

.mission-btn span {
    margin-right: 10px;
}

.mission-btn i {
    transition: transform 0.3s ease;
}

.mission-btn:hover i {
    transform: translateX(5px);
}

/* Responsive adjustments for mission section */
@media (max-width: 991px) {
    .mission-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .mission-card {
        padding: 30px;
        margin-bottom: 40px;
    }
    
    .mission-image .image-wrapper {
        transform: none;
    }
    
    .mission-image img {
        height: 300px;
    }
}

@media (max-width: 767px) {
    .mission-card .card-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 25px;
    }
    
    .mission-card .icon-wrapper {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .mission-card .card-header h3 {
        font-size: 24px;
    }
    
    .highlight-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .highlight-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* End Mission Section Styles */

/* ===== FEATURED IN SECTION ===== */
.featured-in-section {
    background: #ffffff;
}

.news-carousel-container {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
}

.news-carousel {
    overflow: hidden;
    border-radius: 20px;
}

.news-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.news-slide.active {
    display: block;
    opacity: 1;
}

.news-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 132, 255, 0.1);
    border: 1px solid rgba(0, 132, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0084ff, #00bfff);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 132, 255, 0.15);
}

.news-header {
    margin-bottom: 25px;
}

.news-source {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.source-name {
    background: linear-gradient(135deg, #0084ff, #00bfff);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-date {
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

.news-body {
    margin-bottom: 25px;
}

.news-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
    margin-bottom: 15px;
    font-family: 'Rubik', sans-serif;
}

.news-meta {
    margin-top: 15px;
}

.publish-date {
    color: #0084ff;
    font-weight: 600;
    font-size: 16px;
}

.news-footer {
    display: flex;
    justify-content: flex-end;
}

.news-badge {
    background: rgba(0, 132, 255, 0.1);
    color: #0084ff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(0, 132, 255, 0.2);
}

/* Carousel Navigation */
.news-navigation {
    position: absolute;
    top: 50%;
    width: calc(100% + 120px);
    left: -60px;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.news-nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 132, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 8px 25px rgba(0, 132, 255, 0.15);
}

.news-nav-btn:hover {
    background: #0084ff;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 132, 255, 0.25);
}

.news-nav-btn i {
    font-size: 16px;
    color: #0084ff;
    transition: color 0.3s ease;
}

.news-nav-btn:hover i {
    color: white;
}

/* Carousel Dots */
.news-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.news-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 132, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-dot.active,
.news-dot:hover {
    background: #0084ff;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Padding handled by universal classes */
    
    .news-carousel-container {
        margin: 40px auto 0;
        padding: 0 15px;
    }
    
    .news-card {
        padding: 30px 25px;
    }
    
    .news-title {
        font-size: 24px;
    }
    
    .news-source {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .news-navigation {
        width: calc(100% + 80px);
        left: -40px;
    }
    
    .news-nav-btn {
        width: 45px;
        height: 45px;
    }
}
/* End Featured In Section */

/* ===== 3D TESTIMONIALS SECTION ===== */
.testimonials-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

.testimonials-container-3d {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
    perspective: 1000px;
    height: 500px;
    padding: 50px 0;
    overflow: visible;
}

.testimonials-carousel-3d {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.testimonial-slide-3d {
    position: absolute;
    width: 100%;
    max-width: 700px;
    height: 400px;
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    transform-style: preserve-3d;
}

/* Left side positioning - show more of the card */
.testimonial-slide-3d[data-slide="0"] {
    transform: translateX(-65%) translateZ(-150px) rotateY(25deg);
    opacity: 0.7;
    z-index: 2;
}

/* Center (active) positioning - fully visible and highlighted */
.testimonial-slide-3d[data-slide="1"],
.testimonial-slide-3d.active {
    transform: translateX(0) translateZ(0) rotateY(0deg);
    opacity: 1;
    z-index: 10;
}

/* Right side positioning - show more of the card */
.testimonial-slide-3d[data-slide="2"] {
    transform: translateX(65%) translateZ(-150px) rotateY(-25deg);
    opacity: 0.7;
    z-index: 2;
}

.testimonial-card-3d {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 40px 30px;
    box-shadow: 0 20px 60px rgba(0, 132, 255, 0.15);
    border: 1px solid rgba(0, 132, 255, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0084ff, #00bfff);
}

/* Center card enhancement - no blur, crisp and highlighted */
.testimonial-slide-3d.active .testimonial-card-3d,
.testimonial-slide-3d[data-slide="1"] .testimonial-card-3d {
    transform: scale(1.05);
    box-shadow: 0 25px 60px rgba(0, 132, 255, 0.2);
    background: rgba(255, 255, 255, 1);
    border: 2px solid rgba(0, 132, 255, 0.2);
    filter: none;
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Side cards styling with blur effect */
.testimonial-slide-3d[data-slide="0"] .testimonial-card-3d,
.testimonial-slide-3d[data-slide="2"] .testimonial-card-3d {
    background: rgba(255, 255, 255, 0.95);
    transform: scale(0.95);
    box-shadow: 0 15px 40px rgba(0, 132, 255, 0.1);
    filter: blur(2px);
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.quote-icon-3d {
    text-align: center;
    margin-bottom: 20px;
}

.quote-icon-3d i {
    font-size: 35px;
    color: #0084ff;
    opacity: 0.4;
}

.testimonial-text-3d {
    font-size: 15px;
    line-height: 1.6;
    color: #374151;
    text-align: center;
    margin-bottom: 20px;
    font-style: italic;
    flex-grow: 1;
    overflow-y: auto;
}

/* Center card text enhancement */
.testimonial-slide-3d.active .testimonial-text-3d,
.testimonial-slide-3d[data-slide="1"] .testimonial-text-3d {
    font-size: 16px;
    line-height: 1.7;
}

.testimonial-author-3d {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
    margin-top: auto;
}

.author-name-3d {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.author-title-3d {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Center card author enhancement */
.testimonial-slide-3d.active .author-name-3d,
.testimonial-slide-3d[data-slide="1"] .author-name-3d {
    font-size: 18px;
}

.testimonial-slide-3d.active .author-title-3d,
.testimonial-slide-3d[data-slide="1"] .author-title-3d {
    font-size: 13px;
}

.rating-3d {
    display: flex;
    justify-content: center;
    gap: 3px;
}

.rating-3d i {
    color: #fbbf24;
    font-size: 14px;
}

/* Center card rating enhancement */
.testimonial-slide-3d.active .rating-3d i,
.testimonial-slide-3d[data-slide="1"] .rating-3d i {
    font-size: 16px;
}

/* 3D Navigation */
.testimonials-navigation-3d {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 20;
}

.testimonial-nav-btn-3d {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(0, 132, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 10px 30px rgba(0, 132, 255, 0.2);
    backdrop-filter: blur(20px);
}

.testimonial-nav-btn-3d:hover {
    background: #0084ff;
    color: white;
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(0, 132, 255, 0.35);
}

.testimonial-nav-btn-3d i {
    font-size: 18px;
    color: #0084ff;
    transition: color 0.3s ease;
}

.testimonial-nav-btn-3d:hover i {
    color: white;
}

/* 3D Dots */
.testimonials-dots-3d {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
}

.testimonial-dot-3d {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(0, 132, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-dot-3d.active {
    background: #0084ff;
    transform: scale(1.3);
    border-color: rgba(0, 132, 255, 0.3);
}

.testimonial-dot-3d:hover {
    background: #0084ff;
    transform: scale(1.2);
}

/* Responsive Design for 3D Testimonials */
@media (max-width: 1024px) {
    .testimonials-container-3d {
        max-width: 800px;
        perspective: 800px;
        height: 480px;
        padding: 40px 0;
    }
    
    .testimonial-slide-3d {
        max-width: 600px;
        height: 380px;
    }
    
    .testimonial-slide-3d[data-slide="0"] {
        transform: translateX(-60%) translateZ(-120px) rotateY(20deg);
        opacity: 0.8;
    }
    
    .testimonial-slide-3d[data-slide="2"] {
        transform: translateX(60%) translateZ(-120px) rotateY(-20deg);
        opacity: 0.8;
    }
    
    /* Adjust blur for tablet - reduce blur effect */
    .testimonial-slide-3d[data-slide="0"] .testimonial-card-3d,
    .testimonial-slide-3d[data-slide="2"] .testimonial-card-3d {
        filter: blur(1.5px);
    }
}

@media (max-width: 768px) {
    /* Padding handled by universal classes */
    
    .testimonials-container-3d {
        margin: 40px auto 0;
        padding: 30px 15px;
        max-width: 600px;
        perspective: 600px;
        height: 420px;
    }
    
    .testimonial-slide-3d {
        max-width: 500px;
        height: 350px;
    }
    
    .testimonial-slide-3d[data-slide="0"] {
        transform: translateX(-55%) translateZ(-80px) rotateY(15deg);
        opacity: 0.6;
    }
    
    .testimonial-slide-3d[data-slide="2"] {
        transform: translateX(55%) translateZ(-80px) rotateY(-15deg);
        opacity: 0.6;
    }
    
    .testimonial-card-3d {
        padding: 30px 25px;
    }
    
    .testimonial-text-3d {
        font-size: 14px;
        text-align: left;
    }
    
    .testimonial-slide-3d.active .testimonial-text-3d,
    .testimonial-slide-3d[data-slide="1"] .testimonial-text-3d {
        font-size: 15px;
    }
    
    .testimonials-navigation-3d {
        padding: 0 20px;
    }
    
    .testimonial-nav-btn-3d {
        width: 50px;
        height: 50px;
    }
    
    .testimonials-dots-3d {
        margin-top: 30px;
    }
    
    /* Adjust blur for mobile - lighter blur effect */
    .testimonial-slide-3d[data-slide="0"] .testimonial-card-3d,
    .testimonial-slide-3d[data-slide="2"] .testimonial-card-3d {
        filter: blur(1px);
    }
}
/* End Testimonials Section */

/* ===== TAB SECTION CUSTOM STYLES ===== */
.tab-section-modern {
    background: #f9fafb;
}

.tabs-container {
    margin-top: 0;
    position: relative;
    z-index: 2;
}

/* Unified Tab Container */
.tabs-container {
    display: flex;
    gap: 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    overflow: hidden;
    position: sticky;
    top: 120px;
}

.tabs-navigation {
    width: 420px;
    flex-shrink: 0;
    padding: 0;
    border-right: 1px solid #e5e7eb;
    background: #f8fafc;
}

.tab-button {
    display: flex;
    align-items: flex-start;
    padding: 24px 32px;
    background: transparent;
    border: none;
    border-radius: 0;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    width: 100%;
    text-align: left;
    border-left: 4px solid transparent;
}

.tab-content-left {
    flex: 1;
}

.tab-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 8px 0;
    color: inherit;
    transition: color 0.3s ease;
}

.tab-description {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    color: #9ca3af;
    transition: color 0.3s ease;
}

.tab-button:hover {
    background: rgba(59, 130, 246, 0.05);
    border-left-color: rgba(59, 130, 246, 0.3);
}

.tab-button:hover .tab-title {
    color: #3b82f6;
}

.tab-button:hover .tab-description {
    color: #6b7280;
}

.tab-button:active {
    background: rgba(59, 130, 246, 0.08);
}

.tab-button.active {
    background: rgba(59, 130, 246, 0.1);
    border-left-color: #3b82f6;
}

.tab-button.active .tab-title {
    color: #3b82f6;
    font-weight: 700;
}

.tab-button.active .tab-description {
    color: #6b7280;
}


/* Content Area */
.tabs-content {
    flex: 1;
    position: relative;
    background: #ffffff;
    padding: 50px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .tabs-navigation {
        width: 380px;
    }
    
    .tabs-content {
        padding: 40px;
    }
}

@media (max-width: 1024px) {
    .tabs-navigation {
        width: 340px;
    }
    
    .tabs-content {
        padding: 35px;
    }
    
    .tab-button {
        padding: 20px 24px;
    }
    
    .tab-title {
        font-size: 15px;
    }
    
    .tab-description {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .tabs-container {
        flex-direction: column;
        position: relative;
        top: auto;
    }
    
    .tabs-navigation {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .tabs-content {
        padding: 30px;
    }
    
    .tab-button {
        padding: 16px 20px;
        border-left: none;
        border-bottom: 3px solid transparent;
        margin-bottom: 8px;
    }
    
    .tab-button:hover,
    .tab-button.active {
        border-left: none;
        border-bottom-color: #3b82f6;
    }
    
    .tab-title {
        font-size: 14px;
    }
    
    .tab-description {
        font-size: 11px;
        line-height: 1.4;
    }
}

/* Tab Content Styles */
.tabs-content {
    position: relative;
    min-height: 500px;
}

.tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.tab-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.tab-content-wrapper {
    background: transparent;
    padding: 0;
    position: relative;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 0%; }
}

.content-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.header-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0084ff, #00a8ff);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0, 132, 255, 0.3);
    flex-shrink: 0;
}

.header-icon i {
    font-size: 28px;
    color: white;
}

.content-header h3 {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.tab-subtitle {
    font-size: 16px;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

.content-body {
    position: relative;
    z-index: 2;
}

.lead-text {
    font-size: 18px;
    font-weight: 500;
    color: #2d3748;
    line-height: 1.8;
    margin-bottom: 25px;
}

.content-body p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.feature-card {
    background: rgba(0, 132, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 132, 255, 0.1);
}

.feature-card:hover {
    background: rgba(0, 132, 255, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 132, 255, 0.15);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0084ff, #00a8ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 20px;
    color: white;
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 5px 0;
    line-height: 1.2;
}

.feature-content p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* Founders Grid */
.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.founder-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 132, 255, 0.1);
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 132, 255, 0.15);
}

.founder-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.founder-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0084ff, #00a8ff);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.founder-avatar i {
    font-size: 24px;
    color: white;
}

.founder-info h4 {
    font-size: 22px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 5px 0;
}

.founder-role {
    font-size: 14px;
    color: #0084ff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.founder-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.founder-highlights {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.highlight-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 132, 255, 0.1);
    color: #0084ff;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(0, 132, 255, 0.2);
}

.highlight-tag i {
    font-size: 12px;
}

/* Location Styles */
.location-info {
    margin-top: 30px;
}

.main-location {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(0, 132, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 132, 255, 0.1);
}

.location-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0084ff, #00a8ff);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-icon i {
    font-size: 24px;
    color: white;
}

.location-details h4 {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 15px 0;
}

.location-details p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

.distances-section h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 25px 0;
}

.distances-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.distance-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 132, 255, 0.1);
}

.distance-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 132, 255, 0.1);
}

.distance-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #0084ff, #00a8ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.distance-icon i {
    font-size: 18px;
    color: white;
}

.distance-info {
    display: flex;
    flex-direction: column;
}

.place-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 2px;
}

.distance {
    font-size: 14px;
    color: #0084ff;
    font-weight: 700;
}

/* Coming Soon Styles */
.coming-soon-content {
    text-align: center;
    padding: 60px 20px;
}

.coming-soon-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0084ff, #00a8ff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 20px 50px rgba(0, 132, 255, 0.3);
}

.coming-soon-icon i {
    font-size: 36px;
    color: white;
}

.coming-soon-content h4 {
    font-size: 28px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 20px 0;
}

.coming-soon-content p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.preview-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.preview-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: rgba(0, 132, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 132, 255, 0.1);
    min-width: 140px;
    transition: all 0.3s ease;
}

.preview-item:hover {
    background: rgba(0, 132, 255, 0.08);
    transform: translateY(-3px);
}

.preview-item i {
    font-size: 24px;
    color: #0084ff;
}

.preview-item span {
    font-size: 14px;
    font-weight: 600;
    color: #2d3748;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 991px) {
    .tabs-navigation {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .tab-content-wrapper {
        padding: 30px;
    }
    
    .content-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .content-header h3 {
        font-size: 28px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .founders-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .main-location {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .distances-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 767px) {
    .tab-button {
        padding: 15px 20px;
        font-size: 14px;
        gap: 10px;
    }
    
    .tab-button span {
        font-size: 14px;
    }
    
    .tab-icon {
        width: 40px;
        height: 40px;
    }
    
    .tab-icon i {
        font-size: 16px;
    }
    
    .tab-content-wrapper {
        padding: 25px 20px;
    }
    
    .header-icon {
        width: 60px;
        height: 60px;
    }
    
    .header-icon i {
        font-size: 24px;
    }
    
    .content-header h3 {
        font-size: 24px;
    }
    
    .feature-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    
    .founder-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .distance-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .preview-features {
        flex-direction: column;
        gap: 20px;
    }
}

/* Animation for tab switching */
@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-panel.active .tab-content-wrapper {
    animation: slideInFromBottom 0.5s ease-out;
}

/* End Tab Section Styles */

/* ===== GALLERY SECTION ENHANCEMENTS ===== */
.gallery-section {
    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) {
    /* Padding handled by universal classes */
    
    .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;
    background: linear-gradient(135deg, #f1f9ff 0%, #e6f3ff 100%);
    overflow: hidden;
}

.tickets-modern .section-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 20px 0;
}

.tickets-modern .section-title .main-text {
    color: #1a202c;
    display: block;
}

.tickets-modern .section-title .highlight-text {
    color: #0084ff;
    display: block;
}

.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 .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;
    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) {
    /* Padding handled by universal classes */
    
    .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,
    h2.section-title,
    .section-title h2 {
        font-size: 32px !important;
    }
    
    .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;
    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;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 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 {
    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-counter-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.stats-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stats-showcase-three {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Responsive for three-column stats */
@media (max-width: 1024px) {
    .stats-showcase-three {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

.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;
    }
    
    /* Padding handled by universal classes */
    
    .stats-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stats-showcase-three {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .showcase-stat {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    /* Padding handled by universal classes */
    
    .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;
    }
    
    .stats-showcase-three {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .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) {
    /* Padding handled by universal classes */
    
    .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 */

/* ===== GALLERY PAGE STYLES ===== */
.gallery-page-section {
    background: #f8fafc;
}

.gallery-header {
    margin-bottom: 60px;
}

.gallery-header .section-title {
    margin-bottom: 40px;
}

.gallery-header .section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #0084ff, #00bfff);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}


/* Filter Tabs */
.filter-tabs {
    text-align: center;
    margin-bottom: 50px;
}

.filter-tab-list {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.filter-tab-list li {
    padding: 12px 30px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 30px;
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab-list li:hover {
    background: #f0f9ff;
    border-color: #0084ff;
    color: #0084ff;
}

.filter-tab-list li.active {
    background: linear-gradient(135deg, #0084ff, #00bfff);
    border-color: transparent;
    color: white;
}

/* Vlog Page Hero Background */
.vlog-page .page-title .back-img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-image: url('../images/marine/under-water.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    z-index: 0 !important;
}

.vlog-page .page-title {
    position: relative !important;
}

.vlog-page .page-title:before {
    z-index: 1 !important;
}

.vlog-page .page-title .auto-container {
    position: relative !important;
    z-index: 2 !important;
}

/* Video Popup Styles */
.fancybox-container {
    z-index: 999999;
}

.fancybox-content {
    background: #000;
    padding: 0;
}

.fancybox-iframe {
    border: none;
    border-radius: 8px;
}

.fancybox-button--close {
    background: rgba(0, 132, 255, 0.9);
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    right: 20px;
    top: 20px;
}

.fancybox-button--close:hover {
    background: rgba(0, 132, 255, 1);
    transform: scale(1.1);
}

.fancybox-bg {
    background: rgba(0, 0, 0, 0.9);
}

/* Responsive video popup */
@media (max-width: 768px) {
    .fancybox-iframe {
        width: 95% !important;
        height: 60% !important;
    }
}

/* Vlog Section Styles */
.vlog-section {
    background: #f8f9fa;
}

.vlog-header {
    margin-bottom: 60px;
}

/* Featured Video - Redesigned */
.featured-video {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    margin-bottom: 80px;
    overflow: hidden;
    position: relative;
}

.featured-video::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 132, 255, 0.05) 0%, transparent 70%);
    z-index: 1;
}


.video-player {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.video-player:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.video-thumbnail {
    position: relative;
    height: 500px;
    background: linear-gradient(45deg, #e3f2fd, #f8f9fa);
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-player:hover .video-thumbnail img {
    transform: scale(1.02);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.play-btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #0084ff, #00bfff);
    color: white;
    border-radius: 50%;
    font-size: 32px;
    transition: all 0.4s ease;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(0, 132, 255, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.play-btn a:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 45px rgba(0, 132, 255, 0.4);
    background: linear-gradient(135deg, #00bfff, #0084ff);
}

.play-btn a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(0, 132, 255, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent 0%, rgba(0,0,0,0.2) 30%, rgba(0,0,0,0.8) 100%);
    padding: 50px 30px 30px;
    pointer-events: none;
}

.video-category {
    display: inline-block;
    background: linear-gradient(135deg, #0084ff, #00bfff);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 132, 255, 0.3);
}

.video-overlay h3 {
    color: white;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.video-overlay p {
    color: rgba(255,255,255,0.95);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

.featured-info {
    padding-left: 30px;
    display: flex;
    align-items: center;
    height: 100%;
}

.video-description {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0, 132, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-description h4 {
    color: #222;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.video-description h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #0084ff, #00bfff);
    border-radius: 2px;
}

.video-description p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 16px;
}

.video-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.video-highlights li {
    display: flex;
    align-items: center;
    padding: 12px 0;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.video-highlights li:last-child {
    border-bottom: none;
}

.video-highlights i {
    color: #0084ff;
    margin-right: 15px;
    font-size: 16px;
    width: 20px;
}

/* Category Tabs */
.video-categories {
    margin-bottom: 60px;
}

.category-tabs {
    text-align: center;
    margin-top: 40px;
}

.category-tab-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    background: white;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.category-tab-list li {
    padding: 15px 25px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 45px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
}

.category-tab-list li.active,
.category-tab-list li:hover {
    background: #0084ff;
    color: white;
}

/* Video Grid */
.vlog-grid {
    margin-bottom: 60px;
}

.video-item {
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.video-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    display: none;
}

.video-item.visible {
    opacity: 1;
    transform: scale(1);
    display: block;
}

.video-block {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.video-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.video-block .video-thumbnail {
    position: relative;
    height: 250px;
}

.video-block .play-btn a {
    width: 60px;
    height: 60px;
    font-size: 20px;
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
}

.video-content {
    padding: 25px;
}

.video-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.video-content h4 a {
    color: #222;
    text-decoration: none;
    transition: color 0.3s ease;
}

.video-content h4 a:hover {
    color: #0084ff;
}

.video-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #999;
}

.video-meta span {
    display: flex;
    align-items: center;
}

.video-meta i {
    margin-right: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .featured-video {
        padding: 30px 20px;
        margin-bottom: 60px;
    }
    
    
    .video-thumbnail {
        height: 350px;
    }
    
    .video-overlay h3 {
        font-size: 24px;
    }
    
    .play-btn a {
        width: 70px;
        height: 70px;
        font-size: 24px;
    }
    
    .video-description {
        padding: 30px;
        margin-top: 20px;
    }
    
    .category-tab-list {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .category-tab-list li {
        margin: 5px;
    }
}

@media (max-width: 480px) {
    .featured-video {
        padding: 20px 15px;
    }
    
    .video-thumbnail {
        height: 250px;
    }
    
    .video-overlay {
        padding: 30px 20px 20px;
    }
    
    .video-overlay h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .video-overlay p {
        font-size: 14px;
    }
    
    .play-btn a {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
}

/* Gallery Hero Background Fix */
.gallery-page .page-title .back-img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-image: url('../images/marine/under-water.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    z-index: 0 !important;
}

.gallery-page .page-title {
    position: relative !important;
}

.gallery-page .page-title:before {
    z-index: 1 !important;
}

.gallery-page .page-title .auto-container {
    position: relative !important;
    z-index: 2 !important;
}

/* Gallery Grid */
.gallery-grid {
    margin-bottom: 60px;
}

.filter-layout {
    /* Let Bootstrap handle the layout */
}

.filter-item {
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.filter-item.visible {
    opacity: 1;
    transform: scale(1);
}

.filter-item.hidden {
    opacity: 0;
    transform: scale(0.8);
}

.gallery-item {
    width: 100%;
    height: 100%;
}

.gallery-item .image-box {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/3;
    height: auto;
}

.gallery-item .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .image-box img {
    transform: scale(1.1);
}

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 132, 255, 0.85) 0%, rgba(0, 100, 200, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item .overlay-content {
    text-align: center !important;
    color: white;
    padding: 20px;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    position: relative;
}

.gallery-item .overlay-content h4 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: white !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.gallery-item .overlay-content p {
    font-size: 16px;
    margin: 0 0 15px 0;
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 500;
    line-height: 1.4;
}

.gallery-item .lightbox-image {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: white;
    color: #0084ff;
    border-radius: 50%;
    line-height: 50px;
    font-size: 20px;
    transition: all 0.3s ease;
}

.gallery-item .lightbox-image:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

/* Load More Button */
.load-more-btn {
    margin-top: 50px;
}

/* Override icon animation for load more button */
.load-more-btn .modern-btn:hover svg {
    transform: translateY(3px);
}


/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-header {
        margin-bottom: 40px;
    }
    
    .filter-tab-list {
        gap: 10px;
    }
    
    .filter-tab-list li {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .gallery-item .image-box {
        aspect-ratio: 4/3;
    }
    
    .gallery-item .overlay-content h4 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .gallery-item .image-box {
        aspect-ratio: 4/3;
    }
    
    .filter-tab-list li {
        padding: 8px 15px;
        font-size: 12px;
    }
}

/* 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;
}

/* Fix arrow color for active/current attractions menu */
.header-lower .main-menu .navigation > li.attractions-mega.current > a::after,
.sticky-header .main-menu .navigation > li.attractions-mega.current > a::after {
    border-top-color: #0084ff !important;
}

.header-lower .main-menu .navigation > li.attractions-mega.current:hover > a::after,
.sticky-header .main-menu .navigation > li.attractions-mega.current: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;
}

/* Responsive Megamenu */
@media (max-width: 1024px) {
    .attractions-mega-panel {
        max-width: 900px !important;
    }
}

@media (max-width: 768px) {
    .attractions-mega-panel {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 10px !important;
    }

    .attractions-mega:hover .attractions-mega-panel {
        transform: none !important;
    }

    .attractions-mega-content {
        padding: 20px !important;
    }

    .attractions-mega-content .row > div {
        width: 100% !important;
        margin-bottom: 15px !important;
    }

    .attractions-mega-section {
        margin-bottom: 10px !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; }
}

/* Blog Page Specific Styles */
.blog-page {
    background-color: #f8fafe;
}

.blog-page .page-title {
    position: relative !important;
}

.blog-page .page-title:before {
    z-index: 1 !important;
}

.blog-page .page-title .auto-container {
    position: relative !important;
    z-index: 2 !important;
}

.blog-page .page-title .back-img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-image: url('../images/marine/under-water.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.blog-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafe 0%, #ffffff 100%);
}

/* ===== FEATURED ARTICLE SECTION ===== */
.featured-article-section {
    padding: 60px 0;
    background: #f8fafe;
}

.featured-article-wrapper {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,132,255,0.08);
    transition: all 0.4s ease;
    height: 700px;
    display: flex;
    flex-direction: column;
}

.featured-article-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0,132,255,0.12);
}

.featured-article-wrapper .row {
    margin: 0;
    align-items: stretch;
    height: 100%;
    flex: 1;
    display: flex;
}

.featured-article-wrapper .col-lg-6 {
    padding: 0 !important;
    margin: 0;
    height: 100%;
    display: flex;
}

.featured-image-box {
    position: relative;
    height: 100%;
    min-height: 700px;
    overflow: hidden;
    background: #f0f4f8;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    align-items: stretch;
}

.featured-image-box img {
    width: 100%;
    height: 100%;
    min-height: 700px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
    display: block;
    flex: 1;
}

.featured-image-box .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,132,255,0.1);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.featured-article-wrapper:hover .featured-image-box img {
    transform: scale(1.05);
}

.featured-article-wrapper:hover .featured-image-box .image-overlay {
    opacity: 1;
}

.featured-content-box {
    padding: 80px 60px;
    height: 100%;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
    flex: 1;
}

.featured-tag {
    background: linear-gradient(135deg, #0084ff, #00a8ff);
    color: white;
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 24px;
    width: fit-content;
    box-shadow: 0 6px 20px rgba(0,132,255,0.25);
}

.featured-title {
    font-size: 38px;
    font-weight: 800;
    color: #1a1d2b;
    line-height: 1.2;
    margin-bottom: 22px;
}

.featured-text {
    font-size: 17px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 32px;
}

.featured-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

.meta-item i {
    color: #0084ff;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.featured-btn .theme-btn {
    background: linear-gradient(135deg, #0084ff, #0066cc);
    color: white;
    padding: 18px 45px;
    border-radius: 35px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 12px 35px rgba(0,132,255,0.35);
    border: none;
    position: relative;
    overflow: hidden;
}

.featured-btn .theme-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00a8ff, #0084ff);
    transition: left 0.4s ease;
    z-index: -1;
}

.featured-btn .theme-btn span,
.featured-btn .theme-btn i {
    position: relative;
    z-index: 2;
}

.featured-btn .theme-btn:hover::before {
    left: 0;
}

.featured-btn .theme-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,25,90,0.45);
}

.featured-btn .theme-btn i {
    transition: transform 0.3s ease;
    font-size: 16px;
}

.featured-btn .theme-btn:hover i {
    transform: translateX(8px);
}

/* Responsive Design */
@media (max-width: 1199px) {
    .featured-content-box {
        padding: 50px 40px;
    }
    
    .featured-title {
        font-size: 34px;
    }
}

@media (max-width: 991px) {
    .featured-article-section {
        padding: 50px 15px;
    }
    
    .featured-image-box {
        height: 400px;
        min-height: 400px;
    }
    
    .featured-content-box {
        padding: 40px 35px;
        min-height: 400px;
    }
    
    .featured-title {
        font-size: 30px;
    }
    
    .featured-text {
        font-size: 16px;
    }
    
    .featured-meta {
        gap: 25px;
    }
}

@media (max-width: 767px) {
    .featured-article-section {
        padding: 40px 15px;
    }
    
    .featured-image-box {
        height: 300px;
    }
    
    .featured-content-box {
        padding: 30px 25px;
    }
    
    .featured-title {
        font-size: 26px;
        margin-bottom: 18px;
    }
    
    .featured-text {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .featured-meta {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .meta-item {
        font-size: 13px;
    }
    
    .featured-btn .theme-btn {
        padding: 16px 35px;
        font-size: 14px;
        gap: 12px;
    }
}

/* ===== BLOG DETAIL PAGE STYLES ===== */
.blog-detail-page .page-title .back-img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-image: url('../images/marine/under-water.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.blog-detail-section {
    padding: 80px 0;
    background: #f8fafe;
}

.blog-detail-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 15px 50px rgba(0,132,255,0.08);
}

.blog-single .image-box {
    position: relative;
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
}

.blog-single .image-box .image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.blog-single .post-date {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, #0084ff, #00a8ff);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,132,255,0.3);
}

.blog-single .post-date h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1;
}

.blog-single .post-date p {
    font-size: 12px;
    font-weight: 600;
    color: white;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-single .category-tag {
    margin-bottom: 20px;
}

.blog-single .category-tag .category {
    background: #e8f4ff;
    color: #0084ff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.blog-single h2 {
    font-size: 42px;
    font-weight: 800;
    color: #1a1d2b;
    line-height: 1.2;
    margin-bottom: 25px;
}

.blog-single .post-meta {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e8e8e8;
}

.blog-single .meta-list {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.blog-single .meta-list li {
    display: flex;
    align-items: center;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

.blog-single .meta-list li i {
    color: #0084ff;
    margin-right: 8px;
    font-size: 16px;
}

.blog-single .text p {
    font-size: 17px;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 25px;
}

.blog-single .text h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1d2b;
    margin: 40px 0 20px 0;
}

.blog-single .text blockquote {
    background: linear-gradient(135deg, #f8fafc 0%, #e3f2fd 100%);
    border-left: 5px solid #0084ff;
    padding: 30px 40px;
    margin: 30px 0;
    border-radius: 15px;
}

.blog-single .text blockquote p {
    font-size: 20px;
    font-style: italic;
    color: #1a1d2b;
    font-weight: 500;
    margin-bottom: 15px;
}

.blog-single .text blockquote cite {
    color: #0084ff;
    font-weight: 600;
    font-size: 14px;
}

.blog-single .text ul {
    padding-left: 20px;
    margin-bottom: 25px;
}

.blog-single .text ul li {
    color: #64748b;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.post-share-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    border-top: 1px solid #e8e8e8;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.post-tags .tags-list {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.post-tags .tags-list h5 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1d2b;
    margin: 0;
}

.post-tags .tags-list a {
    background: #f8fafc;
    color: #64748b;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-tags .tags-list a:hover {
    background: #0084ff;
    color: white;
}

.post-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.post-share h5 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1d2b;
    margin: 0;
}

.post-share .social-links {
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.post-share .social-links a {
    width: 40px;
    height: 40px;
    background: #f8fafc;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.post-share .social-links a:hover {
    background: #0084ff;
    color: white;
    transform: translateY(-2px);
}

/* Author Box */
.author-box {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 15px 50px rgba(0,132,255,0.08);
    display: flex;
    gap: 25px;
    align-items: center;
}

.author-box .author-thumb {
    flex-shrink: 0;
}

.author-box .author-thumb img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.author-box .author-info h4 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1d2b;
    margin-bottom: 5px;
}

.author-box .author-info .designation {
    color: #0084ff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.author-box .author-info p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.author-box .social-links {
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.author-box .social-links a {
    width: 35px;
    height: 35px;
    background: #f8fafc;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.author-box .social-links a:hover {
    background: #0084ff;
    color: white;
}

/* Post Navigation */
.post-navigation {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 15px 50px rgba(0,132,255,0.08);
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.post-navigation .nav-btn {
    flex: 1;
}

.post-navigation .nav-btn a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-navigation .prev-post a {
    text-align: left;
}

.post-navigation .next-post a {
    text-align: right;
    flex-direction: row-reverse;
}

.post-navigation .nav-btn a:hover {
    background: #0084ff;
    transform: translateY(-2px);
}

.post-navigation .nav-btn a:hover .content span,
.post-navigation .nav-btn a:hover .content h5,
.post-navigation .nav-btn a:hover .icon-box i {
    color: white;
}

.post-navigation .icon-box {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.post-navigation .icon-box i {
    color: #0084ff;
    font-size: 18px;
    transition: color 0.3s ease;
}

.post-navigation .content span {
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.post-navigation .content h5 {
    color: #1a1d2b;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

/* Blog Sidebar */
.blog-sidebar {
    padding-left: 30px;
}

.sidebar-widget {
    background: white;
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 20px 60px rgba(0,132,255,0.12);
    border: 1px solid rgba(0,132,255,0.05);
    transition: all 0.3s ease;
}

.sidebar-widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 80px rgba(0,132,255,0.15);
}

.sidebar-widget .widget-title h4 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1d2b;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e8f4ff;
    position: relative;
}

.sidebar-widget .widget-title h4::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #0084ff;
}

/* Blog Sidebar Search Widget - New Implementation */
.blog-sidebar-search {
    background: white;
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 20px 60px rgba(0,132,255,0.12);
    border: 1px solid rgba(0,132,255,0.05);
    transition: all 0.3s ease;
}

.blog-sidebar-search:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 80px rgba(0,132,255,0.15);
}

.blog-sidebar-search h4 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1d2b;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e8f4ff;
    position: relative;
}

.blog-sidebar-search h4::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #0084ff;
}

.blog-sidebar-search .search-input-field {
    width: 100%;
    height: 55px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0 20px;
    font-size: 16px;
    color: #1a1d2b;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.blog-sidebar-search .search-input-field:focus {
    outline: none;
    border-color: #0084ff;
    background: white;
    box-shadow: 0 0 0 3px rgba(0,132,255,0.1);
}

.blog-sidebar-search .search-input-field::placeholder {
    color: #94a3b8;
}

.blog-sidebar-search .search-submit-btn {
    width: 100%;
    height: 50px;
    background: #0084ff;
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    box-sizing: border-box;
}

.blog-sidebar-search .search-submit-btn:hover {
    background: #0066cc;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,132,255,0.3);
}

/* Blog Sidebar Categories Widget - New Implementation */
.blog-sidebar-categories {
    background: white;
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 20px 60px rgba(0,132,255,0.12);
    border: 1px solid rgba(0,132,255,0.05);
    transition: all 0.3s ease;
}

.blog-sidebar-categories:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 80px rgba(0,132,255,0.15);
}

.blog-sidebar-categories h4 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1d2b;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e8f4ff;
    position: relative;
}

.blog-sidebar-categories h4::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #0084ff;
}

.blog-sidebar-categories .category-item {
    padding: 15px 20px;
    margin-bottom: 8px;
    border-radius: 15px;
    background: #f8fafc;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-sidebar-categories .category-item:hover {
    background: #e8f4ff;
    transform: translateX(5px);
}

.blog-sidebar-categories .category-item:last-child {
    margin-bottom: 0;
}

.blog-sidebar-categories .category-item a {
    color: #1a1d2b;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-sidebar-categories .category-item a:hover {
    color: #0084ff;
}

.blog-sidebar-categories .category-count {
    background: white;
    color: #0084ff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    min-width: 25px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,132,255,0.15);
}

/* Blog Sidebar Recent Posts Widget - New Implementation */
.blog-sidebar-recent {
    background: white;
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 20px 60px rgba(0,132,255,0.12);
    border: 1px solid rgba(0,132,255,0.05);
    transition: all 0.3s ease;
}

.blog-sidebar-recent:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 80px rgba(0,132,255,0.15);
}

.blog-sidebar-recent h4 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1d2b;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e8f4ff;
    position: relative;
}

.blog-sidebar-recent h4::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #0084ff;
}

.blog-sidebar-recent .recent-post-item {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.blog-sidebar-recent .recent-post-item:hover {
    background: #e8f4ff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,132,255,0.1);
}

.blog-sidebar-recent .recent-post-item:last-child {
    margin-bottom: 0;
}

.blog-sidebar-recent .recent-post-thumb {
    flex-shrink: 0;
    width: 85px;
    height: 85px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,132,255,0.15);
}

.blog-sidebar-recent .recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-sidebar-recent .recent-post-item:hover .recent-post-thumb img {
    transform: scale(1.05);
}

.blog-sidebar-recent .recent-post-content h5 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1d2b;
    line-height: 1.4;
    margin-bottom: 8px;
}

.blog-sidebar-recent .recent-post-content h5 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-sidebar-recent .recent-post-content h5 a:hover {
    color: #0084ff;
}

.blog-sidebar-recent .recent-post-date {
    color: #94a3b8;
    font-size: 14px;
    font-weight: 500;
}

/* Blog Sidebar Tags Widget - New Implementation */
.blog-sidebar-tags {
    background: white;
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 20px 60px rgba(0,132,255,0.12);
    border: 1px solid rgba(0,132,255,0.05);
    transition: all 0.3s ease;
}

.blog-sidebar-tags:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 80px rgba(0,132,255,0.15);
}

.blog-sidebar-tags h4 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1d2b;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e8f4ff;
    position: relative;
}

.blog-sidebar-tags h4::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #0084ff;
}

.blog-sidebar-tags .tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.blog-sidebar-tags .tag-item {
    background: linear-gradient(135deg, #f8fafc 0%, #e8f4ff 100%);
    color: #1a1d2b;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 3px 10px rgba(0,132,255,0.05);
}

.blog-sidebar-tags .tag-item:hover {
    background: linear-gradient(135deg, #0084ff 0%, #0066cc 100%);
    color: white;
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 8px 25px rgba(0,132,255,0.3);
}

/* ===== MODERN ATTRACTIONS PAGE STYLES ===== */
.modern-attractions-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafe 0%, #e8f4ff 100%);
    position: relative;
}

.modern-attractions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%230084ff" fill-opacity="0.03"><circle cx="30" cy="30" r="2"/></g></svg>');
    z-index: 1;
}

.modern-attractions-section .auto-container {
    position: relative;
    z-index: 2;
}

/* Hero Section */
.attractions-hero {
    text-align: center;
    margin-bottom: 80px;
    padding: 60px 0;
    background: white;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 132, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.attractions-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 49%, rgba(0, 132, 255, 0.05) 50%, transparent 51%);
    transform: rotate(45deg);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1d2b;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, #1a1d2b 0%, #0084ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.modern-attractions-section .stat-item {
    text-align: center;
}

.modern-attractions-section .stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #0084ff;
    margin-bottom: 8px;
    display: block;
}

.modern-attractions-section .stat-label {
    font-size: 16px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Category Sections */
.category-section {
    margin-bottom: 80px;
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 132, 255, 0.08);
    border-left: 6px solid #0084ff;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0084ff 0%, #0066cc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    flex-shrink: 0;
}

.category-icon i {
    font-size: 32px;
    color: white;
}

.category-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1d2b;
    margin-bottom: 10px;
    line-height: 1.3;
}

.category-description {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Attractions Grid */
.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.attraction-card {
    background: white;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 8px 30px rgba(0, 132, 255, 0.08);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 450px;
    height: auto;
}

.attraction-card.featured {
    grid-column: span 2;
    min-height: 500px;
}

.attraction-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 132, 255, 0.15);
}

.card-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 20px 20px 0 0;
}

.attraction-card.featured .card-image {
    height: 300px;
}

.card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 100%);
    z-index: 1;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.attraction-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: relative;
    background: linear-gradient(135deg, #f8fafe 0%, white 100%);
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    border-radius: 0 0 20px 20px;
    min-height: 200px;
}

.attraction-card .overlay-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: flex-start;
}

.attraction-card:hover .overlay-content {
    transform: none;
}

.attraction-tag {
    display: inline-block;
    background: linear-gradient(135deg, #0084ff 0%, #0066cc 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
    width: auto;
    max-width: fit-content;
    white-space: nowrap;
}

.overlay-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1d2b;
    margin-bottom: 10px;
    line-height: 1.3;
}

.overlay-content p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}

.explore-btn {
    display: inline-block;
    background: linear-gradient(135deg, #0084ff 0%, #0066cc 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
    margin-top: auto;
}

.explore-btn:hover {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 132, 255, 0.3);
    color: white;
}

/* Call to Action - Only for Attractions Page */
.modern-attractions-section .attractions-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: linear-gradient(135deg, #0084ff 0%, #0066cc 100%);
    padding: 60px;
    border-radius: 25px;
    margin-top: 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.modern-attractions-section .attractions-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.modern-attractions-section .cta-content {
    position: relative;
    z-index: 2;
}

.modern-attractions-section .cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.modern-attractions-section .cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.modern-attractions-section .cta-buttons {
    display: flex;
    gap: 20px;
}

.modern-attractions-section .primary-btn, .modern-attractions-section .secondary-btn {
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.modern-attractions-section .primary-btn {
    background: white;
    color: #0084ff;
}

.modern-attractions-section .primary-btn:hover {
    background: #f0f8ff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.modern-attractions-section .secondary-btn {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.modern-attractions-section .secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

.cta-image {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .attraction-card.featured {
        grid-column: span 1;
        min-height: 450px;
    }
    
    .attraction-card.featured .card-image {
        height: 250px;
    }
    
    .hero-stats {
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 36px;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
    }
    
    .category-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .modern-attractions-section .attractions-cta {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .modern-attractions-section .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .modern-attractions-section {
        padding: 60px 0;
    }
    
    .attractions-hero {
        margin-bottom: 60px;
        padding: 40px 20px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .attractions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .attraction-card {
        min-height: auto;
    }
    
    .card-image {
        height: 200px;
    }
    
    .card-overlay {
        padding: 20px;
        min-height: 150px;
    }
    
    .category-section {
        margin-bottom: 60px;
    }
    
    .category-header {
        padding: 20px;
    }
    
    .category-title {
        font-size: 24px;
    }
    
    .modern-attractions-section .attractions-cta {
        padding: 40px 20px;
        margin-top: 60px;
    }
    
    .modern-attractions-section .cta-content h2 {
        font-size: 28px;
    }
    
    .modern-attractions-section .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== MODERN CONTACT PAGE STYLES - COMPACT VERSION ===== */
.modern-contact-section {
    padding: 60px 0;
    background: #f8fafe;
}

/* Section Header */
.section-header {
    margin-bottom: 50px;
}

.modern-contact-section .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1d2b;
    margin-bottom: 15px;
    line-height: 1.2;
    text-align: center;
}


.section-subtitle {
    font-size: 16px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.contact-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 132, 255, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 132, 255, 0.05);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 132, 255, 0.15);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e8f4ff 0%, #cce7ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.contact-card:hover .card-icon {
    transform: scale(1.05);
}

.card-icon i {
    font-size: 24px;
    color: #0084ff;
}

.contact-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1d2b;
    margin-bottom: 10px;
    line-height: 1.3;
}

.contact-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.contact-card a {
    color: #0084ff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #0066cc;
}

/* Contact Form - Full Width */
.contact-form-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.form-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 132, 255, 0.1);
    width: 100%;
    border: 1px solid rgba(0, 132, 255, 0.05);
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1d2b;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.3;
}

.modern-contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 30px;
}

.form-row {
    display: contents;
}

.form-field,
.form-field-full {
    position: relative;
}

.form-field-full {
    grid-column: 1 / -1;
}

.form-field input,
.form-field-full input,
.form-field-full select,
.form-field-full textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e8f4ff;
    border-radius: 12px;
    font-size: 16px;
    color: #1a1d2b;
    background: #f8fafc;
    transition: all 0.3s ease;
    font-weight: 500;
    box-sizing: border-box;
}

.form-field input:focus,
.form-field-full input:focus,
.form-field-full select:focus,
.form-field-full textarea:focus {
    outline: none;
    border-color: #0084ff;
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 132, 255, 0.1);
}

.form-field input::placeholder,
.form-field-full input::placeholder,
.form-field-full textarea::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.form-field-full textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, #0084ff 0%, #0066cc 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 20px rgba(0, 132, 255, 0.3);
    justify-self: center;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 132, 255, 0.4);
}

.submit-btn svg {
    transition: transform 0.3s ease;
}

.submit-btn:hover svg {
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-form-wrapper {
        max-width: 100%;
        padding: 0 20px;
    }
}

@media (max-width: 991px) {
    .modern-contact-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .contact-card {
        padding: 25px 15px;
    }
    
    .form-container {
        padding: 35px;
    }
    
    .modern-contact-form {
        gap: 20px 25px;
    }
}

@media (max-width: 767px) {
    .modern-contact-section {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 15px;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 35px;
    }
    
    .contact-card {
        padding: 25px 20px;
    }
    
    .contact-card h4 {
        font-size: 16px;
    }
    
    .contact-card p {
        font-size: 13px;
    }
    
    .form-container {
        padding: 30px 25px;
        margin: 0 15px;
    }
    
    .form-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .modern-contact-form {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-field input,
    .form-field-full input,
    .form-field-full select,
    .form-field-full textarea {
        padding: 14px 18px;
        font-size: 15px;
        border-radius: 10px;
    }
    
    .submit-btn {
        padding: 14px 35px;
        font-size: 15px;
        border-radius: 25px;
    }
}

@media (max-width: 480px) {
    .form-container {
        padding: 25px 20px;
        margin: 0 10px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .contact-card {
        padding: 20px 15px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
    }
    
    .card-icon i {
        font-size: 20px;
    }
}

/* Category Widget */
.category-widget .category-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.category-widget .category-list li {
    padding: 15px 20px;
    margin-bottom: 8px;
    border-radius: 15px;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.category-widget .category-list li:hover {
    background: #e8f4ff;
    transform: translateX(5px);
}

.category-widget .category-list li:last-child {
    margin-bottom: 0;
}

.category-widget .category-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #1a1d2b;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-widget .category-list a:hover {
    color: #0084ff;
}

.category-widget .category-list span {
    background: white;
    color: #0084ff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    min-width: 25px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,132,255,0.15);
}

/* Post Widget */
.post-widget .post {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.post-widget .post:hover {
    background: #e8f4ff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,132,255,0.1);
}

.post-widget .post:last-child {
    margin-bottom: 0;
}

.post-widget .post-thumb {
    flex-shrink: 0;
    width: 85px;
    height: 85px;
    border-radius: 15px;
    overflow: hidden;
    margin: 0;
    box-shadow: 0 5px 15px rgba(0,132,255,0.15);
}

.post-widget .post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-widget .post:hover .post-thumb img {
    transform: scale(1.05);
}

.post-widget .post h5 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1d2b;
    line-height: 1.4;
    margin-bottom: 8px;
}

.post-widget .post h5 a {
    color: #1a1d2b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-widget .post h5 a:hover {
    color: #0084ff;
}

.post-widget .post-date {
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

/* Tags Widget */
.tags-widget .tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tags-widget .tags-list a {
    background: linear-gradient(135deg, #f8fafc 0%, #e8f4ff 100%);
    color: #1a1d2b;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 3px 10px rgba(0,132,255,0.05);
}

.tags-widget .tags-list a:hover {
    background: linear-gradient(135deg, #0084ff 0%, #0066cc 100%);
    color: white;
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 8px 25px rgba(0,132,255,0.3);
}

/* Responsive Design */
@media (max-width: 991px) {
    .blog-sidebar {
        padding-left: 0;
        margin-top: 60px;
    }
    
    .blog-detail-content {
        padding: 30px 25px;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 25px;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 20px;
    }
    
    .post-navigation .next-post a {
        flex-direction: row;
    }
}

@media (max-width: 767px) {
    .blog-single h2 {
        font-size: 32px;
    }
    
    .blog-single .image-box .image img {
        height: 300px;
    }
    
    .blog-single .post-date {
        width: 70px;
        height: 70px;
        top: 20px;
        right: 20px;
    }
    
    .blog-single .post-date h3 {
        font-size: 20px;
    }
    
    .post-share-option {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .sidebar-widget {
        padding: 25px 20px;
    }
}

/* Article Blocks */
.article-block {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 40px !important;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Ensure proper row gaps for blog grid */
.blog-page .row {
    margin-bottom: 40px;
}

.blog-page [class*="col-"] {
    margin-bottom: 40px;
}

.article-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.article-block .article-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.article-block .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-block:hover .article-image img {
    transform: scale(1.05);
}

.article-block .article-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.article-block .article-date .date {
    font-size: 18px;
    font-weight: 700;
    color: #0084ff;
    line-height: 1;
}

.article-block .article-date .month {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    line-height: 1;
}

.article-block .article-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-block .article-category {
    background: #e8f4ff;
    color: #0084ff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
    width: fit-content;
    line-height: 1;
}

.article-block h4 {
    font-size: 22px;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.3;
}

.article-block h4 a {
    color: #222;
    transition: color 0.3s ease;
}

.article-block h4 a:hover {
    color: #0084ff;
}

.article-block p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.article-block .article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.article-block .article-meta span {
    color: #888;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.article-block .article-meta i {
    margin-right: 5px;
    color: #0084ff;
    font-size: 12px;
}

/* Category Tabs - Fixed Styling */
.article-categories,
.video-categories {
    padding: 40px 0;
}

.category-tabs {
    text-align: center;
    margin-bottom: 50px;
}

/* Ensure tab text is always visible */
.category-tabs * {
    visibility: visible !important;
    opacity: 1 !important;
}

/* Force text color on tabs */
.blog-page .category-tab-list li,
.vlog-page .category-tab-list li {
    color: #666 !important;
}

.blog-page .category-tab-list li:hover,
.vlog-page .category-tab-list li:hover {
    color: #0084ff !important;
}

.blog-page .category-tab-list li.active,
.vlog-page .category-tab-list li.active {
    color: white !important;
}

.blog-page .category-tab-list li.active:hover,
.vlog-page .category-tab-list li.active:hover {
    color: white !important;
}

.category-tab-list {
    display: inline-flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 20px;
    margin: 0;
    gap: 12px;
    background: #f8fafe;
    border-radius: 35px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
    z-index: 10;
}

.category-tab-list li {
    display: inline-block;
    background: white;
    color: #666 !important;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    border: 2px solid white;
    position: relative;
    text-decoration: none !important;
    white-space: nowrap;
    z-index: 1;
}

.category-tab-list li:hover {
    color: #0084ff !important;
    background: white !important;
    border-color: #0084ff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,132,255,0.15) !important;
}

.category-tab-list li.active {
    background: #0084ff !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,132,255,0.25);
    border-color: #0084ff;
}

.category-tab-list li.active:hover {
    background: #0066cc !important;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,132,255,0.3) !important;
}

/* Blog & Vlog Grid Layouts */
.blog-grid,
.vlog-grid {
    position: relative;
}

.article-layout,
.video-layout {
    display: flex;
    flex-wrap: wrap;
}

.article-item,
.video-item {
    transition: all 0.3s ease;
}

.article-item.hidden,
.video-item.hidden {
    display: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .featured-article-section {
        padding: 40px 0;
    }
    
    .featured-content-box {
        padding: 30px;
    }
    
    .featured-title {
        font-size: 24px;
    }
    
    .featured-text {
        font-size: 15px;
    }
    
    .featured-image-box {
        height: 300px;
    }
    
    .category-tab-list {
        padding: 15px;
        gap: 10px;
        border-radius: 30px;
    }
    
    .category-tab-list li {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .article-block .article-content {
        padding: 20px;
    }
    
    .article-block h4 {
        font-size: 18px;
    }
    
    .category-tab-list {
        justify-content: center;
    }
    
    .category-tab-list li {
        margin: 3px;
        padding: 8px 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .featured-article-section {
        padding: 30px 0;
    }
    
    .featured-article-wrapper {
        border-radius: 15px;
    }
    
    .featured-content-box {
        padding: 20px;
    }
    
    .featured-title {
        font-size: 20px;
    }
    
    .featured-text {
        font-size: 14px;
    }
    
    .featured-meta {
        gap: 15px;
    }
    
    .featured-meta .meta-item {
        font-size: 12px;
    }
    
    .featured-image-box {
        height: 250px;
    }
    
    .category-tab-list {
        padding: 12px;
        gap: 8px;
        border-radius: 25px;
    }
    
    .category-tab-list li {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .article-block .article-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .article-block .article-meta span {
        margin-bottom: 5px;
    }
}

/* ===== CAR AQUARIUM GALLERY STYLES ===== */

.gallery-showcase {
    margin: 40px 0;
}

.main-image,
.side-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.main-image img,
.side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-image {
    height: 400px;
}

.side-image {
    height: 190px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 25, 90, 0.7) 0%, rgba(37, 99, 235, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image:hover .image-overlay,
.side-image:hover .image-overlay {
    opacity: 1;
}

.main-image:hover img,
.side-image:hover img {
    transform: scale(1.05);
}

.zoom-btn {
    color: #ffffff;
    font-size: 1.5rem;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.zoom-btn:hover {
    transform: scale(1.1);
    color: #ffffff;
    text-decoration: none;
}

/* Responsive Gallery */
@media (max-width: 991px) {
    .main-image {
        height: 300px;
        margin-bottom: 30px;
    }
    
    .side-image {
        height: 250px;
    }
}

@media (max-width: 767px) {
    .main-image,
    .side-image {
        height: 250px;
    }
    
    .side-images .side-image:last-child {
        margin-bottom: 0;
    }
}

/* Centered Image Layout for single image galleries */
.centered-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin: 0 auto 40px auto;
    max-width: 800px;
    height: 450px;
}

.centered-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.centered-image:hover .image-overlay {
    opacity: 1;
}

.centered-image:hover img {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .centered-image {
        height: 350px;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .centered-image {
        height: 280px;
        margin-bottom: 20px;
    }
}

/* Hero Section */
.hero-section {
    margin-bottom: 80px;
}

.hero-content {
    padding-right: 30px;
}

.hero-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 25, 90, 0.15);
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 20px 0 10px 0;
    line-height: 1.1;
}

.subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 0;
    font-weight: 500;
}

/* Main Content */
.main-content {
    max-width: 1000px;
    margin: 0 auto;
}

.content-wrapper {
    background: #ffffff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 25, 90, 0.08);
    margin-bottom: 40px;
}

.content-text {
    margin-bottom: 60px;
}

.lead-paragraph {
    font-size: 1.25rem;
    font-weight: 500;
    color: #333;
    line-height: 1.7;
    margin-bottom: 30px;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

/* Image Gallery Section */
.image-gallery-section {
    margin-bottom: 60px;
}


.gallery-grid {
    margin-bottom: 40px;
}




.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 25, 90, 0.7) 0%, rgba(37, 99, 235, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-zoom {
    color: #ffffff;
    font-size: 1.5rem;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.gallery-zoom:hover {
    transform: scale(1.1);
    color: #ffffff;
    text-decoration: none;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, #00195A 0%, #2563eb 100%);
    border-radius: 20px;
    padding: 50px 40px;
    color: #ffffff;
}

.cta-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 180px;
    justify-content: center;
}

.btn-primary {
    background: #ffffff;
    color: #00195A;
}

.btn-primary:hover {
    background: #f8f9fa;
    color: #00195A;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 991px) {
    .car-aquarium-content {
        padding: 60px 0;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .page-title {
        font-size: 3rem;
    }
    
    .content-wrapper {
        padding: 40px 30px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .gallery-item.featured {
        grid-row: auto;
    }
}

@media (max-width: 767px) {
    .car-aquarium-content {
        padding: 40px 0;
    }
    
    .hero-section {
        margin-bottom: 60px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .content-wrapper {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
}

/* Intro Section */
.intro-section {
    margin-bottom: 80px;
}

.intro-content {
    padding-right: 40px;
}

.subtitle-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #00195A 0%, #2563eb 100%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 25, 90, 0.3);
}

.subtitle-badge i {
    font-size: 16px;
}

.main-title {
    font-size: 3.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.1;
    background: linear-gradient(135deg, #00195A 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sub-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
}

.sub-title::before {
    content: '"';
    position: absolute;
    left: -15px;
    top: -5px;
    font-size: 2rem;
    color: #00195A;
    font-family: serif;
}

.sub-title::after {
    content: '"';
    position: absolute;
    right: -15px;
    bottom: -5px;
    font-size: 2rem;
    color: #00195A;
    font-family: serif;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0;
}

/* Intro Image */
.intro-image {
    position: relative;
    text-align: center;
}

.intro-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 25, 90, 0.15);
    transition: transform 0.3s ease;
}

.intro-image:hover img {
    transform: translateY(-10px);
}

.image-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.deco-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 196, 167, 0.1) 0%, rgba(0, 123, 193, 0.1) 100%);
}

.deco-1 {
    width: 120px;
    height: 120px;
    top: -20px;
    right: -30px;
    animation: float 6s ease-in-out infinite;
}

.deco-2 {
    width: 80px;
    height: 80px;
    bottom: -20px;
    left: -20px;
    animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Details Section */
.details-section {
    background: #ffffff;
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    margin-top: 40px;
}

/* Content Area */
.content-area {
    padding-right: 40px;
}

.experience-block {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #f0f8f5;
}

.experience-block:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.block-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
}

.block-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 35px;
    background: linear-gradient(135deg, #00195A 0%, #2563eb 100%);
    border-radius: 2px;
}

.experience-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* Gallery Block */
.gallery-block {
    margin-bottom: 50px;
}

.image-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.gallery-item.main-image {
    grid-row: span 2;
    aspect-ratio: 4/5;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.zoom-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.zoom-btn:hover {
    background: #ffffff;
    color: #007bc1;
    transform: scale(1.1);
}

/* CTA Block */
.cta-block {
    background: linear-gradient(135deg, #007bc1 0%, #00c4a7 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.cta-block::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-block h4 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-block p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .theme-btn {
    min-width: 180px;
    padding: 15px 30px;
    border-radius: 50px;
}

.theme-btn.btn-two {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #ffffff;
    color: #ffffff;
}

.theme-btn.btn-two:hover {
    background: #ffffff;
    color: #00195A;
}

/* Sidebar Area */
.sidebar-area {
    padding-left: 30px;
}

.info-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f8f5;
    transition: all 0.3s ease;
}

.info-card:hover {
    box-shadow: 0 15px 35px rgba(0, 25, 90, 0.12);
    transform: translateY(-3px);
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f8f5;
    position: relative;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(135deg, #00195A 0%, #2563eb 100%);
}

/* Info List */
.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f8fffe;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00195A 0%, #2563eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-right: 15px;
    font-size: 16px;
}

.info-content strong {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 3px;
}

.info-content span {
    color: #666;
    font-size: 14px;
}

/* Visit Info */
.visit-info {
    margin-bottom: 30px;
}

.visit-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #f8fffe;
}

.visit-item:last-child {
    border-bottom: none;
}

.visit-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #00195A 0%, #2563eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-right: 15px;
    font-size: 18px;
}

.visit-details h6 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.visit-details p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Visit Buttons */
.visit-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.visit-btn {
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 14px;
}

.visit-btn.primary {
    background: linear-gradient(135deg, #00195A 0%, #2563eb 100%);
    color: #ffffff;
}

.visit-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 196, 167, 0.3);
}

.visit-btn.secondary {
    background: transparent;
    color: #007bc1;
    border-color: #007bc1;
}

.visit-btn.secondary:hover {
    background: #007bc1;
    color: #ffffff;
}

/* Related Attractions */
.related-attractions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8fffe;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e8f8f5;
}

.related-item:hover {
    background: #ffffff;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 196, 167, 0.1);
}

.related-image {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-content h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.related-content h6 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-content h6 a:hover {
    color: #007bc1;
}

.related-content p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .car-aquarium-modern {
        padding: 60px 0;
    }
    
    .intro-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .main-title {
        font-size: 3rem;
    }
    
    .details-section {
        padding: 40px 30px;
    }
    
    .content-area {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .sidebar-area {
        padding-left: 0;
    }
    
    .image-gallery {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .gallery-item.main-image {
        grid-column: span 2;
        aspect-ratio: 16/9;
    }
}

@media (max-width: 767px) {
    .car-aquarium-modern {
        padding: 40px 0;
    }
    
    .intro-section {
        margin-bottom: 50px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .sub-title {
        font-size: 1.3rem;
    }
    
    .details-section {
        padding: 30px 20px;
        margin-top: 20px;
    }
    
    .block-title {
        font-size: 1.6rem;
    }
    
    .image-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item.main-image {
        grid-column: span 1;
        aspect-ratio: 4/3;
    }
    
    .cta-block {
        padding: 30px 20px;
    }
    
    .cta-block h4 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .theme-btn {
        min-width: 200px;
    }
    
    .info-card {
        padding: 25px 20px;
    }
    
    .deco-1 {
        width: 80px;
        height: 80px;
    }
    
    .deco-2 {
        width: 60px;
        height: 60px;
    }
}
/* ============================================
   Blog Detail Page Styles
   ============================================ */

/* Blog Detail Section */
.blog-detail-section {
    background: #f8f9fa;
}

.blog-details-content {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Blog Featured Image */
.blog-featured-image {
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}

.blog-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Blog Content */
.blog-content-wrapper {
    padding: 40px;
}

.blog-content-wrapper h2,
.blog-content-wrapper h3,
.blog-content-wrapper h4 {
    color: #1a1a1a;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.blog-content-wrapper h2 {
    font-size: 28px;
}

.blog-content-wrapper h3 {
    font-size: 24px;
}

.blog-content-wrapper h4 {
    font-size: 20px;
}

.blog-content-wrapper p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
    font-size: 16px;
}

.blog-content-wrapper ul,
.blog-content-wrapper ol {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-content-wrapper li {
    margin-bottom: 10px;
    line-height: 1.8;
}

/* Blog Category Badge */
.blog-category-badge {
    display: inline-block;
    background: #0084ff;
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Blog Meta Header */
.blog-meta-header {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.blog-meta-header .meta-item {
    font-size: 14px;
}

.blog-meta-header .meta-item i {
    margin-right: 5px;
}

/* Blog Tags */
.blog-tags {
    padding: 30px 40px;
    border-top: 1px solid #eee;
}

.blog-tags h4 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item {
    display: inline-block;
    background: #f0f0f0;
    color: #555;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: #0084ff;
    color: #fff;
}

/* Share Section */
.blog-share-section {
    padding: 30px 40px;
    border-top: 1px solid #eee;
}

.blog-share-section h4 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.share-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    color: #fff;
}

.share-btn.facebook {
    background: #3b5998;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #fff;
}

/* Author Bio */
.author-bio-section {
    padding: 30px 40px;
    border-top: 1px solid #eee;
}

.author-bio-inner {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.author-avatar {
    flex-shrink: 0;
}

.author-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #0084ff;
}

.author-info h4 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.author-info p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Related Posts */
.related-posts-section {
    padding: 40px;
    border-top: 1px solid #eee;
}

.related-posts-section h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.related-post-block {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.related-post-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.related-post-block .post-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.related-post-block .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post-block:hover .post-image img {
    transform: scale(1.1);
}

.related-post-block .post-content {
    padding: 20px;
}

.related-post-block .post-category {
    display: inline-block;
    background: #0084ff;
    color: #fff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.related-post-block h5 {
    font-size: 16px;
    margin-bottom: 10px;
}

.related-post-block h5 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post-block h5 a:hover {
    color: #0084ff;
}

.related-post-block .post-date {
    font-size: 13px;
    color: #999;
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.sidebar-widget h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #0084ff;
}

/* Search Widget */
.search-widget .form-group {
    position: relative;
}

.search-widget input[type="search"] {
    width: 100%;
    padding: 12px 50px 12px 15px;
    border: 2px solid #eee;
    border-radius: 25px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.search-widget input[type="search"]:focus {
    border-color: #0084ff;
    outline: none;
}

.search-widget button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #0084ff;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-widget button:hover {
    background: #0066cc;
}

/* Categories Widget */
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list li {
    margin-bottom: 12px;
}

.categories-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555;
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.categories-list a:hover {
    color: #0084ff;
}

.categories-list .count {
    background: #f0f0f0;
    color: #666;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 12px;
}

/* Recent Posts Widget */
.recent-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.recent-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.recent-post-item .post-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.recent-post-item .post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-item .post-info {
    flex: 1;
}

.recent-post-item h5 {
    font-size: 14px;
    margin-bottom: 8px;
}

.recent-post-item h5 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post-item h5 a:hover {
    color: #0084ff;
}

.recent-post-item .post-date {
    font-size: 12px;
    color: #999;
}

.recent-post-item .post-date i {
    margin-right: 5px;
}

/* Tags Widget */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tags-cloud .tag-item {
    display: inline-block;
    background: #f0f0f0;
    color: #555;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tags-cloud .tag-item:hover {
    background: #0084ff;
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .blog-sidebar {
        position: static;
        margin-top: 50px;
    }
    
    .author-bio-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .blog-content-wrapper {
        padding: 30px 20px;
    }
    
    .blog-tags,
    .blog-share-section,
    .author-bio-section,
    .related-posts-section {
        padding: 25px 20px;
    }
}

@media (max-width: 767px) {
    .blog-meta-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .share-links {
        flex-direction: column;
    }
    
    .share-btn {
        justify-content: center;
    }
}

/* ===== MOBILE HEADER FIXES ===== */

/* Improve header-top on mobile */
@media (max-width: 991px) {
    .header-top .top-inner {
        flex-direction: column;
        padding: 8px 15px;
    }

    .header-top .top-left {
        width: 100%;
        margin-bottom: 8px;
    }

    .header-top .top-left .info {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .header-top .top-left .info li {
        font-size: 12px;
        padding: 0 8px;
        border-right: none;
    }

    .header-top .top-right {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 15px;
    }

    .header-top .top-right .social-links {
        margin-right: 0;
    }

    .header-top .top-right .other-links {
        display: none;
    }

    /* Restructure header-lower for mobile */
    .header-style-one .header-lower .outer-box {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 10px 15px !important;
    }

    /* Logo on the left */
    .header-style-one .header-lower .logo-box {
        flex: 0 0 auto;
        padding: 0 !important;
    }

    /* Hide main menu on mobile - completely remove from flow */
    .header-style-one .header-lower .menu-area {
        display: none !important;
        width: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Menu right content with search, hamburger, and book button */
    .header-style-one .header-lower .menu-right-content {
        display: flex !important;
        align-items: center;
        gap: 5px;
        margin-left: auto;
        padding: 0 !important;
    }

    /* Hide support box on mobile */
    .header-style-one .header-lower .menu-right-content .support-box {
        display: none !important;
    }

    /* Style hamburger menu in its new location */
    .menu-right-content .mobile-nav-toggler {
        position: relative;
        cursor: pointer;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        padding: 8px;
        order: 2;
    }

    .menu-right-content .mobile-nav-toggler .icon-bar {
        position: relative;
        height: 2px;
        width: 25px;
        display: block;
        margin-bottom: 5px;
        background-color: #3b3b3b;
        transition: all 300ms ease;
    }

    .menu-right-content .mobile-nav-toggler .icon-bar:last-child {
        margin-bottom: 0px;
    }

    /* Search box styling */
    .menu-right-content .search-box-outer {
        order: 1;
    }

    /* Book ticket button styling */
    .menu-right-content .btn-box {
        order: 3;
    }

    .menu-right-content .btn-box a {
        padding: 8px 12px;
        font-size: 11px;
        white-space: nowrap;
    }
}

/* Smaller screens - simplify header-top more */
@media (max-width: 767px) {
    .header-top .top-left .info li {
        font-size: 11px;
        padding: 0 5px;
    }

    /* Show only email on small screens */
    .header-top .top-left .info li:first-child,
    .header-top .top-left .info li:last-child {
        display: none;
    }

    .header-style-one .header-lower .outer-box {
        padding: 8px 10px;
    }

    .header-style-one .header-lower .logo-box .logo img {
        max-height: 45px;
    }

    /* Hide book ticket button on small screens */
    .menu-right-content .btn-box {
        display: none;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .header-top {
        display: none;
    }

    .header-style-one .header-lower .outer-box {
        padding: 5px 10px;
    }

    .header-style-one .header-lower .logo-box .logo img {
        max-height: 40px;
    }
}

/* ===== MODERN MOBILE MENU - CLEAN WHITE & BLUE THEME ===== */

/* Override existing mobile menu styles */
.mobile-menu .menu-box {
    background: #ffffff !important;
}

/* Book Ticket CTA Button */
.mobile-cta {
    padding: 15px 20px;
}

.mobile-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #0084ff, #00bfff);
    color: #fff !important;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 132, 255, 0.3);
    transition: all 0.3s ease;
}

.mobile-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 132, 255, 0.4);
}

.mobile-book-btn i {
    font-size: 16px;
}

/* Navigation Links */
.mobile-menu .navigation > li > a {
    color: #333333 !important;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 25px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.mobile-menu .navigation > li > a:hover,
.mobile-menu .navigation > li.current > a {
    background: #f8f9fa;
    color: #0084ff !important;
    padding-left: 30px;
}

/* Dropdown button styling */
.mobile-menu .navigation li.dropdown .dropdown-btn {
    background: #f0f0f0;
    color: #333 !important;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.open {
    background: #0084ff;
    color: #fff !important;
}

/* Hide the old mega panel completely */
.mobile-menu .attractions-mega-panel {
    display: none !important;
}

/* Attractions Compact Cards Section */
.mobile-attractions-section {
    padding: 20px;
    background: #f8f9fa;
    margin: 10px 15px;
    border-radius: 12px;
}

.mobile-attractions-section h4 {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-attractions-section h4 i {
    color: #0084ff;
}

.mobile-attractions-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.mobile-attractions-scroll::-webkit-scrollbar {
    display: none;
}

.mobile-attraction-card {
    flex: 0 0 auto;
    width: 90px;
    text-align: center;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-attraction-card:hover {
    transform: scale(1.05);
}

.mobile-attraction-card .card-thumb {
    width: 70px;
    height: 70px;
    margin: 0 auto 8px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #0084ff;
    box-shadow: 0 4px 10px rgba(0, 132, 255, 0.2);
}

.mobile-attraction-card .card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-attraction-card span {
    font-size: 11px;
    font-weight: 500;
    line-height: 1.3;
    display: block;
    color: #333;
}

.view-all-attractions {
    display: block;
    text-align: center;
    color: #0084ff !important;
    font-size: 13px;
    font-weight: 600;
    margin-top: 15px;
    text-decoration: none;
}

.view-all-attractions i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.view-all-attractions:hover i {
    transform: translateX(5px);
}

/* Contact Info Section */
.mobile-menu .contact-info {
    padding: 20px;
    background: #f8f9fa;
    margin: 15px;
    border-radius: 12px;
}

.mobile-menu .contact-info h4 {
    color: #0084ff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-menu .contact-info ul li {
    color: #555;
    font-size: 13px;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.mobile-menu .contact-info ul li i {
    color: #0084ff;
    width: 16px;
    margin-top: 3px;
}

.mobile-menu .contact-info ul li a {
    color: #555 !important;
}

.mobile-menu .contact-info ul li a:hover {
    color: #0084ff !important;
}

/* Social Links */
.mobile-menu .social-links {
    padding: 20px;
    text-align: center;
    border-top: 1px solid #f0f0f0;
}

.mobile-menu .social-links ul {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.mobile-menu .social-links ul li a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    color: #0084ff !important;
    font-size: 16px;
    transition: all 0.3s ease;
}

.mobile-menu .social-links ul li a:hover {
    background: #0084ff;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 132, 255, 0.3);
}

/* Close Button */
.mobile-menu .close-btn {
    width: 36px;
    height: 36px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 15px;
    right: 15px;
    color: #333 !important;
    transition: all 0.3s ease;
}

.mobile-menu .close-btn:hover {
    background: #0084ff;
    color: #fff !important;
    transform: rotate(90deg);
}

/* Menu Backdrop */
.mobile-menu-visible .menu-backdrop {
    background: rgba(0, 0, 0, 0.5) !important;
}

/* Logo Styling */
.mobile-menu .nav-logo {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu .nav-logo img {
    max-height: 50px;
}
