/* ========================================
   NO LIMIT WETSUITS - SIMPLE NAVIGATION STYLES
   ======================================== */

/* Import main styles but override navigation */
@import url('main.css');

/* Hero Header Styles */
.hero-header {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}

.hero-mobile-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images_home/nolimit-banner-mobile.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: none;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

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

/* Hero Text Overlay Styles */
.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-text-overlay.hidden {
    opacity: 0;
    transform: translate(-50%, -50%) translateY(-20px);
}

.hero-main-title {
    color: var(--color-white);
    font-size: 4rem;
    font-weight: 700;
    margin: 0 0 0.2rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-subtitle-text {
    color: var(--color-turquoise);
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
}

/* Hero Logo Styles */
.hero-logo-container {
    margin-top: 0;
}

/* Hide Instagram link on desktop by default */
.hero-instagram-link {
    display: none;
}

.hero-logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6));
}

/* Contact Number Styles */
.hero-contact-number {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 3;
    display: flex; /* Show by default */
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.8);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(64, 224, 208, 0.3);
    text-decoration: none !important;
    color: inherit;
    cursor: default;
}

.hero-contact-number i {
    color: #40E0D0;
    font-size: 1.1rem;
}

.hero-contact-number span {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Subtle glow effect on hover */
.hero-contact-number:hover {
    box-shadow: 0 0 15px rgba(64, 224, 208, 0.4);
    border-color: rgba(64, 224, 208, 0.6);
}

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

/* Navigation Controls */
.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
    align-items: center;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider-dot.active {
    background: var(--color-red);
}

.slider-arrows {
    display: flex;
    gap: 20px;
}

.slider-arrow {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 18px;
    font-family: inherit;
}

.slider-arrow:hover {
    background: rgba(220, 38, 38, 0.8);
    border-color: var(--color-red);
}

/* Swipe Indicators */
.swipe-indicators {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.swipe-indicators.show {
    opacity: 1;
}

.swipe-left {
    position: absolute;
    left: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 24px;
    animation: pulse 2s infinite;
}

.swipe-right {
    position: absolute;
    right: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 24px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 0.4; }
}

/* Touch feedback */
.hero-slider.swiping {
    cursor: grabbing;
}



.anchor-btn.active {
    background: var(--color-red);
    border-color: var(--color-red);
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.6);
}

.anchor-btn i {
    transition: transform 0.3s ease;
}

.anchor-btn:hover i {
    transform: scale(1.2);
}

/* Anchor button specific styles */
.anchor-btn span {
    font-weight: 600;
    font-size: 14px;
}

.anchor-hard-right span {
    color: var(--color-red);
}

.anchor-center span {
    color: var(--color-turquoise);
}

.anchor-right-off-center span {
    color: var(--color-white);
}

.anchor-hard-right-2 span {
    color: var(--color-red);
}

/* Enhanced anchor point controls for 4-position system */
.anchor-point-controls {
    gap: 12px;
}

.anchor-btn {
    min-width: 45px;
    height: 45px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Active state styling for each anchor point */




/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .anchor-btn {
        transition: none;
    }
    
    .anchor-btn.active {
        animation: none;
    }
    
    .hero-slide {
        transition: opacity 0.5s ease-in-out;
    }
}

/* Anchor Point Indicators */
.anchor-indicators {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.anchor-indicators.show {
    opacity: 1;
}

.anchor-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.anchor-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.6);
    padding: 4px 8px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.anchor-indicator.active .anchor-label {
    color: var(--color-turquoise);
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 10px rgba(64, 224, 208, 0.4);
}

/* Show anchor indicators on mobile only */
@media (max-width: 768px) {
    .anchor-indicators {
        opacity: 1;
    }
    
    .anchor-indicators.show {
        opacity: 1;
    }
}

/* Hide anchor indicators on desktop */
@media (min-width: 769px) {
    .anchor-indicators {
        display: none;
    }
}

/* Mobile-specific anchor indicator positioning */
@media (max-width: 480px) {
    .anchor-indicators {
        bottom: 70px;
        gap: 15px;
    }
    
    .anchor-label {
        font-size: 10px;
        padding: 3px 6px;
    }
}

/* Responsive adjustments for hero text */
@media (max-width: 768px) {
    .hero-main-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .hero-subtitle-text {
        font-size: 1.2rem;
    }
    
    .hero-logo {
        max-width: 250px; /* Increased size for mobile (100%+) */
        height: auto;
    }
    
    .hero-logo-container {
        margin-top: 0;
        margin-bottom: 10px;
    }
    
    /* Instagram link styling for mobile */
    .hero-instagram-link {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
        margin-bottom: 10px;
    }
    
    .hero-instagram-link a {
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color-white);
        text-decoration: none;
        font-size: 1.5rem;
        transition: all 0.3s ease;
        padding: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(5px);
    }
    
    .hero-instagram-link a:hover {
        color: var(--color-turquoise);
        transform: scale(1.15);
        background: rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 20px rgba(64, 224, 208, 0.6), 0 0 40px rgba(64, 224, 208, 0.3);
    }
    
    .hero-instagram-link i {
        font-size: 2.2rem;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    }
    
    /* Show Instagram link on mobile only */
    .hero-instagram-link {
        display: flex;
    }

    /* Hide desktop slider and show mobile image */
    .hero-slider {
        display: none;
    }
    
    .hero-mobile-image {
        display: block;
    }
    
    /* Hide slider controls on mobile */
    .slider-controls,
    .swipe-indicators {
        display: none !important;
    }
    
    /* Show contact number on mobile - centered in hero */
    .hero-contact-number {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 15px;
        margin-bottom: 5px;
        padding: 0.6rem 1rem;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(5px);
        border-radius: 25px;
        color: var(--color-white);
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .hero-contact-number:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.05);
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    }
    
    .hero-contact-number i {
        font-size: 1rem;
    }
    
    .hero-contact-number span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 2rem;
    }
    
    .hero-subtitle-text {
        font-size: 1rem;
    }
    
    .hero-logo {
        max-width: 250px; /* Increased size for mobile (100%+) */
        height: auto;
    }
    
    .hero-logo-container {
        margin-top: 0; /* Keep zero margin on small mobile */
    }
    
    /* Ensure background image stays locked to right on small mobile */
    .hero-slide {
        background-position: 90% center; /* Show more of the right side of the image */
    }
    
    /* Specific positioning for individual banner images on small mobile */
    .hero-slide[style*="nolimit-banner-2.png"] {
        background-position: center; /* Keep banner 2 centered (no changes) */
    }
    
    .hero-slide[style*="nolimit-banner-3.png"] {
        background-position: calc(90% + 200px) center; /* Move 200px further right for banner 3 */
    }
    
    .hero-slide[style*="nolimit-banner-4.png"] {
        background-position: center; /* Reset to center for banner 4 */
    }
}

/* Simplified Navigation Styles */
.simple-nav {
    background: transparent;
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.simple-nav.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
}

/* Solid background for non-homepage pages */
.simple-nav.solid-bg {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
}

.simple-nav .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.simple-nav-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    gap: 30px;
}

.simple-nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.logo-image {
    height: 40px;
    width: auto;
    max-width: 200px;
}

/* Ensure logo maintains consistent size across all devices */
@media (max-width: 768px) {
    .logo-image {
        height: 40px;
        width: auto;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 40px;
        width: auto;
        max-width: 200px;
    }
}

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

.simple-nav-item {
    position: relative;
}

.simple-nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 0;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    position: relative;
}

.simple-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-red);
    transition: width 0.3s ease;
}

.simple-nav-link:hover {
    color: var(--color-red);
}

.simple-nav-link:hover::after {
    width: 100%;
}

/* Navigation Contact Number Styles */
.nav-contact-item {
    margin-left: 20px;
}

/* Stack Get Measured button and form vertically */
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    justify-content: center;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.measurement-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-turquoise) !important;
    font-weight: 600;
    padding: 8px 16px;
    border: 2px solid var(--color-turquoise);
    border-radius: 25px;
    text-decoration: none !important;
    cursor: default;
}

.nav-contact-link i {
    font-size: 14px;
}

.nav-contact-link span {
    font-size: 14px;
    font-weight: 600;
}

/* Dropdown Styles */
.simple-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(15px);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.simple-nav-item:hover .simple-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.simple-dropdown-list {
    list-style: none;
    margin: 0;
    padding: 15px 0;
}

.simple-dropdown-item {
    margin: 0;
}

.simple-dropdown-link {
    display: block;
    color: var(--color-white);
    text-decoration: none;
    padding: 12px 20px;
    font-size: 14px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    white-space: nowrap;
}

.simple-dropdown-link:hover {
    background: rgba(255, 0, 0, 0.1);
    color: var(--color-red);
    border-left-color: var(--color-red);
    transform: translateX(5px);
}

/* Mobile Navigation */
.simple-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

.simple-nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--color-white);
    margin: 5px 0;
    transition: 0.3s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .simple-nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        max-height: 80vh;
        overflow-y: auto;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .simple-nav-menu.active {
        display: flex;
    }

    .simple-nav-toggle {
        display: block;
    }

    .simple-nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0;
    }

    .simple-nav-item:last-child {
        border-bottom: none;
    }

    .simple-nav-link {
        padding: 15px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 16px;
    }

    .simple-nav-link::after {
        display: none;
    }

    .simple-dropdown {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        background: transparent;
        margin: 0;
        border-radius: 0;
        border: none;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .simple-dropdown.active {
        opacity: 1;
        visibility: visible;
        max-height: 300px;
        margin-top: 10px;
        margin-bottom: 10px;
        background: rgba(255, 255, 255, 0.05);
    }

    .simple-dropdown-list {
        padding: 0;
    }

    .simple-dropdown-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .simple-dropdown-item:last-child {
        border-bottom: none;
    }

    .simple-dropdown-link {
        padding: 12px 20px;
        font-size: 14px;
        border-left: none;
        transform: none;
        color: var(--color-white);
        background: transparent;
    }

    /* Hide navigation contact number on mobile */
    .nav-contact-item {
        display: none;
    }
    
    /* Mobile contact number positioning - below logo */
    .hero-contact-number {
        position: static; /* Remove absolute positioning */
        margin-top: 20px; /* Space below logo */
        justify-content: center; /* Center the button */
        padding: 0.6rem 1rem;
        width: fit-content; /* Fit content width */
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Mobile dropdown arrow - subtle indicator */
    .simple-nav-item.has-dropdown .simple-nav-link::before {
        content: '▶';
        margin-right: 10px;
        font-size: 12px;
        transition: transform 0.3s ease;
        color: rgba(255, 255, 255, 0.4); /* Very subtle color */
    }

    .simple-nav-item.has-dropdown .simple-nav-link.active::before {
        transform: rotate(90deg);
        color: var(--color-turquoise); /* Highlight when active */
    }
}

/* Desktop styles - show navigation contact number */
@media (min-width: 769px) {
    .nav-contact-item {
        display: block;
    }
    
    .hero-contact-number {
        display: none !important; /* Hide hero contact number on desktop */
    }

    .simple-dropdown-link:hover {
        background: rgba(255, 0, 0, 0.1);
        transform: none;
    }

    .simple-dropdown-link:hover {
        background: rgba(255, 0, 0, 0.1);
        transform: none;
    }
}

/* Adjust main content for fixed navigation */
.simple-main-content {
    margin-top: 0;
    position: relative;
    z-index: 2;
}

/* Default state - no arrows */
.simple-nav-item.has-dropdown .simple-nav-link::after {
    content: none !important;
}

/* Hover effects for dropdown arrow - Only show on desktop hover */
@media (min-width: 769px) {
    .simple-nav-item.has-dropdown .simple-nav-link::after {
        content: '▼' !important;
        margin-left: 5px;
        font-size: 10px;
        transition: transform 0.3s ease;
        opacity: 0.7; /* Make it more subtle */
    }

    .simple-nav-item.has-dropdown:hover .simple-nav-link::after {
        transform: rotate(180deg);
        opacity: 1; /* Full opacity on hover */
    }
}

/* Hide arrows on mobile */
@media (max-width: 768px) {
    .simple-nav-item.has-dropdown .simple-nav-link::after {
        content: none !important;
    }
}

/* Hide mobile arrows on desktop */
@media (min-width: 769px) {
    .simple-nav-item.has-dropdown .simple-nav-link::before {
        content: none !important;
    }
}

/* Active state for current page */
.simple-nav-link.active {
    color: var(--color-red);
    border-bottom: 2px solid var(--color-red);
}

/* Smooth transitions */
.simple-nav * {
    transition: all 0.3s ease;
}

/* Footer Styles - Ensuring visibility on black background */
.footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: var(--spacing-xl) 0;
    margin-top: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-title {
    color: var(--color-white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-text {
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
    opacity: 0.9;
    line-height: 1.6;
}

.footer-text a {
    color: var(--color-turquoise);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-text a:hover {
    color: var(--color-red);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: var(--color-white);
    text-decoration: none;
    transition: color var(--transition-fast);
    opacity: 0.9;
}

.footer-links a:hover {
    color: var(--color-turquoise);
    opacity: 1;
}

.footer-bottom {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: var(--color-white);
    opacity: 0.8;
    margin: 0;
}

.footer-credits {
    margin-top: var(--spacing-sm);
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-credits p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
}

.footer-credits a {
    color: var(--color-white);
    text-decoration: none;
    transition: opacity var(--transition-fast);
}

.footer-credits a:hover {
    opacity: 0.8;
}

.footer-credits img {
    transition: transform var(--transition-fast);
}

.footer-credits a:hover img {
    transform: scale(1.05);
}

/* Responsive footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-md);
    }
    
    .footer-section {
        min-width: auto;
        width: 100%;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
}

/* Tooltip for anchor buttons */
.anchor-btn::before {
    content: attr(aria-label);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    margin-bottom: 5px;
    z-index: 10;
}

.anchor-btn:hover::before {
    opacity: 1;
}

/* Responsive tooltip positioning */
@media (max-width: 480px) {
    .anchor-btn::before {
        font-size: 9px;
        padding: 3px 6px;
    }
}

/* Override global link hover styles for contact numbers */
.hero-contact-number,
.hero-contact-number:hover,
.hero-contact-number:focus,
.hero-contact-number:visited,
.nav-contact-link,
.nav-contact-link:hover,
.nav-contact-link:focus,
.nav-contact-link:visited {
    text-decoration: none !important;
}

/* Ensure no underline on any state for contact numbers */
a.hero-contact-number,
a.hero-contact-number:hover,
a.hero-contact-number:focus,
a.hero-contact-number:visited,
a.nav-contact-link,
a.nav-contact-link:hover,
a.nav-contact-link:focus,
a.nav-contact-link:visited {
    text-decoration: none !important;
}
