/* IMPORT MODERN GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700;800&display=swap');

/* GLOBAL STYLES OVERRIDE */
body, .t-body {
    font-family: 'Inter', Arial, sans-serif !important;
    color: #2c3e50 !important;
    background-color: #ffffff !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, .t-title, .t-heading, .t-name {
    font-family: 'Montserrat', Arial, sans-serif !important;
    font-weight: 700 !important;
}

html {
    scroll-behavior: smooth;
}

/* PHONE LINKS & ACCENT */
.phone-link {
    color: #111111 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border-bottom: 2px dashed rgba(230, 41, 41, 0.4);
    padding-bottom: 1px;
    font-weight: 700 !important;
}

.phone-link:hover {
    color: #e62929 !important;
    border-bottom-color: #e62929;
    text-shadow: 0 0 1px rgba(230, 41, 41, 0.2);
}

/* HERO COVER MODERNIZE */
.t-cover {
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.t-cover__carrier {
    filter: brightness(0.85) contrast(1.05);
    transition: transform 10s ease;
}

.t-cover:hover .t-cover__carrier {
    transform: scale(1.05);
}

/* Hero overlay - make text pop */
.t-cover__filter {
    background-image: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%) !important;
}

.t001__title {
    font-family: 'Montserrat', Arial, sans-serif !important;
    font-weight: 800 !important;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
    letter-spacing: 1.5px;
}

.t001__uptitle {
    font-weight: 600 !important;
    letter-spacing: 2px;
    background: rgba(230, 41, 41, 0.85);
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 15px !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.t001__descr {
    font-weight: 400 !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    max-width: 800px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    line-height: 1.6 !important;
}

/* NAVIGATION MENU MODERNIZE */
.t466 {
    background: transparent !important;
}

.t466__container__bg_main {
    background: linear-gradient(135deg, #e62929 0%, #b21c1c 100%) !important;
    box-shadow: 0 4px 15px rgba(230, 41, 41, 0.3) !important;
    border-radius: 0 0 16px 16px;
}

.t466__item a {
    font-family: 'Montserrat', Arial, sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: 1px;
    transition: all 0.3s ease !important;
    position: relative;
    padding: 8px 12px !important;
}

.t466__item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    height: 2px;
    background-color: #ffffff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.t466__item a:hover::after,
.t466__item a.t-active::after {
    transform: scaleX(1);
}

.t466__item a:hover {
    opacity: 1 !important;
    transform: translateY(-1px);
}

/* STICKY MENU ON SCROLL */
.sticky-menu {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    animation: slideDown 0.4s ease-out;
}

.sticky-menu .t466__container__bg_main {
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    opacity: 0.95;
    backdrop-filter: blur(10px);
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* CARDS & PRODUCT SECTION */
.t649__blockimg, .t692__blockimg {
    border-radius: 16px !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.t-item:hover .t649__blockimg, 
.t-item:hover .t692__blockimg {
    transform: scale(1.03) translateY(-4px);
    box-shadow: 0 12px 30px rgba(230, 41, 41, 0.15) !important;
}

.t649__textwrapper, .t692__textwrapper {
    padding: 20px 10px !important;
}

.t-card__title {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #111111 !important;
    margin-bottom: 12px !important;
}

.t-card__descr {
    color: #555555 !important;
    line-height: 1.6 !important;
}

.t-card__btn {
    background: linear-gradient(135deg, #111111 0%, #333333 100%) !important;
    border-radius: 50px !important;
    font-family: 'Montserrat', Arial, sans-serif !important;
    font-weight: 600 !important;
    padding: 10px 24px !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15) !important;
    transition: all 0.3s ease !important;
}

.t-card__btn:hover {
    background: linear-gradient(135deg, #e62929 0%, #b21c1c 100%) !important;
    box-shadow: 0 4px 15px rgba(230, 41, 41, 0.4) !important;
    transform: translateY(-2px);
}

/* TEXT CONTENT PAGES */
.t-text {
    line-height: 1.8 !important;
    font-size: 16px !important;
    color: #34495e !important;
}

.t-text strong {
    color: #111111 !important;
}

.t-text-impact {
    font-family: 'Montserrat', Arial, sans-serif !important;
    line-height: 1.6 !important;
    font-weight: 600 !important;
    border-left: 4px solid #e62929;
    padding-left: 20px !important;
    color: #111111 !important;
}

.t210__line {
    background-color: #e62929 !important;
    height: 4px !important;
    width: 60px !important;
}

/* INFO COVER SECTION */
.t164__descr {
    font-weight: 700 !important;
    letter-spacing: 1px;
}

/* PRICE LIST STYLES */
#rec611124620 {
    border-radius: 16px;
    margin: 20px auto;
    max-width: 1200px;
    box-shadow: 0 8px 24px rgba(174, 235, 255, 0.25);
    background: linear-gradient(135deg, #e3f8ff 0%, #aeebff 100%) !important;
}

#rec611124620 .t-text-impact {
    border-left: none;
    padding-left: 0 !important;
}

.t252__quote-body {
    background-color: #fcfcfc !important;
    border: 1px solid #eee !important;
    border-radius: 16px !important;
    padding: 30px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03) !important;
}

.t252__text ul {
    list-style: none;
    padding: 0;
}

.t252__text ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #111111;
}

.t252__text ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e62929;
    font-weight: bold;
}

/* CONTACTS SECTION MODERNIZE */
.t1056 {
    background-color: #fafafa !important;
}

.t1056__row {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
}

.t1056__col {
    margin-bottom: 30px;
}

.t1056__col-wrapper, .t1056__col-wrapper_first {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 30px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    height: 100%;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.t1056__col-wrapper:hover, .t1056__col-wrapper_first:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: rgba(230, 41, 41, 0.2);
}

.t1056__name {
    font-weight: 700 !important;
    color: #e62929 !important;
    letter-spacing: 0.5px;
    margin-bottom: 15px !important;
    font-size: 16px !important;
}

.t1056__text {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #2c3e50 !important;
    line-height: 1.6 !important;
}

.t1056__text a {
    color: #2c3e50 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.t1056__text a:hover {
    color: #e62929 !important;
}

/* FLOATING CALL ACTION BUTTON FOR MOBILE */
.floating-call-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 99999;
    display: none;
}

.floating-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e62929 0%, #b21c1c 100%);
    color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(230, 41, 41, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none !important;
}

.floating-call-btn svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
    animation: phoneShake 2s infinite ease-in-out;
}

.floating-call-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(230, 41, 41, 0.55);
    color: #ffffff;
}

/* MOBILE AND RESPONSIVENESS ACCENTS */
@media screen and (max-width: 768px) {
    .floating-call-container {
        display: block; /* Show floating call button on mobile */
    }
    
    .t-cover {
        border-radius: 0;
        height: 45vh !important;
    }
    
    .t-cover__carrier, .t-cover__filter, .t-cover__wrapper {
        height: 45vh !important;
    }
    
    .t001__title {
        font-size: 32px !important;
    }
    
    .t001__descr {
        font-size: 15px !important;
    }
    
    /* Enhance visibility of numbers in header */
    .t396__elem {
        text-align: center !important;
    }
    
    .t1056__col-wrapper, .t1056__col-wrapper_first {
        padding: 20px !important;
    }
}

@keyframes phoneShake {
    0% { transform: rotate(0); }
    15% { transform: rotate(15deg); }
    30% { transform: rotate(-15deg); }
    45% { transform: rotate(10deg); }
    60% { transform: rotate(-10deg); }
    75% { transform: rotate(4deg); }
    100% { transform: rotate(0); }
}

@keyframes pulse-border {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 0; }
    100% { transform: scale(1.2); opacity: 0; }
}

/* Pulsing effect behind floating button */
.floating-call-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e62929;
    z-index: -1;
    animation: pulse-border 2s infinite;
}

/* FOOTER STYLING */
footer, div[style*="font-size: 12px"] {
    background-color: #111111 !important;
    color: #999999 !important;
    padding: 40px 20px !important;
    margin-top: 0 !important;
    text-align: center;
}

footer a, div[style*="font-size: 12px"] a {
    transition: color 0.3s ease;
}

footer a:hover, div[style*="font-size: 12px"] a:hover {
    color: #ffffff !important;
}
