/* ================================
   ASEM Contact Page Styles
   Matching WordPress Avada Theme
   ================================ */

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

html {
    font-size: 16px;
    line-height: 1.6;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-dark);
    background: var(--gradient-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0.5em;
    color: var(--color-primary-teal);
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
}

h2 {
    font-size: 2rem;
    font-weight: 500;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

a {
    color: var(--color-primary-teal);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover,
a:focus {
    color: var(--color-accent-gold);
    outline: none;
}

/* Utility Classes */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.fusion-clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.screen-reader-text {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px !important;
    height: 1px !important;
    overflow: hidden;
    word-wrap: normal !important;
}

/* Layout Components */
.fusion-row {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.fusion-builder-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -2%;
}

.fusion-layout-column {
    padding: 0 2%;
    margin-bottom: 2em;
}

.fusion-one-full {
    width: 100%;
}

.fusion-one-half {
    width: 50%;
}

.fusion-column-first {
    margin-left: 0;
}

.fusion-column-last {
    margin-right: 0;
}

/* ================================
   HEADER STYLES
   ================================ */

.fusion-header-wrapper {
    position: relative;
    z-index: 1000;
    width: 100%;
}

.fusion-secondary-header {
    background: var(--gradient-hero);
    padding: 0.5em 0;
}

.fusion-alignright {
    text-align: right;
}

.fusion-header-main {
    background: rgb(41,175,160);
    background: linear-gradient(90deg, rgba(41,175,160,1) 0%, rgba(24,80,116,1) 56%, rgba(21,40,96,1) 100%);
    padding: 1em 0;
    position: relative;
}

.fusion-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
}

.fusion-logo-link {
    display: block;
    max-width: 350px;
}

.fusion-standard-logo,
.fusion-mobile-logo,
.fusion-sticky-logo {
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.fusion-mobile-logo,
.fusion-sticky-logo {
    display: none;
}

.fusion-header-content-3-wrapper {
    text-align: center;
    margin-top: 1rem;
}

.fusion-header-tagline {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
}

.fusion-header-tagline a {
    color: #ffffff;
    text-decoration: none;
}

.fusion-header-tagline a:hover {
    color: #c9be9d;
}

.fusion-mobile-menu-icons {
    display: none;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.fusion-mobile-nav-item {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5em;
    transition: all 0.3s ease;
}

.fusion-mobile-nav-item:hover {
    color: #c9be9d;
}

/* ================================
   NAVIGATION STYLES
   ================================ */

.fusion-secondary-main-menu {
    background: var(--gradient-background);
    border-bottom: 1px solid var(--color-bg-light-green);
    position: relative;
}

.fusion-main-menu {
    display: block;
}

.fusion-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.fusion-menu .menu-item {
    position: relative;
    margin: 0 1rem;
}

.fusion-menu .menu-item > a {
    display: block;
    padding: 1rem 0;
    color: var(--color-primary-teal);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.fusion-menu .menu-item:hover > a,
.fusion-menu .menu-item.current-menu-item > a {
    color: var(--color-accent-gold);
    border-bottom-color: var(--color-accent-gold);
}

/* Dropdown Menus */
.fusion-menu .menu-item-has-children:hover .sub-menu,
.fusion-menu .menu-item-has-children:focus-within .sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.fusion-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-bg-white);
    min-width: 220px;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e7efee;
    border-radius: 4px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.fusion-menu .sub-menu li {
    margin: 0;
}

.fusion-menu .sub-menu a {
    padding: 0.75rem 1.25rem;
    color: var(--color-text-dark);
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    border-bottom: none;
}

.fusion-menu .sub-menu a:hover {
    background-color: var(--color-bg-light-gray);
    color: var(--color-primary-teal);
}

/* Search Icon */
.fusion-main-menu-search .search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #1d7184;
    font-size: 1.1rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.fusion-main-menu-search .search-icon:hover {
    background-color: #e7efee;
    color: #c9be9d;
}

/* Search Overlay */
.fusion-overlay-search {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.fusion-overlay-search.active {
    display: flex;
    opacity: 1;
}

.fusion-search-form {
    position: relative;
    max-width: 600px;
    width: 90%;
}

.fusion-search-form-content {
    display: flex;
    background: #ffffff;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.fusion-search-field {
    flex: 1;
}

.fusion-search-field input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    font-size: 1.1rem;
    background: transparent;
    outline: none;
}

.fusion-search-button {
    background: #1d7184;
    border: none;
}

.fusion-search-submit {
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fusion-search-submit:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.fusion-close-search {
    position: absolute;
    top: -60px;
    right: 0;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fusion-close-search:hover {
    color: #c9be9d;
    transform: rotate(90deg);
}

/* Mobile Navigation */
.fusion-mobile-nav-holder {
    display: none;
}

.fusion-mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #ffffff;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #e7efee;
    z-index: 999;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.fusion-mobile-menu.active {
    max-height: 80vh;
    overflow-y: auto;
}

.fusion-mobile-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.fusion-mobile-menu a {
    display: block;
    padding: 1rem 1.5rem;
    color: #333333;
    font-weight: 500;
}

.fusion-mobile-menu a:hover,
.fusion-mobile-menu .current-menu-item a {
    background-color: #f8f9fa;
    color: #1d7184;
}

/* ================================
   HERO SECTION
   ================================ */

.fusion-slider-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.fusion-slider-revolution {
    width: 100%;
    height: 100%;
    position: relative;
}

.rs-fullwidth-wrap,
.rs-module-wrap {
    width: 100%;
    height: 100%;
}

.rs-slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 113, 132, 0.3);
    z-index: 1;
}

/* ================================
   MAIN CONTENT
   ================================ */

#main {
    background: var(--gradient-background);
    padding: 3rem 0;
}

.fusion-content-area {
    width: 100%;
}

.fusion-fullwidth {
    width: 100%;
    position: relative;
}

.fusion-builder-row-1 {
    padding: 2% 0;
}

/* ================================
   CONTACT SECTIONS
   ================================ */

/* Page Title */
.contact-main-title {
    font-size: 3rem;
    color: var(--color-primary-teal);
    text-align: left;
    margin-bottom: 2rem;
    padding-left: 0;
    font-weight: 600;
    position: relative;
}

.contact-main-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary-teal) 0%, var(--color-accent-gold) 100%);
    margin-top: 1rem;
}

/* Map Section */
.contact-map-wrapper {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-map-wrapper:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.contact-map {
    width: 100%;
    height: 550px;
    border: none;
    display: block;
}

/* Contact Information Section */
.contact-info-section {
    padding-right: 2rem;
}

.contact-organization-title .contact-title {
    font-size: 2.5rem;
    color: var(--color-primary-teal);
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

/* Separator */
.contact-separator {
    margin: 1.5rem 0;
    text-align: center;
}

.fusion-separator-border {
    width: 100%;
    height: 20px;
    border-top: 1px solid #e7efee;
    border-bottom: 1px solid #e7efee;
    background: transparent;
}

/* Contact Details */
.contact-details {
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-address {
    font-style: normal;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.contact-phone-email p {
    margin-bottom: 0.75rem;
    color: var(--color-text-dark);
}

.contact-phone-email strong {
    color: var(--color-primary-teal);
    font-weight: 600;
    margin-right: 0.5rem;
}

.contact-phone-email a {
    color: var(--color-primary-teal);
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-phone-email a:hover {
    color: var(--color-accent-gold);
}

/* Social Media Section */
.social-connect-section {
    padding-left: 2rem;
}

.fusion-title-1 .fusion-title-heading {
    font-size: 2rem;
    color: var(--color-primary-teal);
    margin-bottom: 1rem;
    font-weight: 600;
}

.title-sep-container {
    margin: 1rem 0 2rem 0;
}

.title-sep {
    width: 60px;
    height: 2px;
    background: var(--color-bg-light-green);
    border: none;
    margin: 0;
}

/* Social Buttons */
.social-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fusion-button-wrapper {
    display: block;
}

.fusion-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 180px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.fusion-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.fusion-button:hover::before {
    left: 100%;
}

.fusion-button-facebook {
    background: linear-gradient(135deg, #0717f7 0%, #1877f2 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.fusion-button-facebook:hover {
    background: linear-gradient(135deg, #1877f2 0%, #0717f7 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
    color: #ffffff;
}

.fusion-button-twitter {
    background: linear-gradient(135deg, #07f9f5 0%, #1da1f2 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(29, 161, 242, 0.3);
}

.fusion-button-twitter:hover {
    background: linear-gradient(135deg, #1da1f2 0%, #07f9f5 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 161, 242, 0.4);
    color: #ffffff;
}

.fusion-button-linkedin {
    background: linear-gradient(135deg, #0077b5 0%, #00a0dc 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 119, 181, 0.3);
}

.fusion-button-linkedin:hover {
    background: linear-gradient(135deg, #00a0dc 0%, #0077b5 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 119, 181, 0.4);
    color: #ffffff;
}

.fusion-button-instagram {
    background: linear-gradient(135deg, #e4405f 0%, #f56040 50%, #fccc63 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
}

.fusion-button-instagram:hover {
    background: linear-gradient(135deg, #fccc63 0%, #f56040 50%, #e4405f 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(228, 64, 95, 0.4);
    color: #ffffff;
}

.button-icon-left {
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

/* ================================
   FOOTER STYLES
   ================================ */

.fusion-footer {
    background: rgb(41,175,160);
    background: linear-gradient(90deg, rgba(41,175,160,1) 0%, rgba(24,80,116,1) 56%, rgba(21,40,96,1) 100%);
    color: #ffffff;
    margin-top: 3rem;
}

.fusion-footer-widget-area {
    padding: 3rem 0 2rem 0;
}

.fusion-columns-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.fusion-column {
    color: #ffffff;
}

/* Footer Navigation */
.fusion-footer-widget-column .menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fusion-footer-widget-column .menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
    margin: 0;
}

.fusion-footer-widget-column .menu li:last-child {
    border-bottom: none;
}

.fusion-footer-widget-column .menu a {
    display: block;
    padding: 0.75rem 0;
    color: #ffffff;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fusion-footer-widget-column .menu a:hover,
.fusion-footer-widget-column .menu a.current-page {
    color: #c9be9d;
    padding-left: 0.5rem;
}

/* Footer Contact Info */
.textwidget {
    line-height: 1.8;
    font-size: 0.95rem;
}

.textwidget a {
    color: #ffffff;
    text-decoration: none;
}

.textwidget a:hover {
    color: #c9be9d;
}

/* Footer Images */
.fusion-footer-widget-column img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.fusion-footer-widget-column img:hover {
    opacity: 1;
}

/* Copyright Footer */
.fusion-footer-copyright-area {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fusion-copyright-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.fusion-copyright-notice {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.fusion-copyright-notice a {
    color: #c9be9d;
    text-decoration: none;
}

.fusion-copyright-notice a:hover {
    color: #ffffff;
}

/* Social Links in Footer */
.fusion-social-networks-wrapper {
    display: flex;
    gap: 1rem;
}

.fusion-social-network-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.fusion-social-network-icon:hover {
    background: #c9be9d;
    color: #1d7184;
    transform: translateY(-2px);
}

/* ================================
   SCROLL TO TOP
   ================================ */

.to-top-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.fusion-top-top-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #1d7184;
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(29, 113, 132, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.fusion-top-top-link.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fusion-top-top-link:hover {
    background: #c9be9d;
    color: #1d7184;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 190, 157, 0.4);
}

/* ================================
   ANIMATIONS & EFFECTS
   ================================ */

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

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

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.contact-info-section .animate-on-scroll {
    animation: fadeInLeft 0.8s ease forwards;
}

.social-connect-section .animate-on-scroll {
    animation: fadeInRight 0.8s ease forwards;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media screen and (max-width: 1024px) {
    .fusion-row {
        padding: 0 15px;
    }
    
    .fusion-menu .menu-item {
        margin: 0 0.5rem;
    }
    
    .fusion-menu .menu-item > a {
        font-size: 0.9rem;
        padding: 0.875rem 0;
    }
    
    .contact-info-section,
    .social-connect-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .contact-main-title {
        font-size: 2.5rem;
    }
    
    .contact-organization-title .contact-title {
        font-size: 2rem;
    }
}

@media screen and (max-width: 800px) {
    /* Mobile Header */
    .fusion-logo-link {
        max-width: 280px;
    }
    
    .fusion-mobile-logo {
        display: block;
        margin-top: 1rem;
    }
    
    .fusion-standard-logo,
    .fusion-sticky-logo {
        display: none;
    }
    
    .fusion-header-tagline {
        font-size: 0.875rem;
        line-height: 1.4;
    }
    
    .fusion-mobile-menu-icons {
        display: block;
    }
    
    /* Mobile Navigation */
    .fusion-main-menu .fusion-menu {
        display: none;
    }
    
    .fusion-mobile-nav-holder {
        display: block;
        position: relative;
    }
    
    /* Hero Section */
    .fusion-slider-container {
        height: 400px;
    }
    
    /* Layout */
    .fusion-builder-row {
        flex-direction: column;
    }
    
    .fusion-one-half {
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .contact-info-section,
    .social-connect-section {
        padding-left: 0;
        padding-right: 0;
    }
    
    /* Typography */
    .contact-main-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .contact-organization-title .contact-title {
        font-size: 1.75rem;
        text-align: center;
    }
    
    .fusion-title-1 .fusion-title-heading {
        font-size: 1.75rem;
        text-align: center;
    }
    
    /* Map */
    .contact-map {
        height: 400px;
    }
    
    /* Social Buttons */
    .social-buttons-container {
        align-items: center;
    }
    
    .fusion-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    /* Footer */
    .fusion-columns-3 {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .fusion-copyright-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    /* Scroll to Top */
    .to-top-container {
        bottom: 1rem;
        right: 1rem;
    }
    
    .fusion-top-top-link {
        width: 45px;
        height: 45px;
    }
}

@media screen and (max-width: 480px) {
    body {
        font-size: 15px;
    }
    
    .fusion-row {
        padding: 0 10px;
    }
    
    .fusion-header-tagline {
        font-size: 0.8rem;
    }
    
    .contact-main-title {
        font-size: 1.75rem;
    }
    
    .contact-organization-title .contact-title {
        font-size: 1.5rem;
    }
    
    .fusion-title-1 .fusion-title-heading {
        font-size: 1.5rem;
    }
    
    .contact-map {
        height: 300px;
    }
    
    .fusion-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        min-width: 160px;
    }
    
    #main {
        padding: 2rem 0;
    }
    
    .fusion-builder-row-1 {
        padding: 1% 0;
    }
}

/* ================================
   ACCESSIBILITY & PERFORMANCE
   ================================ */

/* Focus Styles */
*:focus {
    outline: 2px solid #c9be9d;
    outline-offset: 2px;
}

button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #1d7184;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .fusion-button {
        border: 2px solid currentColor;
    }
    
    .fusion-social-network-icon {
        border: 2px solid currentColor;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print Styles */
@media print {
    .fusion-header-wrapper,
    .fusion-slider-container,
    .fusion-footer,
    .to-top-container,
    .fusion-overlay-search,
    .social-buttons-container {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
        font-size: 12pt;
    }
    
    .contact-details,
    .textwidget {
        page-break-inside: avoid;
    }
}

/* Loading States */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 1000;
}

/* Smooth Loading Animation */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}