/* Common styles for Aqua Elementor Widgets */

:root {
    --aqua-primary: #00658d;
    --aqua-secondary: #006c52;
    --aqua-tertiary: #3a6188;
    --aqua-glass-bg: rgba(255, 255, 255, 0.4);
    --aqua-glass-blur: 20px;
    --aqua-glass-border: rgba(255, 255, 255, 0.3);
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

*, ::before, ::after {
    box-sizing: border-box;
}

.aqua-glass-panel {
    background: var(--aqua-glass-bg);
    backdrop-filter: blur(var(--aqua-glass-blur));
    -webkit-backdrop-filter: blur(var(--aqua-glass-blur));
    border: 1px solid var(--aqua-glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 168, 232, 0.05);
}

.aqua-organic-blob {
    filter: blur(80px);
    opacity: 0.5;
    z-index: -1;
    position: absolute;
    pointer-events: none;
}

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}
.an-header-wrapper {
    width: 100%;
    position: relative;
    /* Needed so the fixed mobile menu can inherit stacking context from the wrapper */
    z-index: 1000;
}

/* Fix for Admin Bar overlap */
.admin-bar .an-header {
    top: 32px;
}
@media screen and (max-width: 782px) {
    .admin-bar .an-header {
        top: 46px;
    }
}

.an-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(0, 168, 232, 0.05);
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: anHeaderFadeIn 1600ms ease-out forwards;
}



/* Disable entrance animation in Elementor Editor */
.elementor-editor-active .an-header {
    animation: none;
    opacity: 1;
    transform: translateY(0);
}

@keyframes anHeaderFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.an-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 48px;
    height: 80px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transition: background 0.3s ease;
    position: relative;
    z-index: 1;
}

.an-logo {
    font-size: 20px;
    font-weight: 700;
    color: #082f49;
    letter-spacing: -0.05em;
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.an-logo-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.an-logo-media img {
    max-height: 40px;
    width: auto;
}

.an-nav {
    display: flex;
    align-items: center;
}

.an-nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.an-nav-menu li a {
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: inline-block;
    position: relative;
    padding: 4px 0;
}

.an-nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #0284c7;
    transition: width 0.3s ease;
}

.an-nav-menu li a:hover::after,
.an-nav-menu li.an-active a::after {
    width: 100%;
}

.an-nav-menu li a:hover {
    color: #0284c7;
    transform: translateY(-2px);
}

.an-nav-menu li.an-active a {
    color: #0284c7;
    font-weight: 600;
    transform: translateY(-5px);
}

.an-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.an-lang-switcher {
    position: relative;
    display: inline-block;
}

.an-lang-trigger {
    color: #475569;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 8px 12px;
    transition: all 0.3s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
    user-select: none;
}

.an-lang-trigger:hover,
.an-lang-switcher.active .an-lang-trigger {
    color: #00658d;
}

@media (min-width: 1025px) {
    .an-lang-switcher:hover .an-lang-trigger {
        color: #00658d;
    }
}

.an-lang-text {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.an-lang-trigger:hover .an-lang-text {
    transform: translateY(-2px);
}

@media (min-width: 1025px) {
    .an-lang-switcher:hover .an-lang-text {
        transform: translateY(-2px);
    }
}

.an-lang-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    pointer-events: none;
}

.an-lang-icon i {
    font-size: 18px;
    color: inherit;
}

.an-lang-icon svg, 
.an-lang-icon svg path {
    fill: currentColor;
}

.an-lang-icon svg {
    width: 18px;
    height: 18px;
}

.an-lang-arrow {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.an-lang-switcher.active .an-lang-arrow {
    transform: rotate(180deg);
}

@media (min-width: 1025px) {
    .an-lang-switcher:hover .an-lang-arrow {
        transform: rotate(180deg);
    }
}

.an-lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 160px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 8px;
    margin-top: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
}

.an-lang-switcher.active .an-lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (min-width: 1025px) {
    .an-lang-switcher:hover .an-lang-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.an-lang-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: #475569;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.an-lang-dropdown-item:hover {
    background: rgba(0, 101, 141, 0.08);
    color: #00658d;
}

.an-cta-btn {
    background: #00658d;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 10px 15px -3px rgba(0, 101, 141, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: inline-block;
    border: 1px solid transparent;
}

.an-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 101, 141, 0.15);
    background: #005476;
}

.an-burger {
    display: none;
    background: none;
    border: none;
    color: #475569;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.an-burger:hover {
    background: rgba(0, 0, 0, 0.05);
}

.an-mobile-menu {
    position: fixed;
    top: 80px; /* matches .an-header height */
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 999;
    padding: 32px 24px;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.05);
}

.an-mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.an-mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.an-mobile-nav li {
    margin-bottom: 20px;
    transform: translateX(-15px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.an-mobile-menu.active .an-mobile-nav li {
    transform: translateX(0);
    opacity: 1;
}

.an-mobile-menu.active .an-mobile-nav li:nth-child(1) { transition-delay: 0.1s; }
.an-mobile-menu.active .an-mobile-nav li:nth-child(2) { transition-delay: 0.14s; }
.an-mobile-menu.active .an-mobile-nav li:nth-child(3) { transition-delay: 0.18s; }
.an-mobile-menu.active .an-mobile-nav li:nth-child(4) { transition-delay: 0.22s; }
.an-mobile-menu.active .an-mobile-nav li:nth-child(5) { transition-delay: 0.26s; }
.an-mobile-menu.active .an-mobile-nav li:nth-child(6) { transition-delay: 0.30s; }
.an-mobile-menu.active .an-mobile-nav li:nth-child(7) { transition-delay: 0.34s; }
.an-mobile-menu.active .an-mobile-nav li:nth-child(8) { transition-delay: 0.38s; }
.an-mobile-menu.active .an-mobile-nav li:nth-child(9) { transition-delay: 0.42s; }
.an-mobile-menu.active .an-mobile-nav li:nth-child(10) { transition-delay: 0.46s; }
.an-mobile-menu.active .an-mobile-nav li:nth-child(11) { transition-delay: 0.50s; }
.an-mobile-menu.active .an-mobile-nav li:nth-child(12) { transition-delay: 0.54s; }
.an-mobile-menu.active .an-mobile-nav li:nth-child(13) { transition-delay: 0.58s; }
.an-mobile-menu.active .an-mobile-nav li:nth-child(14) { transition-delay: 0.62s; }
.an-mobile-menu.active .an-mobile-nav li:nth-child(15) { transition-delay: 0.66s; }

.an-mobile-btn-wrapper {
    text-align: center;
    transform: translateX(-15px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.an-mobile-menu.active .an-mobile-btn-wrapper {
    transform: translateX(0);
    opacity: 1;
}

.an-mobile-nav li a {
    text-decoration: none;
    color: #082f49;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: block;
    transition: color 0.2s ease;
}

@media (max-width: 1024px) {
    .an-header-container { padding: 0 20px; height: 70px; }
    .an-nav { display: none; }
    .an-cta-btn { display: none; }
    .an-mobile-btn-wrapper .an-cta-btn { display: inline-block; width: 100%; }
    .an-burger { display: flex; align-items: center; }
    .an-lang-text, .an-lang-arrow { display: none; }
    .an-lang-trigger { padding: 8px; }
    .an-actions { gap: 12px; }
    /* Adjust mobile menu top offset for smaller header on tablet/mobile */
    .an-mobile-menu { top: 70px; }
}

/* Admin bar offsets for fixed mobile menu */
.admin-bar .an-mobile-menu {
    top: calc(80px + 32px);
}
@media screen and (max-width: 1024px) {
    .admin-bar .an-mobile-menu {
        top: calc(70px + 32px);
    }
}
@media screen and (max-width: 782px) {
    .admin-bar .an-mobile-menu {
        top: calc(70px + 46px);
    }
}
.an-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #ffffff;
    padding: 80px 0;
    margin-top: -80px !important;
    width: 100%;
    z-index: 1;
}

/* On frontend and editor, we make it full-bleed if not in a full-width container */
.an-hero-section {
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    width: 100vw !important;
}

.an-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    background-color: #001e2d;
}

.an-hero-bg img,
.an-hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* For YouTube/Vimeo iframes to act like object-fit: cover */
.an-hero-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 */
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.an-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Blobs */
.an-hero-blobs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.an-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    transition: all 0.5s ease;
}

.an-hero-blob-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
}

.an-hero-blob-2 {
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
}

.an-hero-blob-3 {
    top: 50%;
    left: 33%;
    width: 400px;
    height: 400px;
}

/* Container & Content */
.an-hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 64px;
    width: 100%;
    position: relative;
    z-index: 3;
}



.an-hero-content {
    max-width: 800px;
    opacity: 0;
}

.an-hero-section.an-appear .an-hero-content {
    animation: anFadeInUp 1600ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Elementor Editor Fix */
.elementor-editor-active .an-hero-content {
    opacity: 1;
    animation: none;
}

.an-hero-badge {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: block;
    opacity: 0.9;
}

.an-hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(40px, 8vw, 64px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
}

.an-hero-description {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.6;
    margin-bottom: 48px;
    opacity: 0.9;
    max-width: 650px;
}

/* Buttons */
.an-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.an-hero-btn {
    padding: 18px 36px;
    border-radius: 100px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    white-space: nowrap;
}

.an-hero-btn i,
.an-hero-btn svg {
    transition: transform 0.3s ease;
}

.an-hero-btn:hover i,
.an-hero-btn:hover svg {
    transform: translateX(5px);
}

.an-hero-btn-primary {
    box-shadow: 0 10px 20px rgba(0, 168, 232, 0.15);
}

.an-hero-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 168, 232, 0.25);
}

.an-hero-btn-secondary {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.an-hero-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 1024px) {
    .an-hero-container {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .an-hero-section {
        padding: 100px 0;
        text-align: center;
        min-height: auto;
    }
    .an-hero-container {
        padding: 0 24px;
    }
    .an-hero-content {
        margin: 0 auto;
    }
    .an-hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    .an-hero-buttons {
        justify-content: center;
        flex-direction: column;
    }
    .an-hero-btn {
        width: 100%;
    }
    .an-hero-blob {
        opacity: 0.2;
    }
}
.an-features-wrapper {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 20px;
    box-sizing: border-box;
}

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

.an-features-header {
    margin-bottom: 80px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
}

.an-features-wrapper.an-appear .an-features-header {
    animation: anFadeInUp 1600ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.an-features-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(32px, 5vw, 40px);
    line-height: 1.2;
    margin-bottom: 16px;
    color: #00658d;
    letter-spacing: -0.01em;
}

.an-features-description {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #3e4850;
}

.an-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    width: 100%;
}

.an-features-card {
    padding: 32px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px 0 rgba(0, 168, 232, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    opacity: 0;
}

.an-features-wrapper.an-appear .an-features-card {
    animation: anFadeInUp 1600ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Elementor Editor Fix */
.elementor-editor-active .an-features-header,
.elementor-editor-active .an-features-card {
    opacity: 1;
    animation: none;
}

.an-features-card:nth-child(1) { animation-delay: 0.1s; }
.an-features-card:nth-child(2) { animation-delay: 0.2s; }
.an-features-card:nth-child(3) { animation-delay: 0.3s; }
.an-features-card:nth-child(4) { animation-delay: 0.4s; }

.an-features-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 15px 45px 0 rgba(0, 168, 232, 0.1);
}

.an-features-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.an-features-card:hover .an-features-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.an-features-card-icon .material-symbols-outlined {
    font-size: 36px;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.an-features-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 16px;
    color: #082f49;
}

.an-features-card-description {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #3e4850;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .an-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .an-features-wrapper {
        padding: 40px 20px;
    }
    .an-features-header {
        margin-bottom: 48px;
    }
    .an-features-grid {
        grid-template-columns: 1fr;
    }
    .an-features-card {
        padding: 32px 24px;
        align-items: center;
        text-align: center;
    }
}
.an-about-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    opacity: 0;
}

.an-about-section.an-appear {
    animation: anFadeInUp 1600ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Elementor Editor Fix */
.elementor-editor-active .an-about-section {
    opacity: 1;
    animation: none;
}

.an-about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.an-about-section.is-expanded .an-about-container {
    align-items: stretch;
}

.an-about-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.an-about-description {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    line-height: 1.6;
}

.an-about-description-wrapper {
    margin-bottom: 32px;
    position: relative;
}

.an-about-description-inner {
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    max-height: 2000px; /* Large enough for expanded state */
}

/* Fade out effect when collapsed */
.an-about-description-wrapper.collapsed .an-about-description-inner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to bottom, transparent, #fff);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.an-about-description-wrapper:not(.collapsed) .an-about-description-inner::after {
    opacity: 0;
}

.an-about-readmore-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 28px;
    background: rgba(143, 246, 208, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #002117;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 100px;
    cursor: pointer;
    margin: 24px 0 0 0;
    position: relative;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 24px rgba(0, 33, 23, 0.1);
    z-index: 1;
}

.an-about-readmore-btn:hover {
    transform: scale(1.05) translateY(-5px);
    background: rgba(143, 246, 208, 0.9);
    box-shadow: 0 12px 30px rgba(0, 33, 23, 0.2);
}

.an-about-readmore-btn .material-symbols-outlined {
    font-size: 20px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: anArrowJump 2s infinite;
}

@keyframes anArrowJump {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(4px);
    }
}

.an-about-description-wrapper:not(.collapsed) .an-about-readmore-btn .material-symbols-outlined {
    transform: rotate(180deg);
    animation: none;
}

.an-about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
}

.an-about-badge {
    display: flex;
    items-center: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    color: #171c1f;
}

.an-about-badge-icon {
    display: flex;
    align-items: center;
    font-size: 20px;
}

.an-about-counters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.an-about-counter {
    border-left: 4px solid #00658d;
    padding-left: 24px;
}

.an-about-counter-num {
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.an-about-counter-label {
    font-size: 14px;
    font-weight: 600;
    color: #3e4850;
}

/* Grid Images */
.an-about-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.an-about-grid-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1 1 calc(50% - 8px);
    max-width: calc(50% - 8px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.an-about-section.is-expanded .an-about-grid-col {
    flex: 1 1 100%;
    max-width: 100%;
}

.an-about-img-box {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    flex: 1;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.an-about-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.an-about-img-box:hover img {
    transform: scale(1.05);
}

.img-top { min-height: 256px; }
.img-bottom { min-height: 192px; }
.img-large { min-height: 450px; }

.col-large {
    padding-top: 48px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.an-about-section.is-expanded .col-large {
    padding-top: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .an-about-container {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 32px;
    }
}

@media (max-width: 768px) {
    .an-about-section { padding: 80px 0; }
    .an-about-container { padding: 0 20px; }
    .an-about-title { font-size: 32px; }
    .an-about-counters { grid-template-columns: 1fr; }
    .an-about-grid { display: none; }
    .col-large { padding-top: 0; }
}
.an-cf7-section {
    padding: 80px 0;
    opacity: 0;
}

.an-cf7-section.an-appear {
    animation: anFadeInUp 1600ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Elementor Editor Fix */
.elementor-editor-active .an-cf7-section {
    opacity: 1;
    animation: none;
}

.an-cf7-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px;
    border-radius: 48px;
    position: relative;
    overflow: hidden;
}

.an-cf7-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 33%;
    height: 100%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.an-cf7-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.an-cf7-title {
    font-size: 40px;
    font-weight: 700;
    color: #082f49;
    margin-bottom: 24px;
}

.an-cf7-description {
    font-size: 18px;
    color: #3e4850;
    margin-bottom: 40px;
    line-height: 1.6;
}

.an-cf7-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.an-cf7-btn-primary {
    background: #00658d;
    color: #fff;
    padding: 16px 32px;
    border-radius: 99px;
    border: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.an-cf7-btn-primary:hover {
    box-shadow: 0 10px 20px rgba(0, 101, 141, 0.3);
    transform: translateY(-2px);
}

.an-cf7-btn-outline {
    border: 2px solid rgba(0, 101, 141, 0.2);
    color: #00658d;
    padding: 16px 32px;
    border-radius: 99px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.an-cf7-btn-outline:hover {
    background: rgba(0, 101, 141, 0.05);
}

.an-cf7-qr-group {
    display: flex;
    gap: 40px;
}

.an-cf7-qr-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.an-cf7-qr-box {
    width: 96px;
    height: 96px;
    background: #fff;
    padding: 8px;
    border-radius: 12px;
    border: 1px solid #bdc8d1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.an-cf7-qr-box span {
    font-size: 48px;
    color: #dfe3e7;
}

.an-cf7-qr-box img {
    max-width: 100%;
}

.an-cf7-qr-label {
    font-size: 14px;
    font-weight: 600;
    color: #3e4850;
}

/* Form Container */
.an-cf7-form-box {
    background: rgba(255, 255, 255, 0.6);
    padding: 32px;
    border-radius: 32px;
    border: 1px solid #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.an-cf7-form-title {
    font-size: 24px;
    font-weight: 700;
    color: #00658d;
    margin-bottom: 24px;
}

/* CF7 Styling Reset & Enhancement */
.an-cf7-form-box .wpcf7-form p {
    margin-bottom: 16px;
}

.an-cf7-form-box input:not([type="submit"]),
.an-cf7-form-box select,
.an-cf7-form-box textarea {
    width: 100%;
    background: #fff;
    border: 1px solid #bdc8d1;
    padding: 12px 16px;
    border-radius: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.an-cf7-form-box input:focus,
.an-cf7-form-box select:focus,
.an-cf7-form-box textarea:focus {
    border-color: #00658d;
    outline: none;
}

.an-cf7-form-box input[type="submit"] {
    width: 100%;
    background: #8ff6d0;
    color: #002117;
    font-weight: 700;
    padding: 16px;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.an-cf7-form-box input[type="submit"]:hover {
    transform: scale(1.02);
}

.an-cf7-no-form {
    color: #ba1a1a;
    font-style: italic;
}

/* Responsive */
@media (max-width: 1024px) {
    .an-cf7-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .an-cf7-wrapper { padding: 40px 20px; }
    .an-cf7-title { font-size: 32px; }
    .an-cf7-actions { flex-direction: column; }
    .an-cf7-btn-primary, .an-cf7-btn-outline { justify-content: center; }
}
.an-partners-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
    opacity: 0;
}

.an-partners-section.an-appear {
    animation: anFadeInUp 1600ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Elementor Editor Fix */
.elementor-editor-active .an-partners-section {
    opacity: 1;
    animation: none;
}

/* Full-bleed hack for boxed containers */
.an-partners-section {
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    width: 100vw !important;
}

.an-partners-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 64px;
}

.an-partners-title {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #3e4850;
    margin-bottom: 60px;
}

.an-partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.an-partner-item {
    transition: all 0.5s ease;
}

.an-partner-item img {
    max-height: 50px;
    width: auto;
    display: block;
}

.an-partner-name {
    font-size: 24px;
    font-weight: 700;
    color: #bdc8d1;
}

.an-grayscale .an-partner-item {
    filter: grayscale(100%);
}

.an-partner-item:hover {
    opacity: 1 !important;
    filter: grayscale(0%) !important;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .an-partners-container { padding: 0 20px; }
    .an-partners-grid { gap: 40px; }
}

/* Partners Slider Widget */
.an-partners-slider-section {
    width: 100%;
}

.an-partners-slider-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.an-partners-slider-title {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #3e4850;
    margin-bottom: 60px;
}

.an-partners-slider {
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.an-partner-slider-item {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
}

.an-partner-slider-item img {
    max-height: 50px;
    width: auto;
    display: block;
}

.an-partner-slider-item:hover {
    opacity: 1 !important;
    filter: grayscale(0%) !important;
    transform: scale(1.1);
}

.an-grayscale .an-partner-slider-item {
    filter: grayscale(100%);
}

/* Partners Slider Animations */
.an-partners-slider-title,
.an-partner-slider-item {
    opacity: 0;
}

.an-partners-slider-section.an-appear .an-partners-slider-title,
.an-partners-slider-section.an-appear .an-partner-slider-item {
    animation: anFadeInUp 1200ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.elementor-editor-active .an-partners-slider-title,
.elementor-editor-active .an-partner-slider-item {
    opacity: 1;
    animation: none;
}
.an-contact-section {
    padding: 80px 0;
    background: rgba(228, 233, 237, 0.3);
    position: relative;
    overflow: hidden;
    opacity: 0;
}

.an-contact-section.an-appear {
    animation: anFadeInUp 1600ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Elementor Editor Fix */
.elementor-editor-active .an-contact-section {
    opacity: 1;
    animation: none;
}

/* Full-bleed hack for boxed containers */
.an-contact-section {
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    width: 100vw !important;
}

.an-contact-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.an-contact-title {
    font-size: 40px;
    font-weight: 700;
    color: #00658d;
    margin-bottom: 48px;
}

.an-contact-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.an-contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00658d;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.an-contact-item:hover .an-contact-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 24px rgba(0, 101, 141, 0.2);
}

.an-contact-icon i {
    font-size: 20px;
}

.an-contact-label {
    font-size: 14px;
    font-weight: 700;
    color: #082f49;
    margin-bottom: 4px;
}

.an-contact-value {
    font-size: 16px;
    color: #3e4850;
    line-height: 1.6;
    margin: 0;
}

/* Map Wrapper */
.an-contact-map-wrapper {
    height: 450px;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
}

.an-contact-map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    filter: grayscale(100%);
}

.an-contact-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.an-contact-marker:hover {
    transform: translate(-50%, calc(-50% - 8px));
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.an-contact-marker-icon {
    width: 40px;
    height: 40px;
    background: #00658d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.an-contact-marker:hover .an-contact-marker-icon {
    transform: scale(1.15) rotate(5deg);
}

.an-contact-marker-title {
    font-weight: 700;
    font-size: 14px;
    color: #171c1f;
}

.an-contact-marker-desc {
    font-size: 12px;
    color: #3e4850;
}

@media (max-width: 1024px) {
    .an-contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 32px;
    }
}

@media (max-width: 768px) {
    .an-contact-container { padding: 0 20px; }
    .an-contact-title { font-size: 32px; }
    .an-contact-map-wrapper { height: 350px; }
}
.an-footer-section {
    padding-top: 80px;
    margin-top: 40px;
    opacity: 0;
}

.an-footer-section.an-appear {
    animation: anFadeInUp 1600ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Elementor Editor Fix */
.elementor-editor-active .an-footer-section {
    opacity: 1;
    animation: none;
}

.an-footer-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    border-radius: 32px 32px 0 0;
    padding: 64px;
}

.an-footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.an-footer-logo {
    font-size: 24px;
    font-weight: 800;
    color: #082f49;
    margin-bottom: 8px;
}

.an-footer-copyright {
    font-size: 14px;
    color: #6e7881;
}

.an-footer-custom-html {
    display: block;
    max-width: 100%;
}

.an-footer-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.an-footer-totop {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #bdc8d1;
    background: transparent;
    color: #6e7881;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.an-footer-totop:hover {
    border-color: #00658d;
    color: #00658d;
}

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

.an-footer-social-item {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f4f8;
    color: #00658d;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease;
}

.an-footer-social-item:hover {
    background: #c6e7ff;
}

@media (max-width: 1024px) {
    .an-footer-container {
        flex-direction: column;
        text-align: center;
    }
    .an-footer-custom-html {
        margin: 16px 0;
    }
}

@media (max-width: 768px) {
    .an-footer-wrapper { padding: 40px 20px; }
}
.an-cta-block-section {
    padding: 80px 0;
    background: #082f49;
    color: #fff;
    position: relative;
    overflow: hidden;
    width: 100%;
    opacity: 0;
}

.an-cta-block-section.an-appear {
    animation: anFadeInUp 1600ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Elementor Editor Fix */
.elementor-editor-active .an-cta-block-section {
    opacity: 1;
    animation: none;
}

/* Full-bleed hack for boxed containers */
.an-cta-block-section {
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    width: 100vw !important;
}

.an-cta-block-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.an-cta-block-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

.an-cta-block-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent, #082f49);
}

.an-cta-block-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 64px;
    position: relative;
    z-index: 1;
}

.an-cta-block-header {
    text-align: center;
    margin-bottom: 80px;
}

.an-cta-block-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #fff;
}

.an-cta-block-desc {
    font-size: 18px;
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto;
}

.an-cta-block-grid {
    display: grid;
}

.an-cta-block-card {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    padding: 40px;
    border-radius: 32px;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.an-cta-block-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.an-cta-block-card-icon {
    font-size: 48px;
    color: #8ff6d0;
    margin-bottom: 24px;
    display: inline-flex;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.an-cta-block-card:hover .an-cta-block-card-icon {
    transform: scale(1.15) rotate(5deg);
}

.an-cta-block-card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.an-cta-block-card-desc {
    font-size: 16px;
    opacity: 0.7;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .an-cta-block-container { padding: 0 20px; }
    .an-cta-block-title { font-size: 32px; }
}

/* AN Mission & Vision Widget */
.an-mv-section {
    padding: var(--aqua-section-padding, 80px) 0;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 15% 50%, rgba(131, 207, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 85% 30%, rgba(143, 246, 208, 0.1) 0%, transparent 50%);
}

.an-mv-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.an-mv-reverse {
    flex-direction: row-reverse;
}

.an-mv-image-col {
    flex: 1;
    width: 50%;
    position: relative;
}

.an-mv-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.an-mv-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.an-mv-image-wrapper:hover img {
    transform: scale(1.05);
}

.an-mv-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 101, 141, 0.2), transparent);
    pointer-events: none;
}

.an-mv-floating-badge {
    position: absolute;
    bottom: 40px;
    left: -40px;
    max-width: 320px;
    padding: 24px;
    border-radius: 24px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.an-mv-reverse .an-mv-floating-badge {
    left: auto;
    right: -40px;
}

.an-mv-badge-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--aqua-primary);
}

.an-mv-floating-badge p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: #3e4850;
    font-weight: 500;
}

.an-mv-content-col {
    flex: 1;
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.an-mv-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: var(--aqua-primary);
    letter-spacing: -0.03em;
    margin: 0 0 16px 0;
    line-height: 1.1;
}

.an-mv-subtitle {
    font-size: 20px;
    color: #3e4850;
    margin: 0;
    font-weight: 400;
}

.an-mv-cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.an-mv-card {
    padding: 40px;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.an-mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px 0 rgba(0, 101, 141, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.an-mv-card-glow {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.an-mv-card:hover .an-mv-card-glow {
    transform: scale(1.6) translate(-5px, 5px);
    filter: blur(50px);
    opacity: 0.9;
}

.an-mv-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.an-mv-card-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.an-mv-card:hover .an-mv-card-icon-box {
    transform: scale(1.15) rotate(-5deg);
}

.an-mv-card-icon-box .material-symbols-outlined {
    font-variation-settings: 'FILL' 1;
}

.an-mv-card-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    color: var(--aqua-tertiary);
}

.an-mv-card-body {
    font-size: 16px;
    line-height: 1.7;
    color: #171c1f;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .an-mv-container {
        flex-direction: column !important;
        gap: 64px;
        padding: 0 24px;
    }
    .an-mv-image-col, .an-mv-content-col {
        width: 100%;
    }
    .an-mv-image-wrapper {
        aspect-ratio: 16/9;
    }
    .an-mv-floating-badge {
        display: none;
    }
}

@media (max-width: 768px) {
    .an-mv-image-col {
        display: none;
    }
}

/* AN Mission & Vision Animations */
.an-mv-section .an-appear {
    opacity: 0;
    transform: translateY(30px);
}

.an-mv-section.an-appear .an-mv-header.an-appear {
    animation: anFadeInUp 1200ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.an-mv-section.an-appear .an-mv-card.an-appear:nth-child(1) {
    animation: anFadeInUp 1200ms cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s forwards;
}

.an-mv-section.an-appear .an-mv-card.an-appear:nth-child(2) {
    animation: anFadeInUp 1200ms cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s forwards;
}

.an-mv-section.an-appear .an-mv-floating-badge.an-appear {
    animation: anFadeInUp 1200ms cubic-bezier(0.2, 0.8, 0.2, 1) 0.6s forwards;
}

/* Editor fixes */
.elementor-editor-active .an-mv-section .an-appear {
    opacity: 1 !important;
    transform: none !important;
}

/* AN Solutions for Shipowners Widget */
.an-ss-section {
    padding: var(--aqua-section-padding, 80px) 0;
    position: relative;
    overflow: hidden;
}

.an-ss-blobs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

.an-ss-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
}

.an-ss-blob-1 {
    top: 25%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--aqua-primary);
}

.an-ss-blob-2 {
    bottom: 25%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: var(--aqua-secondary);
}

.an-ss-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

.an-ss-header {
    text-align: center;
    margin-bottom: 80px;
}

.an-ss-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: var(--aqua-primary);
    margin-bottom: 24px;
}

.an-ss-subtitle {
    font-size: 20px;
    color: #3e4850;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.an-ss-sub-title {
    font-size: 32px;
    font-weight: 700;
    color: #0c2d48;
    text-align: center;
    margin-bottom: 40px;
}

.an-ss-steps-wrapper {
    margin-bottom: 80px;
}

.an-ss-steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.an-ss-step-card {
    padding: 32px;
    border-radius: 32px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.an-ss-step-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 15px 45px 0 rgba(0, 168, 232, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

.an-ss-step-num {
    width: 48px;
    height: 48px;
    background: var(--aqua-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 24px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.3s;
}

.an-ss-step-card:hover .an-ss-step-num {
    transform: scale(1.15) rotate(-5deg);
}

.an-ss-step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--aqua-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.an-ss-step-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #3e4850;
    margin: 0;
}

.an-ss-features-wrapper {
    margin-bottom: 80px;
}

.an-ss-features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.an-ss-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.an-ss-feature-item:hover {
    transform: translateY(-8px);
}

.an-ss-feat-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--aqua-primary);
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.an-ss-feature-item:hover .an-ss-feat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(0, 168, 232, 0.15);
}

.an-ss-feat-icon i, .an-ss-feat-icon svg {
    font-size: 32px;
}

.an-ss-feat-title {
    font-size: 16px;
    font-weight: 700;
    color: #171c1f;
    margin: 0;
}

@media (max-width: 1200px) {
    .an-ss-steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .an-ss-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .an-ss-steps-grid, .an-ss-features-grid {
        grid-template-columns: 1fr;
    }
    .an-ss-container {
        padding: 0 24px;
    }
    .an-ss-step-num {
        margin-left: auto;
        margin-right: auto;
    }
}

.an-ss-exp-wrapper {
    margin-bottom: 0;
}

.an-ss-exp-content {
    padding: 60px;
    border-radius: 40px;
}

.an-ss-exp-lead {
    font-size: 20px;
    font-weight: 600;
    color: var(--aqua-primary);
    margin-bottom: 40px;
    line-height: 1.5;
}

.an-ss-exp-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 48px;
}

.an-ss-exp-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.an-ss-exp-icon {
    color: var(--aqua-secondary);
    font-variation-settings: 'FILL' 1;
    margin-top: 2px;
}

.an-ss-exp-text {
    font-size: 15px;
    line-height: 1.6;
    color: #3e4850;
}

@media (max-width: 991px) {
    .an-ss-exp-list {
        grid-template-columns: 1fr;
    }
    .an-ss-exp-content {
        padding: 40px 30px;
    }
}

/* AN Shipowners Solutions Animations */
.an-ss-header,
.an-ss-step-card,
.an-ss-feature-item,
.an-ss-exp-content {
    opacity: 0;
}

.an-ss-section.an-appear .an-ss-header {
    animation: anFadeInUp 1200ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.an-ss-section.an-appear .an-ss-step-card {
    animation: anFadeInUp 1200ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.an-ss-section.an-appear .an-ss-step-card:nth-child(1) { animation-delay: 0.1s; }
.an-ss-section.an-appear .an-ss-step-card:nth-child(2) { animation-delay: 0.2s; }
.an-ss-section.an-appear .an-ss-step-card:nth-child(3) { animation-delay: 0.3s; }
.an-ss-section.an-appear .an-ss-step-card:nth-child(4) { animation-delay: 0.4s; }
.an-ss-section.an-appear .an-ss-step-card:nth-child(5) { animation-delay: 0.5s; }

.an-ss-section.an-appear .an-ss-feature-item {
    animation: anFadeInUp 1200ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.an-ss-section.an-appear .an-ss-feature-item:nth-child(1) { animation-delay: 0.1s; }
.an-ss-section.an-appear .an-ss-feature-item:nth-child(2) { animation-delay: 0.2s; }
.an-ss-section.an-appear .an-ss-feature-item:nth-child(3) { animation-delay: 0.3s; }
.an-ss-section.an-appear .an-ss-feature-item:nth-child(4) { animation-delay: 0.4s; }
.an-ss-section.an-appear .an-ss-feature-item:nth-child(5) { animation-delay: 0.5s; }

.an-ss-section.an-appear .an-ss-exp-content {
    animation: anFadeInUp 1200ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.elementor-editor-active .an-ss-header,
.elementor-editor-active .an-ss-step-card,
.elementor-editor-active .an-ss-feature-item,
.elementor-editor-active .an-ss-exp-content {
    opacity: 1 !important;
    animation: none !important;
}

/* AN CF7 Widget Reworked */
.an-cf7-section {
    padding: var(--aqua-section-padding, 80px) 0;
    width: 100%;
}

.an-cf7-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px;
    border-radius: 48px;
    position: relative;
    overflow: hidden;
}

.an-cf7-container {
    display: flex;
    align-items: center;
    gap: 100px;
    position: relative;
    z-index: 2;
}

.an-cf7-info {
    flex: 1.5;
}

.an-cf7-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--aqua-primary);
    margin-bottom: 24px;
    line-height: 1.1;
}

.an-cf7-description {
    font-size: 18px;
    line-height: 1.6;
    color: #3e4850;
    margin-bottom: 48px;
}

.an-cf7-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.an-cf7-btn-primary, .an-cf7-btn-outline {
    padding: 16px 36px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-decoration: none;
    border: none;
}

.an-cf7-btn-primary {
    background: #00658d;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 101, 141, 0.15);
}

.an-cf7-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 101, 141, 0.25);
    background: #005476;
}

.an-cf7-btn-outline {
    background: #f0f7ff;
    border: 1.5px solid #cce3f5;
    color: #00658d;
}

.an-cf7-btn-outline:hover {
    background: #e1f0ff;
    border-color: #00658d;
    transform: translateY(-5px);
}

.an-cf7-btn-extra {
    background: rgba(255, 255, 255, 0.5);
    border: 1px dashed #00658d;
}

/* Right Side - QR */
.an-cf7-right-side {
    flex: 1;
}

.an-cf7-qr-group {
    display: flex;
    gap: 32px;
    justify-content: center;
}

.an-cf7-qr-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

a.an-cf7-qr-item:hover {
    transform: translateY(-5px);
}

a.an-cf7-qr-item:hover .an-cf7-qr-box {
    box-shadow: 0 15px 40px rgba(0, 101, 141, 0.15);
}

.an-cf7-qr-box {
    width: 140px;
    height: 140px;
    background: #fff;
    padding: 12px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.an-cf7-qr-box img {
    max-width: 100%;
    height: auto;
}

.an-cf7-qr-label {
    font-weight: 700;
    font-size: 14px;
    color: var(--aqua-primary);
}

/* Modal */
.an-cf7-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 30, 45, 0.4);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.an-cf7-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.an-cf7-modal-content {
    width: 90%;
    max-width: 600px;
    padding: 60px 40px 40px;
    border-radius: 32px;
    position: relative;
    transform: scale(0.9);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1.2);
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.an-cf7-modal-overlay.active .an-cf7-modal-content {
    transform: scale(1);
}

.an-cf7-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--aqua-primary);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.an-cf7-modal-close:hover {
    transform: rotate(90deg);
}

.an-cf7-form-box {
    width: 100%;
}

.an-cf7-form-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--aqua-primary);
    margin-bottom: 32px;
    text-align: center;
}

/* CF7 Specific overrides inside modal */
.an-cf7-form-box .wpcf7-form-control-wrap {
    margin-bottom: 20px;
    display: block;
    position: relative;
}

/* Fix for IntlTelInput (phone country selector) overlap issue */
.an-cf7-form-box p { position: relative; }
.an-cf7-form-box p:nth-child(1) { z-index: 20; }
.an-cf7-form-box p:nth-child(2) { z-index: 19; }
.an-cf7-form-box p:nth-child(3) { z-index: 18; }
.an-cf7-form-box p:nth-child(4) { z-index: 17; }
.an-cf7-form-box p:nth-child(5) { z-index: 16; }
.an-cf7-form-box p:nth-child(6) { z-index: 15; }
.an-cf7-form-box p:nth-child(7) { z-index: 14; }
.an-cf7-form-box p:nth-child(8) { z-index: 13; }
.an-cf7-form-box p:nth-child(9) { z-index: 12; }
.an-cf7-form-box p:nth-child(10) { z-index: 11; }

.an-cf7-form-box p:has(.iti),
.an-cf7-form-box .wpcf7-form-control-wrap:has(.iti) {
    z-index: 9999 !important;
}

.an-cf7-form-box .iti {
    z-index: 999;
    width: 100%;
}
.an-cf7-form-box .iti__country-list {
    z-index: 99999 !important;
}

/* Fix for IntlTelInput mobile container appended to body */
body .iti-mobile .iti-container,
body .iti-mobile.iti-container,
body .intl-tel-input.iti-container,
body .iti-container {
    z-index: 999999 !important;
}

.an-cf7-form-box input:not([type="submit"]), 
.an-cf7-form-box textarea {
    width: 100%;
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(0, 101, 141, 0.2);
    background: rgba(255, 255, 255, 0.5);
    font-family: inherit;
    transition: all 0.3s ease;
}

.an-cf7-form-box input:focus, 
.an-cf7-form-box textarea:focus {
    outline: none;
    border-color: var(--aqua-primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 101, 141, 0.1);
}

.an-cf7-form-box input[type="submit"] {
    width: 100%;
    background: var(--aqua-primary);
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.an-cf7-form-box input[type="submit"]:hover {
    background: #005476;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .an-cf7-wrapper { padding: 40px; }
    .an-cf7-container {
        flex-direction: column;
        gap: 60px;
        text-align: center;
    }
    .an-cf7-actions { justify-content: center; }
}

@media (max-width: 768px) {
    .an-cf7-qr-group { flex-direction: column; align-items: center; }
    .an-cf7-modal-content {
        padding: 40px 20px 20px;
        max-height: 85vh;
    }
}

/* AN CF7 Table Styles */
.an-cf7-table-wrapper {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
}

.an-cf7-table-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--aqua-primary);
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -0.02em;
}

.an-cf7-table-responsive {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.an-cf7-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    color: #3e4850;
}

.an-cf7-table th {
    background: rgba(0, 101, 141, 0.05);
    padding: 20px 15px;
    text-align: left;
    font-weight: 700;
    color: var(--aqua-primary);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.1em;
    border-bottom: 1px solid rgba(0, 101, 141, 0.1);
}

.an-cf7-table td {
    padding: 15px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    vertical-align: middle;
    font-weight: 500;
}

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

.an-cf7-table tr {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.an-cf7-table tr:hover {
    background: rgba(0, 101, 141, 0.08) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.an-cf7-table tbody tr:hover td {
    color: var(--aqua-primary);
}

.an-cf7-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .an-cf7-table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .an-cf7-table {
        min-width: 600px;
    }
    .an-cf7-table-wrapper {
        margin-top: 40px;
        padding-top: 40px;
    }
    .an-cf7-table-title {
        font-size: 20px;
        margin-bottom: 25px;
    }
    .an-cf7-table th, .an-cf7-table td {
        padding: 12px 10px;
        font-size: 12px;
    }
}


/* Reviews Widget */
.an-reviews-wrapper {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 20px;
    box-sizing: border-box;
}

.an-reviews-header {
    margin-bottom: 48px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.an-reviews-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    font-size: clamp(32px, 5vw, 40px);
    line-height: 1.2;
    margin-bottom: 16px;
    color: #00658d;
    letter-spacing: -0.01em;
}

.an-reviews-description {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #3e4850;
}

.an-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
}

@media (max-width: 1024px) {
    .an-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .an-reviews-grid {
        grid-template-columns: 1fr;
    }
}

.an-reviews-card {
    padding: 32px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.an-reviews-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px 0 rgba(0, 168, 232, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.an-review-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.an-review-image,
.an-review-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

.an-review-icon .material-symbols-outlined {
    font-size: 32px;
    color: #00658d;
}

.an-review-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.an-review-name {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin: 0;
    color: #082f49;
}

.an-review-stars {
    display: flex;
    gap: 2px;
    color: #FFD700;
}

.an-review-stars .material-symbols-outlined {
    font-size: 18px;
}

.an-review-text {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #3e4850;
    font-style: italic;
}

/* Reviews Animations */
.an-reviews-header,
.an-reviews-card {
    opacity: 0;
}

.an-reviews-wrapper.an-appear .an-reviews-header,
.an-reviews-wrapper.an-appear .an-reviews-card {
    animation: anFadeInUp 1600ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.an-reviews-card:nth-child(1) { animation-delay: 0.1s; }
.an-reviews-card:nth-child(2) { animation-delay: 0.2s; }
.an-reviews-card:nth-child(3) { animation-delay: 0.3s; }

/* Editor fix */
.elementor-editor-active .an-reviews-header,
.elementor-editor-active .an-reviews-card {
    opacity: 1;
    animation: none;
}

.an-reviews-wrapper {
    position: relative;
}

.an-reviews-full-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    text-decoration: none;
}

.an-reviews-footer {
    margin-top: 60px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.an-reviews-footer .an-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 101, 141, 0.2);
}

.an-reviews-footer .an-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 101, 141, 0.3);
}

/* Contact Map Iframe Styles */
.an-contact-map-iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.an-contact-map-iframe iframe {
    width: 100%;
    height: 100% !important;
    border: 0;
    display: block;
}

.an-contact-map-wrapper {
    position: relative;
    overflow: hidden;
}

/* Hide marker on map hover */
.an-contact-marker {
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.an-contact-map-wrapper:hover .an-contact-marker {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -60%);
}

/* Darken map by default and restore on hover */
.an-contact-map-iframe {
    filter: brightness(0.6) grayscale(0.3);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.an-contact-map-wrapper:hover .an-contact-map-iframe {
    filter: brightness(1) grayscale(0);
}

/* Mobile overrides for Contact Map */
@media (max-width: 768px) {
    .an-contact-marker {
        display: none !important;
    }
    .an-contact-map-iframe {
        filter: none !important;
    }
}
