/* ===== Modern Typography 2025 ===== */
:root {
    --font-heading: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Onest', -apple-system, BlinkMacSystemFont, sans-serif;
    --primary: #9e0c0c;
    --primary-light: #c41414;
    --accent: #205858;
}

*{
    margin: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Fallback for old fonts */
@font-face{
    font-family: 'localFont';
    src: url('fonts/12291.otf');
}
@font-face{
    font-family: 'localFont1';
    src: url('fonts/1.ttf');
}
#main{
    background-image: url('laptop-in-empty-room.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
}
#main div{
    position: relative;
    top: 25.5%;
    right: -20.5%;
    width: fit-content;
    width: -moz-fit-content;
}
#promotion{
    width: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}
#promotion::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(158,12,12,0.1) 0%, transparent 50%);
    animation: promoPulse 15s infinite;
}
@keyframes promoPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

/* Modern Promo Section */
.promo-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.promo-container h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.5em;
    color: #fff;
    margin-bottom: 10px;
    padding: 0;
    width: auto;
    margin-left: auto;
}
.promo-subtitle {
    font-family: var(--font-body);
    font-size: 1.2em;
    color: rgba(255,255,255,0.7);
    margin-bottom: 50px;
}
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}
.promo-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 35px 25px;
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.promo-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.1);
    border-color: rgba(158,12,12,0.5);
    box-shadow: 0 20px 40px rgba(158,12,12,0.2);
}
.promo-card.promo-featured {
    border-color: #9e0c0c;
    background: linear-gradient(135deg, rgba(158,12,12,0.2) 0%, rgba(158,12,12,0.05) 100%);
}
.promo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #9e0c0c;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-family: var(--font-body);
    font-size: 0.7em;
    font-weight: 700;
    letter-spacing: 1px;
}
.promo-icon {
    font-size: 3em;
    margin-bottom: 15px;
}
.promo-discount {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.5em;
    color: #9e0c0c;
    margin-bottom: 10px;
}
.promo-card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3em;
    color: #fff;
    margin-bottom: 10px;
}
.promo-card p {
    font-family: var(--font-body);
    font-size: 0.95em;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

#promotion h1, #promotion h2{
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: rgb(32, 88, 88);
    line-height: 1.4em;
    font-size: 2.2em;
    letter-spacing: -0.02em;
    width: 60%;
    margin: auto;
    padding: 20px 0;
    background-image: linear-gradient(90deg, transparent, white, transparent);
    background-size: 100% auto;
}
#promotion hr{
    width: 50%;
    margin: auto;
    background-color: rgb(32, 88, 88);
    color: rgb(32, 88, 88);
    height: 2.5px;
}
#actionsBox{
    display: flex;
}
.card{
    width: 300px;
    min-width: 250px;
    height: 150px;
    border-style: none;
    overflow: hidden;
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
    background-color: rgba(189, 189, 189, 0.6);
    margin:50px auto;
    box-shadow: 0 0 10px 2.9px rgba(90, 90, 90, 0.55), 0 0 13px 9px rgb(203,220,226);
}
#actionsBox div p:first-of-type{
    font-family: var(--font-heading);
    font-weight: 800;
    margin-left: 10px;
    margin-top: 35px;
    font-size: 2.8em;
    letter-spacing: -0.03em;
    text-align: center;
    color: #9e0c0c;
}
/* ===== Reviews Section ===== */
#reviews {
    background: linear-gradient(180deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 80px 20px;
}
#reviews h2 {
    font-family: var(--font-heading);
    color: var(--accent);
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 50px;
}
#reviews hr {
    width: 100px;
    height: 3px;
    background: var(--primary);
    border: none;
    margin: 15px auto 0;
}
.reviews-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.review-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 30px;
    width: 350px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: var(--transition);
    position: relative;
}
.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 5em;
    color: var(--primary);
    opacity: 0.1;
    font-family: serif;
    line-height: 1;
}
.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.review-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3em;
    font-weight: bold;
    font-family: var(--font-heading);
}
.review-name {
    font-family: var(--font-heading);
    font-size: 1.1em;
    color: var(--dark);
}
.review-stars {
    font-size: 0.9em;
    letter-spacing: 2px;
}
.review-text {
    font-family: var(--font-body);
    color: #555;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 15px;
}
.review-date {
    font-family: var(--font-body);
    font-size: 0.85em;
    color: var(--gray);
}
.reviews-link {
    display: block;
    text-align: center;
    margin-top: 40px;
    font-family: var(--font-body);
    font-size: 1.1em;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}
.reviews-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}
#actionsBox div p:last-of-type{
    font-family: var(--font-body);
    font-weight: 500;
    margin-left: 10px;
    margin-top: 5px;
    font-size: 1.2em;
    text-shadow: 0 0 0 rgb(32, 88, 88);
    text-align: center;
    letter-spacing: 0.02em;
    line-height: 1.4;
    color: rgb(24, 97, 97);
}
#actionsBox svg{
    float: right;
}
#service{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 20px;
    overflow: hidden;
}

/* Modern Service Section */
.service-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.service-container h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.5em;
    color: #205858;
    margin-bottom: 10px;
    padding: 0;
    width: auto;
    margin-left: auto;
}
.service-subtitle {
    font-family: var(--font-body);
    font-size: 1.2em;
    color: #666;
    margin-bottom: 50px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}
.service-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(158, 12, 12, 0.15);
}
.service-icon {
    font-size: 3em;
    margin-bottom: 15px;
}
.service-card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2em;
    color: #333;
    margin-bottom: 10px;
}
.service-card p {
    font-family: var(--font-body);
    font-size: 0.95em;
    color: #666;
    line-height: 1.5;
}
.service-cta {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #9e0c0c 0%, #7a0909 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(158, 12, 12, 0.3);
}
.service-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(158, 12, 12, 0.4);
}
#service h1, #about h1, #contacts h1,
#service h2, #about h2, #contacts h2{
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: rgb(32, 88, 88);
    line-height: 1.5em;
    font-size: 1.7em;
    padding: 30px;
    width: fit-content;
    margin-left: 50px;
}
#service hr, #about hr, #contacts hr{
    width: 100%;
    margin: auto;
    background-color: rgb(32, 88, 88);
    color: rgb(32, 88, 88);
    height: 2.5px;
}
#service h1 span, #about h1 span, #contacts h1,
#service h2 span, #about h2 span{
    color: #9e0c0c;
    font-size: 1.5em;
}
/* Old service list styles - disabled for new design */
#service > ul {
    display: none !important;
}
/* Old color styles removed */
.transparent{
    background-image: linear-gradient(rgb(255, 255, 255),rgba(0, 0, 0, 0), rgb(0,0,0));
    background-size: 100% 100%;
    background-color: white;
}
#about{
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}
#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239e0c0c' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

/* Modern About Section */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.about-header {
    text-align: center;
    margin-bottom: 60px;
}
.about-label {
    display: inline-block;
    background: rgba(158, 12, 12, 0.2);
    border: 1px solid rgba(158, 12, 12, 0.4);
    color: #ff6b6b;
    padding: 10px 25px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.85em;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}
.about-header h2 {
    font-family: var(--font-heading) !important;
    font-weight: 800 !important;
    font-size: 3em !important;
    color: #fff !important;
    margin-bottom: 15px !important;
    padding: 0 !important;
    width: auto !important;
    margin-left: auto !important;
    text-align: center !important;
    line-height: 1.2 !important;
}
.about-subtitle {
    font-family: var(--font-body);
    font-size: 1.3em;
    color: rgba(255,255,255,0.6);
}
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}
.about-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 40px 25px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #9e0c0c, #ff6b6b);
    border-radius: 0 0 4px 4px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.about-card:hover::before {
    opacity: 1;
}
.about-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.06);
    border-color: rgba(158, 12, 12, 0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.about-icon {
    font-size: 2.8em;
    margin-bottom: 15px;
    display: block;
}
.about-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 3.5em;
    background: linear-gradient(135deg, #9e0c0c 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}
.about-card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2em;
    color: #fff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.about-card p {
    font-family: var(--font-body);
    font-size: 0.95em;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}
.about-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(158,12,12,0.2) 0%, rgba(158,12,12,0.05) 100%);
    border: 1px solid rgba(158, 12, 12, 0.3);
    padding: 50px 30px;
    border-radius: 24px;
}
.about-cta p {
    font-family: var(--font-body);
    font-size: 1.4em;
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
}
.about-btn {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #9e0c0c 0%, #7a0909 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(158, 12, 12, 0.4);
}
.about-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 40px rgba(158, 12, 12, 0.5);
}

.transparent>div{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
}
.card1>span{
    font-family: var(--font-body);
    font-size: 1.5em;
    line-height: 1.5em;
    margin: auto;
    display: block;
    width: fit-content;
    text-align: center;
    padding: 10px;
}
.card1 span>span, .contact-list span{
    color: #9e0c0c;
}
.card1{
    width: 40%;
    box-shadow: -3px 0px 8px 1px rgb(150,150,150);
    margin: 20px auto;
    background-image: linear-gradient(90deg, rgba(255, 255, 255), rgba(255, 255, 255, 0.4));
    display: flex;
    background-color: rgb(200, 200, 200);
}
#contacts{
    width: 100%;
    background: linear-gradient(180deg, #0f0f23 0%, #1a1a2e 100%);
    padding: 100px 20px;
}

/* Modern Contacts Section */
.contacts-container {
    max-width: 1200px;
    margin: 0 auto;
}
.contacts-header {
    text-align: center;
    margin-bottom: 60px;
}
.contacts-label {
    display: inline-block;
    background: rgba(158, 12, 12, 0.2);
    border: 1px solid rgba(158, 12, 12, 0.4);
    color: #ff6b6b;
    padding: 10px 25px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.85em;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.contacts-header h2 {
    font-family: var(--font-heading) !important;
    font-weight: 800 !important;
    font-size: 3em !important;
    color: #fff !important;
    margin: 0 !important;
    padding: 0 !important;
}
.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: stretch;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}
.contact-item:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(158, 12, 12, 0.3);
    transform: translateX(5px);
}
.contact-icon {
    font-size: 1.8em;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(158, 12, 12, 0.15);
    border-radius: 12px;
    flex-shrink: 0;
}
.contact-text {
    flex: 1;
}
.contact-text h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1em;
    color: #fff;
    margin-bottom: 8px;
}
.contact-text p {
    font-family: var(--font-body);
    color: rgba(255,255,255,0.7);
    font-size: 1em;
    line-height: 1.5;
    margin: 0;
}
.contact-text p.closed {
    color: #9e0c0c;
    font-size: 0.9em;
    margin-top: 5px;
}
.contact-text a {
    font-family: var(--font-body);
    color: #ff6b6b;
    font-size: 1.2em;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}
.contact-text a:hover {
    color: #fff;
}
.contact-btn {
    display: inline-block;
    padding: 18px 35px;
    background: linear-gradient(135deg, #9e0c0c 0%, #7a0909 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1em;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(158, 12, 12, 0.3);
    margin-top: 10px;
}
.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(158, 12, 12, 0.4);
}

/* Old contact styles - kept for compatibility */
#contacts h2{
    color: #fff;
    font-family: var(--font-heading);
    font-size: 2em;
    font-weight: 100;
    text-align: center;
}
.base p, .base a{
    color: rgb(32, 88, 88);
    font-family: var(--font-heading);
    font-size: 1em;
    text-align: center;
    line-height: 2em;
}
#contacts h2 span{
    font-size:0.5em;
    color: rgb(105, 158, 158);
}
.contact-map {
    border-radius: 20px;
    overflow: hidden;
    min-height: 400px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 400px;
}
.contacts-promotion div{
    padding: 20px 30px;
    margin: 30px;
    color: rgb(32, 88, 88);
    border-style: none;
    border-top-left-radius: 200px;
    border-bottom-right-radius: 200px;
    font-family: var(--font-heading);
    font-size: 1em;
    background-color: rgb(219, 219, 219);
}
button.button{
    outline-style: none;
    border:none;
    background-color: transparent;
}
.contacts-promotion{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 40%;
    margin: 50px 0 50px 50px;
    padding: 40px 40px 40px 0;
}
.base{
    display: none;
}

/* Modern Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 100%);
    color: #fff;
    padding: 60px 20px 0;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand {
    max-width: 300px;
}
.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8em;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}
.footer-logo span {
    color: #9e0c0c;
}
.footer-brand p {
    font-family: var(--font-body);
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}
.footer-contacts h4,
.footer-links h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #fff;
}
.footer-contacts p {
    font-family: var(--font-body);
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
    font-size: 0.95em;
}
.footer-contacts a {
    color: #9e0c0c;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-contacts a:hover {
    color: #fff;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    font-family: var(--font-body);
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95em;
}
.footer-links a:hover {
    color: #9e0c0c;
    padding-left: 5px;
}
.footer-bottom {
    text-align: center;
    padding: 25px 0;
}
.footer-bottom p {
    font-family: var(--font-body);
    color: rgba(255,255,255,0.5);
    font-size: 0.9em;
}
@keyframes toFullX{
    0%{transform: scaleX(0.7);}
    100%{transform: scaleX(1);}
}
@keyframes opacityBG{
    0%{background-color: rgba(255, 255, 255, 1);}
    100%{background-color: rgba(200,200,200, 0.95);}
}
#main h1{
    color: #9e0c0c;
    font-size: 2.97em;
    font-family: var(--font-heading);
    text-align: center;
}
#main hr{
    margin: 0.55% auto;
    color: white;
    width: 63%;
    height: 2.5px;
}
#main p:nth-of-type(2){
    font-size: 1.43em;
    text-shadow: -0.12em 0.07em 0.17em #3e3e3e;
    color: white;
    margin: 4.1% auto;
}
#main a{
    font-size: 1.45em;
    background-color: rgba(252, 252, 252, 0.65);
    box-shadow: 0 0 1em 0.9em rgba(252, 252, 252, 0.5), 0 0 1.8em 1em rgba(252, 252, 252, 0.45);
    padding: 0.54%;
    margin: 2.15% auto 1.07% auto;
    width: 45%;
    display: block;
}
#main p:nth-of-type(3){
    margin: 9.7% auto 1.4% auto;
}
#main p, #main a{
    font-family: var(--font-body);
    font-weight: bold;
    letter-spacing: 0.12em;
    color: #333;
    font-size: 1.25em;
    margin: 1.6019% auto;
    text-align: center;
    line-height: 1.2em;
}
@keyframes toFullY{
    0%{transform: scaleY(0);}
    100%{transform: scaleY(1);}
}
.button:hover, a:hover, button:hover, form button:hover{
    cursor: pointer;
}
p, h1, h2, h5, span, li{
    cursor: default;
}
a{
    text-decoration: none;
}
a:hover{
    text-decoration-line: underline;
}
.button{
    float: left;
    width: 56.8%;
    height: 100%;
    position: relative;
}
.button p{
    letter-spacing: 0.06em;
    color: #000;
    font-size: 1.14em;
    font-family: var(--font-body);
    text-align: center;
    margin-top: 4%;
    text-shadow: 0 0 0.5em #fff;
}
.button:first-of-type p{
    color: #9e0c0c;
    font-weight: bold;
}
.button:nth-child(1){
    animation: bounce 2s cubic-bezier(0.30, 2.40, 0.85, 2.50) 1.7s infinite;
    -webkit-animation: bounce 2s cubic-bezier(0.30, 2.40, 0.85, 2.50) 1.7s infinite;
    z-index: 50;
}
.buttonsBox .button:nth-child(2){
    margin-left: -14%;
    z-index:49;
}  
@keyframes bounceShadow{
    0%{box-shadow: 0 0 rgba(0, 0, 0, 0.5);}
    100%{box-shadow: 0 10px 10px rgba(0,0,0,0.1);}
}
@keyframes bounce{
   0%, 100%{transform: translateY(-5px);}
    80%{transform: translateY(-15px);}
}
.buttonsBox{
    position: fixed;
    bottom: 0;
    left: 8.65%;
    margin-left: auto;
    margin-right: auto;
    height: 9.5%;
    z-index: 3;
    width: 82.7%;
}
nav ul{
    list-style-type: none;
    width: 64.7%;
    padding-inline-start: 0;
    height: 100%;
}
nav{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5em;
}
.logo-text {
    color: #205858;
}
.logo-accent {
    color: #9e0c0c;
}

/* Nav Links */
.nav-links {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.nav-links li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95em;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.nav-links li a:hover {
    color: #9e0c0c;
    background: rgba(158, 12, 12, 0.08);
}
.nav-links li.active a {
    color: #9e0c0c;
    background: rgba(158, 12, 12, 0.1);
}

/* Nav Phone */
.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #9e0c0c 0%, #7a0909 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(158, 12, 12, 0.3);
}
.nav-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(158, 12, 12, 0.4);
}

/* Hide mobile elements on desktop */
.nav-toggle {
    display: none;
}
.mobile-menu {
    display: none;
}
.phone-icon {
    font-size: 1.1em;
}

/* Button hover effects */
.buttonsBox button{
    transform: scale(1);
    -webkit-transition: transform 0.25s;
    transition: transform 0.25s;
}
nav li:hover, .buttonsBox button:hover{
    transform: scale(1.15);
    animation-play-state: paused;
}
nav li:active, .buttonsBox button:active{
    transform: scale(1);
}
.logoBG{
    width: 31.5%;
    height: 100%;
}
.logoBG div{
    position: relative;
    left: 23.5%;
    top: -87%;
    width: 55.6%;
    height: 70%;
    z-index: 2;
}
svg{
    position: relative;
    z-index: inherit;
}
#ch feFlood, #cf feFlood, #shadow1343491 feFlood, #shadow7783035 feFlood, #shadow9732139 feFlood, #shadow16193553 feFlood, #shadow11103650 feFlood, #shadow15028775 feFlood, #br feFlood, #bw feFlood, #by feFlood, #bC feFlood, #bA feFlood, #shadow10667663 feFlood, #bZ feFlood, feFlood{
    animation: blueCollapse 0.3s forwards;
    -webkit-animation: blueCollapse  0.3s forwards;
}
#cl feFlood, #cj feFlood, #cp feFlood, #bi feFlood, #bk feFlood, #bm feFlood, #bp feFlood, #bG feFlood, #bK feFlood, #bI feFlood, #bE feFlood, #bO feFlood, #bQ feFlood, #bS feFlood, #bX feFlood, #cb feFlood, #cd feFlood, #bZ feFlood{
    animation: blueCollapse 0.3s 0.1s forwards;
    -webkit-animation: blueCollapse 0.3s 0.1s forwards;
}
#Q feFlood, #bg feFlood, #k feFlood, #i feFlood, #bM feFlood, #G feFlood, #A feFlood, #y feFlood, #w feFlood, #u feFlood, #ah feFlood, #S feFlood, #Y feFlood, #K feFlood, #cn feFlood, #m feFlood, #O feFlood, #E feFlood{
    animation: blueCollapse 0.3s 0.2s forwards;
    -webkit-animation: blueCollapse 0.3s 0.2s forwards;
}
#a feFlood, #c feFlood, #e feFlood, #g feFlood, #C feFlood, #q feFlood, #an feFlood, #al feFlood, #aj feFlood, #ap feFlood, #ar feFlood, #at feFlood, #s feFlood, #I feFlood, #o feFlood, #I feFlood, #M feFlood, #af feFlood, #av feFlood, #ac feFlood, #aa feFlood, #U feFlood, #W feFlood, #aD feFlood, #az feFlood, #aH feFlood, #aM feFlood, #ax feFlood, #aJ feFlood, #aB feFlood, #aF feFlood{
    animation: blueCollapse 0.3s 0.3s forwards;
    -webkit-animation: blueCollapse 0.3s 0.3s forwards;
}
@keyframes blueCollapse{
    0%{flood-color:#8a5050;}
    100%{flood-color:#cbdce2;}
}
#aw, #bd, #be{
    animation: becomeRed 0.8s ease-in 0.2s forwards;
    -webkit-animation: becomeRed 0.8s ease-in 0.2s forwards;
}
@keyframes becomeRed{
    0%{fill:#ffffff;}
    100%{fill:#9e0c0c;}
}
@keyframes push{
    0%{transform:scale(1);}
    50%{transform:scale(0.7);}
    100%{transform:scale(1);}
}
svg text{
    fill:#333;
    opacity:0;
    font-size: 1.1em;
    font-family: var(--font-heading);
    font-weight: bold;
    animation: appear 0.6s ease-in 1s forwards;
    -webkit-animation: appear 0.6s ease-in 1s forwards;
}
.button:first-of-type text{
    fill:#9e0c0c;
    font-size: 1.2em;
}
@keyframes appear{
    0%{opacity:0;}
    100%{opacity:1;}
}
#aE, #aA, #aI, #aN, #ay, #aK, #aC, #aG{
    animation: strokeAppear 0.4s ease-in 0.8s forwards;
    -webkit-animation: strokeAppear 0.4s ease-in 0.8s forwards;
}
@keyframes strokeAppear{
    0%{stroke-opacity:0; }
    100%{stroke-opacity:0.7;}
}
/* Loader disabled */
#loader {
    display: none !important;
}
#loader div{
    display: flex;
    align-content: center;
    justify-content: center;
    overflow: hidden;
    width:100%;
    height:100vh;
    z-index: inherit;
    animation: scaleChange 0.8s linear 1.6s forwards;
    -webkit-animation: scaleChange 0.8s linear 1.6s forwards;
}
@keyframes flyToBG{
    0%{transform: translateY(0);}
    100%{transform: translateY(-43.5%);}
}
@keyframes scaleChange{
    0%{transform: scale(1,1)}
    100%{transform: scale(0.4,0.3)}
}
#phoneGroup{
    align-items: center;
    width: 50%;
    height: 42.5px;
    float: left;
}
#phoneGroup div, .phoneNum, #menuMobile{
    display: block;
}
#phoneGroup div{
    width: 20%;
    height: 70%;
}
.phoneNum{
    width: 80%;
    font-size: 1.1em;
    font-family: var(--font-body);
    color: #fff;
}
#menuMobile{
    width: 10%;
    height: 36.5px;
    padding-top: 2%;
    float: right;
}
.menu_open{
    height: 50%;
    
}
.navMenu, .button p, .navMenu ul, #modal-display, #service-display, #modalPromo-display{
    display: none;
}
.navMenu{
    z-index: 1;
    position: fixed;
    height: 7.5%;
    top: 1.7%;
    left: 0;
    width: 100%;
    box-shadow: 0 0 10px 2.9px rgba(90, 90, 90, 0.55), 0 0 13px 9px rgb(203,220,226);
    animation: toFullX 0.35s forwards, opacityBG 0.7s forwards;
    -webkit-animation: toFullX 0.35s forwards, opacityBG 0.7s forwards;
}
.menu_open{
    height: 244px;
    background-color: rgba(200,200,200, 0.95);
    animation: none;
    -webkit-animation: none;
}
.menuList_open{
    display:flex !important;
    flex-direction: column;
    justify-content: center;
    width:100%;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.a_activeMenu{
    color: #333;
}
.navMenu ul a{
    display: block;
    width: 84%;
    padding: 11px 0;
    text-align: center;
    font-family: var(--font-heading);
    color: #333;
    margin: auto;
}
.menuList li:not(:first-child) a{
    border-top: ridge 1px #333;
}
/* Old SVG nav active styles - disabled */
/*
.active{
    transform: scale(1.15);
}
.active path{
    fill: #9e0c0cbe;
}
.active text{
    fill: rgb(255, 255, 255);
}
*/
h5{
    font-family: var(--font-heading);
    font-weight: 700;
    color: white;
    padding: 18px 25px;
    width: fit-content;
    font-size: 1.2em;
}
.message, #mes1, #mes2{
    font-family: var(--font-body);
    background-color: rgba(158, 12, 12,0.6);
    display: none;
    font-weight: 100;
    font-size: 1.5em;
    letter-spacing: 0,5em;
    line-height: 1em;
    width: 100%;
}
#modalPromo-bg h5:nth-child(2){
    color: #9e0c0c;
}
#close-button{
    transform: scale(1);
    transition: transform 0.07s;
}
#modal-bg, #service-bg, #modalPromo-bg{
    width: 100%;
    height: 100vh;
    position: fixed;
    top:0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
}
#modal-header, #service-header, #modalPromo-header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px;
    background-color: rgba(158, 12, 12,0.6);
    display: flex;
    align-items: center;
    justify-content: space-between; 
}
#modal-container, #modalPromo-container{
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    width: 600px;
    max-width: 95vw;
    height: fit-content;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}
form{
    padding: 30px 30px 0;
}
#contacts button{
    outline: none;
}
form label{
    font-family: var(--font-body);
    font-weight: 500;
    color: #9e0c0c;
    font-size: 1.1em;
    transform: translate(0, -65px);
    transition: all 0.2s;
    display: block;
    margin: 10px auto;
    letter-spacing: 0.05em;
    position: relative;
    z-index:1001;
}
input:required + label{
    transform: translate(0, -65px);
}
input:invalid + label{
    transform: translate(0, -38px);
}
input:hover + label, input:focus + label{
    transform: translate(0, -65px);
}
input[type="text"]{
    display: block;
    width: 50%;
    border: none;
    margin: 0 0 20px;
    border-bottom: solid 1px rgb(160, 160, 160);
    background-color: transparent;
    transition: all 0.3s;
    overflow: hidden;
    position: relative;
    z-index:1002;
}
input[type="text"]:hover{
    border-bottom: solid 1px rgb(0, 0, 0);
    width: 90%;
}
input[type="text"]:focus{
    outline: none;
    border-bottom: solid 1px rgb(0, 0, 0);
    width: 90%;
}
input::-webkit-input-placeholder {opacity: 0; transition: all 0.3s;}
input::-moz-placeholder {opacity: 0; transition: all 0.3s;}/* Firefox 19+ */
input::-ms-input-placeholder {opacity: 0; transition: all 0.3s;}
input[type="text"]:hover::-webkit-input-placeholder, input[type="text"]:focus::-webkit-input-placeholder{opacity: 0.6;}
input[type="text"]:hover::-moz-placeholder, input[type="text"]:focus::-moz-placeholder{opacity: 0.6;}
input[type="text"]:hover::-ms-input-placeholder, input[type="text"]:focus::-ms-input-placeholder{opacity: 0.6;}
form button{
    background-color: #9e0c0c;
    color: #fff;
    padding: 12px 30px;
    box-shadow: 0 4px 15px rgba(158, 12, 12, 0.3);
    border: none;
    border-radius: 8px;
    position: relative;
    right: -450px;
    margin: 20px 0 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
}
form button:hover{
    background-color: #7a0909;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(158, 12, 12, 0.4);
}
#service-container{
    width: 850px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
iframe{
    height: 90vh;
    width: 100%;
}
#close-button:hover{
background-color: rgba(255, 255, 255, 0.3);
border: none;
border-radius: 3px;
}
label[for="problem"]{
    transform: none;
}
textarea{
    display:block;
    resize: none;
    width: 200px;
    transition: width 0.2s;
}
textarea:focus{
    width: 90%;
}
.formErrorArea{
    border: 1px solid #9e0c0c !important;
}
.formErrorInput{
    border-bottom: 1px solid #9e0c0c !important;
}
@media screen and (max-width: 1050px){
    #main h1{
        font-size: 2.275em !important;
    }
    #main p:nth-of-type(2){
        font-size: 0.98em !important;
        text-shadow: -0.155em 0.075em 0.28em #3e3e3e !important;
        letter-spacing: 0.20em !important;
        margin: 7% auto !important;
    }
    #main a{
        font-size: 1.25em !important;
    }    
    #main p, #main a{
        font-size: 0.99em !important;
    }
    #actionsBox{
        flex-direction: column;
    }       
    #service h2, #about h2{
        font-size: 1.3em;
        margin-left: 0;
    }    
    #service-container{
        width: 700px;
    }
}
@media screen and ( max-width: 750px) and (min-width: 550px){
    #main div{
        right: -10%;
        min-width: 450px;
    }
    #main h1{
        font-size: 1.875em !important;
    }
    #main p, #main a{
        font-size: 0.94em !important;
        letter-spacing: 0.13em !important;
        line-height: 1.3em !important;    
    }
    #main p:nth-of-type(2){
        font-size: 0.89em !important;
        text-shadow: -0.15em 0.07em 0.25em #3e3e3e !important;
        letter-spacing: 0.21em !important;
        margin: 6.95% auto !important;
    }
    #main a{
        font-size: 1.2em !important;
    }    
    #promotion h1, #promotion h2{
        font-size: 1.7em;
    }  
    #service h2, #about h2{
        width: 100%;
        text-align: center;
    }    
    #service{
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
        background-image: none !important;
        padding: 60px 20px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .promo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    /* Modern contacts - tablet */
    #contacts {
        padding: 70px 20px;
    }
    .contacts-header {
        margin-bottom: 40px;
    }
    .contacts-header h2 {
        font-size: 2.2em !important;
    }
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .contact-map {
        min-height: 350px;
        order: 2;
    }
    .contact-info {
        order: 1;
    }
    .contact-item {
        padding: 20px;
    }
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.5em;
    }
    
    /* Old compat */
    .contacts-wrapper{
        flex-direction: column;
        padding: 20px;
        gap: 25px;
    }
    .contact-list{
        flex: 1 1 auto;
        min-width: 100%;
    }    
    #modal-container, #modalPromo-container{
        width: 400px;
    }
    h5{
        padding: 10px;
    }    
    form button{
        right: -250px;
    }  
    #service-container{
        width: 500px;
    }
}
/* Mobile Navigation */
@media screen and (max-width: 900px) {
    nav {
        padding: 12px 20px;
    }
    .nav-links {
        display: none;
    }
    .nav-phone .phone-number {
        display: none;
    }
    .nav-phone {
        padding: 12px;
        border-radius: 50%;
    }
    
    /* Mobile Menu Toggle Button */
    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 8px;
        z-index: 1001;
    }
    .nav-toggle span {
        display: block;
        width: 24px;
        height: 3px;
        background: #333;
        border-radius: 3px;
        transition: all 0.3s ease;
    }
    .nav-toggle-active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .nav-toggle-active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle-active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Mobile Menu Panel */
    .mobile-menu {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #fff;
        box-shadow: -5px 0 30px rgba(0,0,0,0.15);
        z-index: 1000;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
    }
    .mobile-menu-open {
        right: 0;
    }
    .mobile-menu ul {
        list-style: none;
        padding: 0;
        margin: 0 0 30px 0;
    }
    .mobile-menu ul li {
        margin-bottom: 10px;
    }
    .mobile-menu ul li a {
        display: block;
        padding: 15px 20px;
        font-family: var(--font-body);
        font-size: 1.1em;
        font-weight: 500;
        color: #333;
        text-decoration: none;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    .mobile-menu ul li a:hover {
        background: rgba(158, 12, 12, 0.1);
        color: #9e0c0c;
    }
    .mobile-phone {
        display: block;
        padding: 15px 25px;
        background: linear-gradient(135deg, #9e0c0c 0%, #7a0909 100%);
        color: #fff;
        text-decoration: none;
        border-radius: 50px;
        font-family: var(--font-body);
        font-weight: 600;
        text-align: center;
        box-shadow: 0 4px 15px rgba(158, 12, 12, 0.3);
    }
    .phone-icon {
        font-size: 1.3em;
    }
}

@media screen and (max-width: 550px){
    #phoneGroup{
        display: flex !important;
    }
    .buttonsBox svg, #loader, #main a, #main p:nth-of-type(3){
        display: none !important;
    }
    /* Modern contacts - mobile */
    #contacts {
        padding: 50px 15px;
    }
    .contacts-header {
        margin-bottom: 30px;
    }
    .contacts-label {
        font-size: 0.75em;
        padding: 8px 18px;
    }
    .contacts-header h2 {
        font-size: 1.8em !important;
    }
    .contacts-grid {
        gap: 20px;
    }
    .contact-item {
        padding: 15px;
        gap: 15px;
    }
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1.3em;
    }
    .contact-text h4 {
        font-size: 1em;
        margin-bottom: 5px;
    }
    .contact-text p,
    .contact-text a {
        font-size: 0.95em;
    }
    .contact-btn {
        padding: 14px 25px;
        font-size: 1em;
    }
    .contact-map {
        min-height: 280px;
    }
    .contact-map iframe {
        min-height: 280px;
    }
    .contact-list{
        flex: 1 1 auto;
        min-width: 100%;
        max-width: 100%;
        padding: 10px;
    }
    .button p, .navMenu{
        display: block !important;
    }
    #loader, #loader *, #main{
        animation: none !important;
        -webkit-animation: none !important;
    }
    #main{
        background-image: url('usb.jpg');
        background-size: cover;
        background-position: center;
        transform: none;
    }
    #main div{
        margin-right: auto;
        margin-left: auto;
        right: 0;
        width: 95%;
        top: 20%;
    }
    #main p:nth-of-type(2){
        margin: 50% auto 0 auto !important;
        line-height: 1.5em;
        width: 54%;
    }    
    .buttonsBox{
        width: 100% !important;
        left: 0 !important;
        height: 10% !important;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
    }
    .button{
        float: none !important;
        width: 48% !important;
        height: 80%!important;
        background-color: white !important;
        box-shadow: 0 0 10px 2.9px rgba(90, 90, 90, 0.55), 0 0 13px 9px rgb(203,220,226) !important;
        animation: toFullX 0.35s forwards, opacityBG 0.7s forwards !important;
        -webkit-animation: toFullX 0.35s forwards, opacityBG 0.7s forwards !important;
    }    
    .buttonsBox .button:nth-child(2){
        margin-left: 0 !important;
        right: 0 !important;
    }   
    #promotion h1, #promotion h2{
        line-height: 2em;
        font-size: 1.3em;
        width: 70%;
    }
    #service h2, #about h2{
        font-size: 1.11em;
        padding: 10px;
        width: 100%;
        text-align: center;
        margin-left: 0;
    }
    #service h2 span, #about h2 span{
        font-size: 1em;
    }    
    #service{
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
        background-image: none !important;
        padding: 50px 15px;
    }
    .service-container h2 {
        font-size: 1.8em !important;
    }
    .service-subtitle {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    .service-card {
        padding: 25px 20px;
    }
    .service-icon {
        font-size: 2.5em;
    }
    .service-card h3 {
        font-size: 1.1em;
    }
    .service-cta {
        padding: 14px 30px;
        font-size: 1em;
    }
    
    /* Promo mobile */
    #promotion {
        padding: 50px 15px;
    }
    .promo-container h2 {
        font-size: 1.8em;
    }
    .promo-subtitle {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .promo-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    .promo-card {
        padding: 25px 20px;
    }
    .promo-icon {
        font-size: 2.2em;
    }
    .promo-discount {
        font-size: 2em;
    }
    .promo-card h3 {
        font-size: 1.1em;
    }
    .promo-card p {
        font-size: 0.9em;
    }
    .card1{
        width: 80%;
    }    
    #about{
        padding: 60px 15px;
    }
    .about-header h2 {
        font-size: 2em !important;
    }
    .about-subtitle {
        font-size: 1.1em;
    }
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .about-card {
        padding: 25px 15px;
    }
    .about-icon {
        font-size: 2em;
    }
    .about-number {
        font-size: 2.5em;
    }
    .about-card h3 {
        font-size: 1em;
    }
    .about-card p {
        font-size: 0.85em;
        display: none;
    }
    .about-cta {
        padding: 30px 20px;
    }
    .about-cta p {
        font-size: 1.1em;
    }
    .about-btn {
        padding: 15px 35px;
        font-size: 1em;
    }    
    /* Contacts - very small */
    .contacts-header h2 {
        font-size: 1.5em !important;
    }
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .contact-icon {
        margin: 0 auto;
    }
    .contact-map {
        min-height: 250px;
    }
    .contact-map iframe {
        min-height: 250px;
    }
    
    /* Old compat */
    .contact-list{
        min-width: 100%;
        margin: 0;
        padding: 20px;
    }  
    #contacts h1, #contacts h2{
        line-height: 1em;
        font-size: 1em;
        margin-left: 20px;
    }
    .footer {
        padding: 40px 15px 0;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .footer-brand {
        max-width: 100%;
    }
    .footer-links {
        align-items: center;
    }
    .footer-links a:hover {
        padding-left: 0;
    }   
    #modal-container, #modalPromo-container{
        width: 290px;
    }
    h5{
        font-size:0.7em;
        padding: 3px;
        width: fit-content;
    }    
    form button{
        top: -5px;
        right: -150px;
    }   
    input[type="text"]{
        width: 70%;
    } 
    #service-container{
        width: 300px;
    }
    iframe{
        height: 70vh;
    }
}

/* Very small screens */
@media screen and (max-width: 400px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .about-card {
        padding: 30px 20px;
    }
    .about-card p {
        display: block;
    }
    .about-header h2 {
        font-size: 1.8em !important;
    }
    .promo-grid {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
}