*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Inter',sans-serif;
background:#f7f5f4;
color:#1f1f1f;
overflow-x:hidden;
}

.container{
width:90%;
max-width:1400px;
margin:0 auto;
}

a{
text-decoration:none;
}

img{
max-width:100%;
display:block;
}

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

.header{
width:100%;
background:#ffffff;
padding:22px 0;
border-bottom:1px solid #ececec;
position:sticky;
top:0;
z-index:999;
}

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

.logo{
font-size:52px;
font-weight:900;
color:#69071d;
letter-spacing:-2px;
line-height:1;
}

.nav-menu{
display:flex;
align-items:center;
gap:45px;
}

.nav-menu a{
font-size:17px;
font-weight:700;
color:#1f1f1f;
transition:0.3s;
position:relative;
}

.nav-menu a:hover{
color:#8b0d23;
}

.header-buttons{
display:flex;
align-items:center;
gap:16px;
}

/* LOGIN BUTTON */

.login-btn{
height:56px;
padding:0 32px;
border:2px solid #8b0d23;
border-radius:16px;
display:flex;
align-items:center;
justify-content:center;
background:#ffffff;
color:#8b0d23;
font-size:15px;
font-weight:700;
transition:0.3s;
cursor:pointer;
white-space:nowrap;
}

.login-btn:hover{
background:#8b0d23;
color:white;
transform:translateY(-2px);
}

/* MAIN BUTTON */

.main-btn{
height:56px;
padding:0 32px;
border:none;
border-radius:16px;
display:flex;
align-items:center;
justify-content:center;
background:linear-gradient(135deg,#8b0d23,#5d0015);
color:white;
font-size:15px;
font-weight:700;
transition:0.3s;
cursor:pointer;
white-space:nowrap;
box-shadow:0 10px 25px rgba(139,13,35,0.25);
}

.main-btn:hover{
transform:translateY(-2px);
box-shadow:0 14px 30px rgba(139,13,35,0.35);
}

/* ================= PROFILE ================= */

.profile-dropdown{
position:relative;
}

.profile-btn{
height:56px;
padding:0 24px;
border:none;
border-radius:16px;
background:#f5f5f5;
display:flex;
align-items:center;
gap:12px;
font-weight:700;
cursor:pointer;
transition:.3s;
}

.profile-btn:hover{
background:#ececec;
}

.profile-menu{
position:absolute;
top:65px;
right:0;

width:260px;

background:#fff;
border-radius:20px;

padding:12px;

display:flex;
flex-direction:column;
gap:8px;

box-shadow:0 20px 50px rgba(0,0,0,.12);
border:1px solid #ececec;

opacity:0;
visibility:hidden;
transform:translateY(10px);

transition:.25s;

z-index:9999;
}

.profile-dropdown:hover .profile-menu,
.profile-menu:hover{
opacity:1;
visibility:visible;
transform:translateY(0);
}

.profile-menu a{
height:50px;
padding:0 18px;

display:flex;
align-items:center;

border-radius:12px;

font-size:15px;
font-weight:600;

color:#222;

transition:.3s;
}

.profile-menu a:hover{
background:#f7f3f3;
color:#8b0d23;
}

.profile-menu a:last-child{
color:#d11a2a;
}

.profile-menu a:last-child:hover{
background:#fff1f3;
}

/* ================= HOME PAGE ================= */

.home-hero{
padding:90px 0;
position:relative;
overflow:hidden;
}

.home-hero-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:80px;
}

.home-hero-content{
max-width:620px;
}

.home-badge{
display:inline-flex;
align-items:center;
justify-content:center;
padding:12px 22px;
background:#f4e6e9;
border-radius:999px;
font-size:14px;
font-weight:800;
letter-spacing:2px;
text-transform:uppercase;
color:#8b0d23;
margin-bottom:28px;
}

.home-hero-content h1{
font-size:96px;
line-height:0.92;
font-weight:900;
color:#22030a;
margin-bottom:28px;
letter-spacing:-4px;
}

.home-hero-content p{
font-size:22px;
line-height:1.8;
color:#666;
margin-bottom:42px;
max-width:560px;
}

.home-buttons{
display:flex;
align-items:center;
gap:20px;
}

.home-outline-btn{
height:58px;
padding:0 34px;
border:2px solid #8b0d23;
border-radius:16px;
display:flex;
align-items:center;
justify-content:center;
font-weight:700;
color:#8b0d23;
background:white;
transition:0.3s;
}

.home-outline-btn:hover{
background:#8b0d23;
color:white;
}

.home-hero-image{
display:flex;
justify-content:flex-end;
position:relative;
}

.home-image-card{
width:100%;
max-width:720px;
background:linear-gradient(135deg,#8b0d23,#5d0015);
border-radius:44px;
padding:35px;
position:relative;
overflow:hidden;
box-shadow:0 25px 60px rgba(91,0,21,0.2);
}

.home-image-card::before{
content:"";
position:absolute;
width:320px;
height:320px;
background:rgba(255,255,255,0.08);
border-radius:50%;
top:-120px;
right:-120px;
}

.home-image-card img{
width:100%;
position:relative;
z-index:2;
}

/* ================= SERVICES PAGE ================= */

.services-modern-page{
padding:80px 0;
}

.services-hero{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:70px;
margin-bottom:80px;
}

.services-hero-left h1{
font-size:78px;
line-height:0.95;
font-weight:900;
color:#22030a;
margin:25px 0;
letter-spacing:-3px;
}

.services-hero-left p{
font-size:21px;
line-height:1.8;
color:#666;
max-width:600px;
}

.services-hero-right{
display:flex;
justify-content:flex-end;
}

.hero-image-card{
width:100%;
max-width:700px;
background:linear-gradient(135deg,#8b0d23,#5d0015);
border-radius:44px;
padding:35px;
overflow:hidden;
box-shadow:0 25px 60px rgba(91,0,21,0.2);
}

.hero-image-card img{
width:100%;
}

.breadcrumbs{
display:flex;
align-items:center;
gap:12px;
margin-bottom:25px;
}

.breadcrumbs a{
font-size:24px;
font-weight:500;
color:#999;
line-height:1;
}

.breadcrumbs span{
font-size:24px;
line-height:1;
color:#999;
}

.breadcrumbs .current-page{
color:#5e0a18;
font-weight:700;
}

.hero-mini-stats{
display:flex;
gap:20px;
margin-top:45px;
}

.mini-stat{
background:white;
padding:28px;
border-radius:24px;
min-width:160px;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.mini-stat h3{
font-size:34px;
font-weight:900;
color:#8b0d23;
margin-bottom:10px;
}

.mini-stat p{
font-size:15px;
color:#777;
}

.services-modern-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.service-modern-card{
background:white;
padding:40px;
border-radius:30px;
border:1px solid #f0ebeb;
transition:0.3s;
}

.service-modern-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,0.06);
}

.service-modern-icon{
width:84px;
height:84px;
border-radius:24px;
background:#8b0d23;
display:flex;
align-items:center;
justify-content:center;
margin-bottom:28px;
}

.service-modern-icon img{
width:42px;
height:42px;
object-fit:contain;
}

.service-modern-card h3{
font-size:30px;
font-weight:800;
color:#22030a;
margin-bottom:18px;
}

.service-modern-card p{
font-size:16px;
line-height:1.8;
color:#666;
margin-bottom:25px;
}

.service-modern-card ul{
list-style:none;
display:flex;
flex-direction:column;
gap:14px;
}

.service-modern-card ul li{
position:relative;
padding-left:28px;
font-size:15px;
color:#555;
}

.service-modern-card ul li::before{
content:"•";
position:absolute;
left:0;
top:-2px;
font-size:24px;
color:#8b0d23;
}

/* ================= TARIFFS PAGE ================= */

.tariffs-page{
padding:80px 0;
}

.tariffs-hero{
display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
align-items:center;
margin-bottom:80px;
}

.tariffs-left{
position:relative;
top: -95px;
}

.tariffs-left h1{
font-size:78px;
line-height:0.95;
font-weight:900;
color:#22030a;
margin:25px 0;
}

.tariffs-left p{
font-size:21px;
line-height:1.8;
color:#666;
max-width:600px;
margin-bottom:35px;
}

.tariff-tabs{
display:flex;
gap:18px;
flex-wrap:wrap;
}

.tariff-tabs button{
height:64px;
padding:0 34px;
border-radius:16px;
border:1px solid #ece6e6;
background:white;
font-size:16px;
font-weight:700;
cursor:pointer;
}

.tariff-tabs .active{
background:linear-gradient(135deg,#8b0d23,#5d0015);
color:white;
border:none;
}

.tariffs-right img{
width:100%;
max-width:700px;
margin-left:auto;
}

.hero-note{
margin-top:25px;
background:white;
padding:22px;
border-radius:24px;
display:flex;
align-items:center;
gap:18px;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.hero-note img{
width:44px;
height:44px;
object-fit:contain;
}

.hero-note p{
font-size:15px;
line-height:1.6;
color:#666;
}

.tariff-cards{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
margin-bottom:70px;
}

.tariff-card{
background:white;
padding:36px;
border-radius:30px;
border:1px solid #ece6e6;
position:relative;
transition:0.3s;
}

.tariff-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 40px rgba(0,0,0,0.06);
}

.tariff-card a{
cursor:pointer;
}

.tariff-card a:active{
transform:scale(0.98);
}

.tariff-card.popular{
border:2px solid #8b0d23;
}

.popular-badge{
position:absolute;
top:-14px;
left:50%;
transform:translateX(-50%);
padding:8px 18px;
background:#8b0d23;
border-radius:999px;
font-size:13px;
font-weight:700;
color:white;
}

.tariff-icon{
width:76px;
height:76px;
border-radius:22px;
background:#f8f2f2;
display:flex;
align-items:center;
justify-content:center;
margin-bottom:24px;
}

.tariff-icon img{
width:38px;
height:38px;
}

.tariff-image-card{
width:100%;
max-width:720px;
background:linear-gradient(135deg,#8b0d23,#5d0015);
border-radius:44px;
padding:35px;
position:relative;
overflow:hidden;
box-shadow:0 25px 60px rgba(91,0,21,0.2);
}

.tariff-image-card::before{
content:"";
position:absolute;
width:320px;
height:320px;
background:rgba(255,255,255,0.08);
border-radius:50%;
top:-120px;
right:-120px;
}

.tariff-image-card img{
width:100%;
position:relative;
z-index:2;
display:block;
}

.tariff-card h3{
font-size:32px;
font-weight:800;
color:#22030a;
margin-bottom:10px;
}

.weight{
display:block;
font-size:16px;
color:#888;
margin-bottom:24px;
}

.tariff-card h2{
font-size:52px;
font-weight:900;
color:#8b0d23;
margin-bottom:28px;
}

.tariff-card ul{
list-style:none;
display:flex;
flex-direction:column;
gap:14px;
margin-bottom:30px;
}

.tariff-card ul li{
position:relative;
padding-left:26px;
font-size:15px;
color:#555;
}

.tariff-card ul li::before{
content:"•";
position:absolute;
left:0;
top:-2px;
font-size:24px;
color:#8b0d23;
}

.tariff-card a{
height:56px;
border-radius:14px;
border:2px solid #8b0d23;
display:flex;
align-items:center;
justify-content:center;
font-weight:700;
color:#8b0d23;
transition:0.3s;
}

.tariff-card a:hover{
background:#8b0d23;
color:white;
}

.tariff-bottom{
display:grid;
grid-template-columns:2fr 1fr;
gap:30px;
margin-bottom:70px;
}

.zones-table,
.calculator-box{
background:white;
padding:35px;
border-radius:30px;
}

.zones-table h3,
.calculator-box h3{
font-size:34px;
font-weight:800;
margin-bottom:30px;
color:#22030a;
}

table{
width:100%;
border-collapse:collapse;
}

table th{
background:#faf5f5;
padding:18px;
text-align:left;
font-size:15px;
}

table td{
padding:20px 18px;
border-top:1px solid #eee;
font-size:15px;
}

.table-note{
margin-top:20px;
font-size:14px;
line-height:1.6;
color:#777;
}

.calculator-box form{
display:flex;
flex-direction:column;
gap:18px;
}

.calculator-box input{
height:58px;
padding:0 18px;
border-radius:14px;
border:1px solid #ece6e6;
font-size:15px;
}

.calculator-box button{
height:58px;
border:none;
border-radius:14px;
background:linear-gradient(135deg,#8b0d23,#5d0015);
font-weight:700;
color:white;
cursor:pointer;
}

.corporate-banner{
background:linear-gradient(135deg,#8b0d23,#5d0015);
padding:60px;
border-radius:36px;
display:flex;
align-items:center;
justify-content:space-between;
gap:40px;
margin-bottom:70px;
overflow:hidden;
color:white;
}

.corporate-content h2{
font-size:54px;
line-height:1;
font-weight:900;
color:white;
margin-bottom:24px;
}

.corporate-content p{
font-size:18px;
line-height:1.8;
color:white;
max-width:560px;
margin-bottom:30px;
}

.corporate-content a{
display:inline-flex;
align-items:center;
justify-content:center;
height:58px;
padding:0 34px;
background:white;
border-radius:16px;
font-weight:700;
color:#8b0d23;
}

.corporate-image img{
width:260px;
}

.tariff-features{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.feature-item{
background:white;
padding:28px;
border-radius:24px;
display:flex;
gap:18px;
align-items:flex-start;
}

.feature-item img{
width:42px;
height:42px;
object-fit:contain;
}

.feature-item h4{
font-size:20px;
font-weight:800;
margin-bottom:10px;
color:#22030a;
}

.feature-item p{
font-size:15px;
line-height:1.7;
color:#666;
}
.calculator-result{
margin-top:25px;
padding:22px;
background:#f8f2f2;
border-radius:18px;
font-size:18px;
font-weight:700;
color:#22030a;
text-align:center;
}

.calculator-result span{
color:#8b0d23;
font-size:28px;
font-weight:900;
}

.calculator-result{
margin-top:25px;
padding:24px;
border-radius:20px;
background:#f8f2f2;
border:1px solid #eadede;
}

.calculator-result h4{
font-size:22px;
margin-bottom:15px;
color:#8b0d23;
}

.calculator-result p{
font-size:16px;
margin-bottom:10px;
color:#444;
}

.calculator-result strong{
color:#8b0d23;
font-weight:800;
}

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

.footer{
background:white;
padding:80px 0 40px;
margin-top:90px;
border-top:1px solid #ececec;
}

.footer-container{
display:grid;
grid-template-columns:2fr 1fr 1fr 1fr;
gap:50px;
align-items:flex-start;
}

.footer-container div:last-child{
margin-left:auto;
text-align:right;
}

.footer h2{
font-size:44px;
font-weight:900;
margin-bottom:20px;
color:#69071d;
}

.footer p{
line-height:1.8;
color:#666;
}

/* ================= MOBILE ================= */

@media(max-width:1100px){

.home-hero-wrapper,
.services-hero,
.tariffs-hero,
.tariff-bottom{
grid-template-columns:1fr;
}

.services-modern-grid,
.tariff-cards,
.tariff-features,
.footer-container{
grid-template-columns:1fr 1fr;
}

.home-hero-content{
max-width:100%;
}

.home-hero-content h1,
.services-hero-left h1,
.tariffs-left h1{
font-size:64px;
}

.home-hero-image,
.services-hero-right{
justify-content:center;
}

.corporate-banner{
flex-direction:column;
text-align:center;
}

}

@media(max-width:768px){

.nav-menu{
display:none;
}

.header-container{
flex-direction:column;
gap:20px;
}

.logo{
font-size:42px;
}

.home-hero,
.services-modern-page,
.tariffs-page{
padding:50px 0;
}

.home-hero-wrapper,
.services-modern-grid,
.tariff-cards,
.tariff-features,
.footer-container{
grid-template-columns:1fr;
}

.home-buttons{
flex-direction:column;
align-items:stretch;
}

.home-buttons a{
width:100%;
}

.home-hero-content h1,
.services-hero-left h1,
.tariffs-left h1{
font-size:42px;
}

.home-hero-content p,
.services-hero-left p,
.tariffs-left p{
font-size:18px;
}

.hero-mini-stats{
flex-direction:column;
}

.tariff-tabs{
flex-direction:column;
}

.corporate-banner{
padding:40px 25px;
}

.corporate-content h2{
font-size:38px;
}

.tariff-bottom{
grid-template-columns:1fr;
}

table{
display:block;
overflow-x:auto;
white-space:nowrap;
}

}
button:hover{
transform:translateY(-2px);
}
/* ================= AUTH ================= */

.auth-page{
min-height:100vh;
background:
linear-gradient(rgba(247,245,244,0.95),
rgba(247,245,244,0.95)),
url('../images/auth-bg.jpg');
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
padding:40px 20px;
}

.auth-wrapper{
width:100%;
display:flex;
justify-content:center;
align-items:center;
}

.auth-card{
width:100%;
max-width:520px;
background:white;
padding:55px;
border-radius:36px;
box-shadow:0 25px 60px rgba(0,0,0,0.08);
border:1px solid #f0ebeb;
}

.auth-logo{
display:block;
font-size:42px;
font-weight:900;
color:#69071d;
text-align:center;
margin-bottom:25px;
letter-spacing:-2px;
}

.auth-card h1{
font-size:52px;
font-weight:900;
color:#22030a;
text-align:center;
margin-bottom:12px;
}

.auth-subtitle{
font-size:17px;
color:#777;
text-align:center;
margin-bottom:40px;
line-height:1.7;
}

.auth-form{
display:flex;
flex-direction:column;
gap:24px;
}

.input-group{
position:relative;
}

.input-group input{
width:100%;
height:64px;
border:1px solid #ece6e6;
border-radius:18px;
padding:0 22px;
font-size:16px;
background:#fff;
outline:none;
transition:0.3s;
}

.input-group input:focus{
border-color:#8b0d23;
box-shadow:0 0 0 4px rgba(139,13,35,0.08);
}

.input-group label{
position:absolute;
left:22px;
top:20px;
font-size:16px;
color:#999;
pointer-events:none;
transition:0.3s;
background:white;
padding:0 6px;
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label{
top:-10px;
font-size:13px;
color:#8b0d23;
}

.captcha-wrapper{
display:flex;
justify-content:center;
margin-top:5px;
}

.full-btn{
width:100%;
height:62px;
font-size:17px;
cursor:pointer;
margin-top:10px;
}

.auth-links{
margin-top:28px;
display:flex;
justify-content:space-between;
gap:20px;
flex-wrap:wrap;
}

.auth-links a{
font-size:15px;
font-weight:700;
color:#8b0d23;
transition:0.3s;
}

.auth-links a:hover{
opacity:0.7;
}

.error-text{
background:#fff1f3;
border:1px solid #ffd5dc;
color:#a1002c;
padding:16px 18px;
border-radius:16px;
font-size:15px;
margin-bottom:24px;
line-height:1.6;
}

@media(max-width:768px){

.auth-card{
padding:35px 25px;
border-radius:28px;
}

.auth-card h1{
font-size:40px;
}

.auth-logo{
font-size:34px;
}

.auth-links{
flex-direction:column;
align-items:center;
}

.g-recaptcha{
transform:scale(0.92);
transform-origin:center;
}

}
/* ===== BUSINESS REQUEST PAGE ===== */

.business-request-page{
    min-height: calc(100vh - 120px);
    padding: 80px 0;
    background: #f7f8fa;
}

.business-card{
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

.business-card h1{
    font-size: 42px;
    color: #7b001c;
    margin-bottom: 15px;
    text-align: center;
}

.business-card p{
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 17px;
    line-height: 1.7;
}

.form-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.business-card input,
.business-card textarea{
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #ddd;
    border-radius: 14px;
    font-size: 16px;
    transition: .3s;
    background: #fff;
}

.business-card input:focus,
.business-card textarea:focus{
    border-color: #7b001c;
    outline: none;
    box-shadow: 0 0 0 3px rgba(123,0,28,.15);
}

.business-card textarea{
    resize: vertical;
    min-height: 160px;
    margin-bottom: 25px;
}

.business-card button{
    width: 100%;
    padding: 18px;
    background: #7b001c;
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.business-card button:hover{
    background: #950024;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(123,0,28,.25);
}

@media(max-width:768px){

    .business-card{
        padding: 30px;
    }

    .form-grid{
        grid-template-columns: 1fr;
    }

    .business-card h1{
        font-size: 32px;
    }
}

.business-request-page{
    padding: 80px 0;
    background: #f7f7f7;
    min-height: calc(100vh - 200px);
}

.business-card{
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.business-card h1{
    text-align: center;
    font-size: 42px;
    color: #7b001c;
    margin-bottom: 15px;
}

.business-card p{
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.form-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.business-card textarea{
    width: 100%;
    min-height: 180px;
    margin-bottom: 25px;
}

.business-card button{
    display: block;
    margin: 0 auto;
    min-width: 260px;
}

.success-message{
    background:#e8f8ec;
    border:1px solid #9ed9ad;
    color:#166534;
    padding:18px 20px;
    border-radius:14px;
    margin-bottom:25px;
    text-align:center;
    font-size:16px;
    font-weight:600;
}

/* ===== CREATE ORDER ===== */

.page-section{
    padding:80px 0;
}

.page-title{
    font-size:56px;
    font-weight:900;
    margin-bottom:40px;
    color:#22030a;
}

.order-card{
    max-width:1000px;
    margin:0 auto;
    background:#fff;
    border-radius:36px;
    padding:55px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.order-section{
    margin-bottom:40px;
}

.order-section h2{
    font-size:34px;
    margin-bottom:25px;
    color:#22030a;
}

.order-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:20px;
}

.order-card input,
.order-card textarea,
.order-card select{
    width:100%;
    padding:16px 20px;
    border:1px solid #ddd;
    border-radius:14px;
    font-size:16px;
    background:#fff;
}

.order-card textarea{
    min-height:120px;
    resize:none;
    margin-bottom:20px;
}

.order-card input:focus,
.order-card textarea:focus,
.order-card select:focus{
    outline:none;
    border-color:#8b0d23;
    box-shadow:0 0 0 3px rgba(139,13,35,.15);
}

.order-submit{
    width:100%;
    height:64px;
    border:none;
    border-radius:18px;
    background:linear-gradient(135deg,#8b0d23,#5d0015);
    color:#fff;
    font-size:20px;
    font-weight:700;
    cursor:pointer;
    margin-top:20px;
    box-shadow:0 10px 30px rgba(139,13,35,.25);
}

.order-submit:hover{
    transform:translateY(-2px);
}

@media(max-width:768px){

    .order-card{
        padding:30px;
    }

    .order-grid{
        grid-template-columns:1fr;
    }

    .page-title{
        font-size:40px;
    }

    .order-section h2{
        font-size:28px;
    }

}

/* ================= CONTACTS PAGE ================= */

.contact-modern-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:25px;
    margin:70px 0;
}

.contact-modern-card{
    background:#fff;
    padding:35px;
    border-radius:30px;
    box-shadow:0 15px 35px rgba(0,0,0,.06);
    transition:.3s;
}

.contact-modern-card:hover{
    transform:translateY(-6px);
}

.big-contact{
    background:linear-gradient(135deg,#8b0d23,#5d0015);
    color:#fff;
}

.big-contact p,
.big-contact span,
.big-contact h3{
    color:#fff;
}

.contact-modern-icon{
    width:70px;
    height:70px;
    border-radius:20px;
    background:#f5f0f0;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:20px;
}

.big-contact .contact-modern-icon{
    background:rgba(255,255,255,.15);
}

.contact-modern-card h3{
    font-size:24px;
    margin-bottom:12px;
}

.contact-modern-card p{
    font-size:20px;
    font-weight:700;
    margin-bottom:10px;
}

.contact-modern-card span{
    color:#777;
    line-height:1.6;
}

.support-section{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:40px;
    margin:80px 0;
}

.support-left{
    background:#fff;
    padding:45px;
    border-radius:30px;
    box-shadow:0 15px 35px rgba(0,0,0,.06);
}

.support-left h2{
    font-size:48px;
    margin-bottom:20px;
    color:#22030a;
}

.support-left p{
    font-size:18px;
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.support-left ul{
    list-style:none;
    margin-bottom:35px;
}

.support-left ul li{
    padding:12px 0;
    font-size:17px;
}

.support-right{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.support-box{
    background:#fff;
    padding:35px;
    border-radius:30px;
    box-shadow:0 15px 35px rgba(0,0,0,.06);
}

.support-box h3{
    font-size:28px;
    margin-bottom:15px;
}

.support-box p{
    color:#666;
    line-height:1.8;
}

.dark-box{
    background:linear-gradient(135deg,#8b0d23,#5d0015);
}

.dark-box h3,
.dark-box p{
    color:#fff;
}

.cta-banner{
    margin-top:80px;
    background:linear-gradient(135deg,#8b0d23,#5d0015);
    border-radius:40px;
    padding:60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#fff;
    overflow:hidden;
}

.cta-content h2{
    font-size:56px;
    margin-bottom:20px;
}

.cta-content p{
    font-size:20px;
    line-height:1.8;
    margin-bottom:30px;
}

.cta-buttons{
    display:flex;
    gap:20px;
}

.white-outline{
    border:2px solid #fff;
    color:#fff;
    background:transparent;
}

.white-outline:hover{
    background:#fff;
    color:#8b0d23;
}

.cta-image{
    font-size:120px;
}

@media(max-width:1100px){

    .contact-modern-grid{
        grid-template-columns:1fr 1fr;
    }

    .support-section{
        grid-template-columns:1fr;
    }

    .cta-banner{
        flex-direction:column;
        text-align:center;
        gap:30px;
    }

}

@media(max-width:768px){

    .contact-modern-grid{
        grid-template-columns:1fr;
    }

    .support-left{
        padding:30px;
    }

    .support-left h2{
        font-size:34px;
    }

    .cta-content h2{
        font-size:38px;
    }

    .cta-buttons{
        flex-direction:column;
    }

    .cta-banner{
        padding:40px 25px;
    }

    .cta-image{
        font-size:80px;
    }

}

.alarm-icon{
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.home-icon{
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.thought-icon{
    width: 140px;
    height: 140px;
    object-fit: contain;
} 

.page-description{
    max-width:650px;
    margin-top:30px;

    padding:30px 35px;

    background:#ffffff;
    border-radius:24px;

    box-shadow:0 15px 35px rgba(0,0,0,0.08);

    font-size:20px;
    line-height:1.9;
    font-weight:400;

    color:#555;

    border-left:5px solid #8b0d23;
}

.page-title{
    font-size:72px;
    font-weight:900;
    line-height:0.95;
    color:#22030a;
    margin-bottom:25px;
    letter-spacing:-2px;
}
.page-hero-left{
    font-family:'Manrope',sans-serif;
}
.page-hero{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:100px;
    align-items:center;
}
.services-btn{
    height:58px;
    padding:0 34px;
    border:2px solid rgba(255,255,255,.8);
    border-radius:16px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-weight:700;

    transition:.3s;
}

.services-btn:hover{
    background:#fff;
    color:#8b0d23;
    transform:translateY(-2px);
}

/* ===== CONTACT FORM PAGE ===== */

.contact-form-page{
    padding:80px 0;
    background:#f7f5f4;
}

.contact-form-card{
    max-width:800px;
    margin:0 auto;
    background:#fff;
    padding:50px;
    border-radius:30px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.contact-form-card h1{
    text-align:center;
    font-size:42px;
    color:#7b001c;
    margin-bottom:15px;
}

.contact-form-card p{
    text-align:center;
    color:#666;
    margin-bottom:35px;
    line-height:1.7;
}

.contact-form-card form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form-card .form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.contact-form-card input,
.contact-form-card textarea{
    width:100%;
    padding:16px 20px;
    border:1px solid #ddd;
    border-radius:14px;
    font-size:16px;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus{
    outline:none;
    border-color:#7b001c;
    box-shadow:0 0 0 3px rgba(123,0,28,.15);
}

.contact-form-card textarea{
    resize:vertical;
    min-height:180px;
}

.contact-form-card button{
    width:100%;
}

@media(max-width:768px){

    .contact-form-card{
        padding:30px;
    }

    .contact-form-card .form-grid{
        grid-template-columns:1fr;
    }

}

.success-message{
    max-width:1200px;
    margin:30px auto;
    padding:18px 25px;
    background:#eaf8ee;
    border:1px solid #b9e4c3;
    color:#1f7a39;
    border-radius:16px;
    font-weight:600;
    text-align:center;
}

/* ================= DASHBOARD ================= */

.dashboard-page{
padding:80px 0;
}

.dashboard-hero{
display:grid;
grid-template-columns:1fr 280px;
gap:50px;
align-items:start;
margin-bottom:60px;
}

.dashboard-left h1{
font-size:68px;
font-weight:900;
color:#22030a;
margin:20px 0;
line-height:1;
}

.dashboard-left p{
font-size:20px;
line-height:1.8;
color:#666;
max-width:700px;
}

.dashboard-right{
display:flex;
justify-content:center;
}

.dashboard-avatar{
width:220px;
height:220px;
border-radius:50%;
background:linear-gradient(135deg,#8b0d23,#5d0015);
display:flex;
align-items:center;
justify-content:center;
font-size:90px;
font-weight:900;
color:#fff;
box-shadow:0 25px 60px rgba(91,0,21,.25);
}

.dashboard-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
margin-bottom:50px;
}

.dashboard-card{
background:#fff;
padding:35px;
border-radius:30px;
border:1px solid #ece6e6;
transition:.3s;
text-decoration:none;
}

.dashboard-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.dashboard-icon{
font-size:48px;
margin-bottom:20px;
}

.dashboard-card h3{
font-size:28px;
font-weight:800;
color:#22030a;
margin-bottom:12px;
}

.dashboard-card p{
font-size:16px;
line-height:1.7;
color:#666;
}

.dashboard-info{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.info-card{
background:#fff;
padding:30px;
border-radius:25px;
border:1px solid #ece6e6;
}

.info-card h4{
font-size:15px;
color:#999;
margin-bottom:12px;
text-transform:uppercase;
letter-spacing:1px;
}

.info-card p{
font-size:22px;
font-weight:700;
color:#22030a;
}

@media(max-width:992px){

.dashboard-hero{
grid-template-columns:1fr;
text-align:center;
}

.dashboard-grid{
grid-template-columns:1fr;
}

.dashboard-info{
grid-template-columns:1fr;
}

.dashboard-left h1{
font-size:48px;
}

.dashboard-avatar{
width:160px;
height:160px;
font-size:70px;
}

}

.box-icon{
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.profile-edit-btn{
    display:flex;
    justify-content:center;
    margin-top:50px;
}

.profile-edit-btn .main-btn{
    min-width:280px;
}

.hand-icon{
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* ================= ADMIN PANEL ================= */

.dashboard-top{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:50px;
}

.dashboard-label{
display:inline-block;
padding:10px 18px;
background:#f4e6e9;
border-radius:999px;
font-size:14px;
font-weight:800;
letter-spacing:1px;
text-transform:uppercase;
color:#8b0d23;
margin-bottom:20px;
}

.crm-grid{
display:grid;
grid-template-columns:repeat(auto-fill,minmax(500px,1fr));
gap:30px;
}

.crm-card{
background:#fff;
border-radius:30px;
padding:35px;
border:1px solid #ece6e6;
box-shadow:0 15px 40px rgba(0,0,0,.05);
transition:.3s;
}

.crm-card:hover{
transform:translateY(-5px);
box-shadow:0 25px 50px rgba(0,0,0,.08);
}

.crm-top{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:25px;
padding-bottom:20px;
border-bottom:1px solid #eee;
}

.crm-top h2{
font-size:30px;
font-weight:900;
color:#22030a;
margin-bottom:10px;
}

.crm-status{
display:inline-flex;
align-items:center;
justify-content:center;
padding:10px 18px;
border-radius:999px;
background:#f4e6e9;
color:#8b0d23;
font-weight:700;
font-size:14px;
}

.crm-info{
display:flex;
flex-direction:column;
gap:12px;
margin-bottom:30px;
}

.crm-info p{
font-size:15px;
line-height:1.7;
color:#444;
}

.crm-info b{
color:#22030a;
}

.crm-form{
display:flex;
flex-direction:column;
gap:16px;
}

.crm-form select,
.crm-form input,
.crm-form textarea{
width:100%;
padding:16px 18px;
border:1px solid #ddd;
border-radius:14px;
font-size:15px;
background:#fff;
transition:.3s;
font-family:'Inter',sans-serif;
}

.crm-form textarea{
min-height:120px;
resize:vertical;
}

.crm-form select:focus,
.crm-form input:focus,
.crm-form textarea:focus{
outline:none;
border-color:#8b0d23;
box-shadow:0 0 0 3px rgba(139,13,35,.12);
}

.delete-btn{
width:100%;
height:58px;
border:none;
border-radius:16px;
background:#ef4444;
color:#fff;
font-size:15px;
font-weight:700;
cursor:pointer;
transition:.3s;
}

.delete-btn:hover{
background:#dc2626;
transform:translateY(-2px);
}

.crm-form .main-btn{
width:100%;
}

@media(max-width:768px){

.crm-grid{
grid-template-columns:1fr;
}

.crm-card{
padding:25px;
}

.crm-top h2{
font-size:24px;
}

}