This commit is contained in:
@@ -40,7 +40,7 @@ body {
|
|||||||
h1,h2,h3,h4,h5,h6 { font-family: 'Montserrat', sans-serif; font-weight: 700; line-height: 1.2; }
|
h1,h2,h3,h4,h5,h6 { font-family: 'Montserrat', sans-serif; font-weight: 700; line-height: 1.2; }
|
||||||
a { text-decoration: none; color: inherit; transition: color 0.3s; }
|
a { text-decoration: none; color: inherit; transition: color 0.3s; }
|
||||||
img { max-width: 100%; display: block; }
|
img { max-width: 100%; display: block; }
|
||||||
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
|
.container { max-width: 1240px; margin: 0 auto; padding: 0 clamp(12px, 2vw, 20px); }
|
||||||
|
|
||||||
/* ========== HEADER — CONSTRUCTION EQUIPMENT STYLE ========== */
|
/* ========== HEADER — CONSTRUCTION EQUIPMENT STYLE ========== */
|
||||||
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: all 0.3s; padding-top: env(safe-area-inset-top); }
|
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: all 0.3s; padding-top: env(safe-area-inset-top); }
|
||||||
@@ -57,7 +57,7 @@ img { max-width: 100%; display: block; }
|
|||||||
|
|
||||||
.header-inner {
|
.header-inner {
|
||||||
display: flex; align-items: center; justify-content: space-between;
|
display: flex; align-items: center; justify-content: space-between;
|
||||||
padding: 0 30px; max-width: 1300px; margin: 0 auto; position: relative;
|
padding: 0 clamp(16px, 3vw, 30px); max-width: 1300px; margin: 0 auto; position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
.header-inner::before {
|
.header-inner::before {
|
||||||
@@ -71,10 +71,10 @@ img { max-width: 100%; display: block; }
|
|||||||
@media (max-width: 768px) { .logo img { max-height: 90px; } }
|
@media (max-width: 768px) { .logo img { max-height: 90px; } }
|
||||||
@media (max-width: 480px) { .logo img { max-height: 65px; } }
|
@media (max-width: 480px) { .logo img { max-height: 65px; } }
|
||||||
|
|
||||||
.nav { display: flex; align-items: center; gap: 16px; position: relative; z-index: 2; }
|
.nav { display: flex; align-items: center; gap: clamp(10px, 1.8vw, 16px); position: relative; z-index: 2; }
|
||||||
|
|
||||||
.nav a {
|
.nav a {
|
||||||
font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 12px;
|
font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: clamp(10px, 1.2vw, 12px);
|
||||||
text-transform: uppercase; letter-spacing: 1.5px; color: #bdc3c7;
|
text-transform: uppercase; letter-spacing: 1.5px; color: #bdc3c7;
|
||||||
transition: all 0.3s; padding: 8px 4px; position: relative;
|
transition: all 0.3s; padding: 8px 4px; position: relative;
|
||||||
}
|
}
|
||||||
@@ -86,8 +86,8 @@ img { max-width: 100%; display: block; }
|
|||||||
.nav a:hover::after { transform: scaleX(1); }
|
.nav a:hover::after { transform: scaleX(1); }
|
||||||
|
|
||||||
.header-phone {
|
.header-phone {
|
||||||
display: flex; align-items: center; gap: 8px;
|
display: flex; align-items: center; gap: clamp(6px, 1vw, 8px);
|
||||||
font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 15px;
|
font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: clamp(13px, 1.5vw, 15px);
|
||||||
color: var(--orange-light); position: relative; z-index: 2;
|
color: var(--orange-light); position: relative; z-index: 2;
|
||||||
}
|
}
|
||||||
.header-phone svg { width: 18px; height: 18px; fill: var(--orange); }
|
.header-phone svg { width: 18px; height: 18px; fill: var(--orange); }
|
||||||
@@ -105,14 +105,14 @@ img { max-width: 100%; display: block; }
|
|||||||
.mobile-nav {
|
.mobile-nav {
|
||||||
position: fixed; top: 0; right: -320px; width: min(320px, 85vw); height: 100vh; height: 100dvh;
|
position: fixed; top: 0; right: -320px; width: min(320px, 85vw); height: 100vh; height: 100dvh;
|
||||||
background: linear-gradient(180deg, #2c3e50, #1a2a3a);
|
background: linear-gradient(180deg, #2c3e50, #1a2a3a);
|
||||||
z-index: 1001; padding: 80px 30px 30px; padding-top: calc(80px + env(safe-area-inset-top));
|
z-index: 1001; padding: clamp(60px, 10vw, 80px) clamp(20px, 3vw, 30px) clamp(20px, 3vw, 30px); padding-top: calc(clamp(60px, 10vw, 80px) + env(safe-area-inset-top));
|
||||||
transition: right 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
|
transition: right 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
|
||||||
border-left: 3px solid var(--orange);
|
border-left: 3px solid var(--orange);
|
||||||
}
|
}
|
||||||
.mobile-nav.open { right: 0; }
|
.mobile-nav.open { right: 0; }
|
||||||
.mobile-nav a {
|
.mobile-nav a {
|
||||||
display: block; padding: 14px 0;
|
display: block; padding: clamp(10px, 1.5vw, 14px) 0;
|
||||||
font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 14px;
|
font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: clamp(13px, 1.5vw, 14px);
|
||||||
color: #bdc3c7; border-bottom: 1px solid rgba(255,255,255,0.06);
|
color: #bdc3c7; border-bottom: 1px solid rgba(255,255,255,0.06);
|
||||||
text-transform: uppercase; letter-spacing: 1px;
|
text-transform: uppercase; letter-spacing: 1px;
|
||||||
}
|
}
|
||||||
@@ -126,7 +126,7 @@ img { max-width: 100%; display: block; }
|
|||||||
/* ========== HERO ========== */
|
/* ========== HERO ========== */
|
||||||
.hero {
|
.hero {
|
||||||
min-height: 100vh; min-height: 100dvh; display: flex; align-items: center;
|
min-height: 100vh; min-height: 100dvh; display: flex; align-items: center;
|
||||||
position: relative; overflow: hidden; padding-top: 120px;
|
position: relative; overflow: hidden; padding-top: clamp(80px, 12vw, 120px);
|
||||||
background: linear-gradient(135deg, #e8e4df 0%, #d5d0c8 100%);
|
background: linear-gradient(135deg, #e8e4df 0%, #d5d0c8 100%);
|
||||||
}
|
}
|
||||||
.hero-bg { position: absolute; inset: 0; z-index: 0; }
|
.hero-bg { position: absolute; inset: 0; z-index: 0; }
|
||||||
@@ -135,36 +135,36 @@ img { max-width: 100%; display: block; }
|
|||||||
content: ''; position: absolute; inset: 0;
|
content: ''; position: absolute; inset: 0;
|
||||||
background: linear-gradient(135deg, rgba(26,42,58,0.88) 0%, rgba(26,42,58,0.55) 50%, rgba(26,42,58,0.78) 100%);
|
background: linear-gradient(135deg, rgba(26,42,58,0.88) 0%, rgba(26,42,58,0.55) 50%, rgba(26,42,58,0.78) 100%);
|
||||||
}
|
}
|
||||||
.hero-content { position: relative; z-index: 2; max-width: 820px; padding: 50px 0; }
|
.hero-content { position: relative; z-index: 2; max-width: clamp(320px, 90vw, 820px); padding: clamp(28px, 6vw, 50px) 0; }
|
||||||
|
|
||||||
.hero-badge {
|
.hero-badge {
|
||||||
display: inline-flex; align-items: center; gap: 8px;
|
display: inline-flex; align-items: center; gap: clamp(5px, 1vw, 8px);
|
||||||
background: rgba(230,126,34,0.2); border: 1px solid rgba(230,126,34,0.5);
|
background: rgba(230,126,34,0.2); border: 1px solid rgba(230,126,34,0.5);
|
||||||
border-radius: 50px; padding: 8px 22px; margin-bottom: 24px;
|
border-radius: 50px; padding: clamp(6px, 1vw, 8px) clamp(14px, 2.5vw, 22px); margin-bottom: clamp(14px, 3vw, 24px);
|
||||||
font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px;
|
font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: clamp(11px, 1.5vw, 13px);
|
||||||
color: var(--orange-light);
|
color: var(--orange-light);
|
||||||
}
|
}
|
||||||
.hero h1 {
|
.hero h1 {
|
||||||
font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 900;
|
font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 900;
|
||||||
margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1px; color: #fff;
|
margin-bottom: clamp(12px, 2vw, 18px); text-transform: uppercase; letter-spacing: 1px; color: #fff;
|
||||||
}
|
}
|
||||||
.hero h1 span { color: var(--orange-light); }
|
.hero h1 span { color: var(--orange-light); }
|
||||||
.hero-subtitle { font-size: clamp(1rem, 2.2vw, 1.2rem); color: #bdc3c7; margin-bottom: 32px; line-height: 1.7; overflow-wrap: break-word; }
|
.hero-subtitle { font-size: clamp(1rem, 2.2vw, 1.2rem); color: #bdc3c7; margin-bottom: clamp(18px, 4vw, 32px); line-height: 1.7; overflow-wrap: break-word; }
|
||||||
|
|
||||||
.hero-contacts { display: flex; flex-wrap: wrap; gap: 22px; margin-bottom: 36px; }
|
.hero-contacts { display: flex; flex-wrap: wrap; gap: clamp(12px, 2.5vw, 22px); margin-bottom: clamp(20px, 4vw, 36px); }
|
||||||
@media (max-width: 768px) { .hero-contacts { flex-direction: column; gap: 12px; } }
|
@media (max-width: 768px) { .hero-contacts { flex-direction: column; gap: clamp(8px, 2vw, 12px); } }
|
||||||
.hero-contact-item { display: flex; align-items: center; gap: 10px; color: #ecf0f1; font-size: 15px; }
|
.hero-contact-item { display: flex; align-items: center; gap: clamp(6px, 1.2vw, 10px); color: #ecf0f1; font-size: clamp(13px, 1.5vw, 15px); }
|
||||||
.hero-contact-item svg { width: 18px; height: 18px; fill: var(--orange); flex-shrink: 0; }
|
.hero-contact-item svg { width: 18px; height: 18px; fill: var(--orange); flex-shrink: 0; }
|
||||||
.hero-contact-item a { color: #ecf0f1; }
|
.hero-contact-item a { color: #ecf0f1; }
|
||||||
.hero-contact-item a:hover { color: var(--orange-light); }
|
.hero-contact-item a:hover { color: var(--orange-light); }
|
||||||
|
|
||||||
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }
|
.hero-buttons { display: flex; flex-wrap: wrap; gap: clamp(10px, 1.8vw, 14px); }
|
||||||
|
|
||||||
.btn {
|
.btn {
|
||||||
display: inline-flex; align-items: center; gap: 10px;
|
display: inline-flex; align-items: center; gap: clamp(6px, 1.2vw, 10px);
|
||||||
padding: 16px 34px; border-radius: 4px;
|
padding: clamp(12px, 2vw, 16px) clamp(20px, 4vw, 34px); border-radius: 4px;
|
||||||
font-family: 'Montserrat', sans-serif; font-weight: 700;
|
font-family: 'Montserrat', sans-serif; font-weight: 700;
|
||||||
font-size: 14px; text-transform: uppercase; letter-spacing: 1.5px;
|
font-size: clamp(12px, 1.5vw, 14px); text-transform: uppercase; letter-spacing: 1.5px;
|
||||||
cursor: pointer; border: none; transition: all 0.3s;
|
cursor: pointer; border: none; transition: all 0.3s;
|
||||||
}
|
}
|
||||||
.btn-primary {
|
.btn-primary {
|
||||||
@@ -176,36 +176,36 @@ img { max-width: 100%; display: block; }
|
|||||||
.btn-outline:hover { border-color: var(--orange); color: var(--orange-light); }
|
.btn-outline:hover { border-color: var(--orange); color: var(--orange-light); }
|
||||||
|
|
||||||
.hero-stats {
|
.hero-stats {
|
||||||
display: flex; gap: 40px; margin-top: 45px;
|
display: flex; gap: clamp(18px, 5vw, 40px); margin-top: clamp(24px, 5vw, 45px);
|
||||||
padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1);
|
padding-top: clamp(16px, 3vw, 28px); border-top: 1px solid rgba(255,255,255,0.1);
|
||||||
}
|
}
|
||||||
.hero-stat { text-align: center; }
|
.hero-stat { text-align: center; }
|
||||||
.hero-stat-number {
|
.hero-stat-number {
|
||||||
font-family: 'Montserrat', sans-serif; font-weight: 900;
|
font-family: 'Montserrat', sans-serif; font-weight: 900;
|
||||||
font-size: 2.5rem; color: var(--orange-light); line-height: 1;
|
font-size: 2.5rem; color: var(--orange-light); line-height: 1;
|
||||||
}
|
}
|
||||||
.hero-stat-label { font-size: 13px; color: #95a5a6; margin-top: 6px; }
|
.hero-stat-label { font-size: clamp(11px, 1.5vw, 13px); color: #95a5a6; margin-top: clamp(4px, 0.8vw, 6px); }
|
||||||
|
|
||||||
/* ========== SECTIONS ========== */
|
/* ========== SECTIONS ========== */
|
||||||
.section { padding: 90px 0; }
|
.section { padding: clamp(55px, 10vw, 90px) 0; }
|
||||||
.section-alt { background: var(--bg-alt); }
|
.section-alt { background: var(--bg-alt); }
|
||||||
.section-white { background: var(--bg-white); }
|
.section-white { background: var(--bg-white); }
|
||||||
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 800; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.5px; }
|
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 800; margin-bottom: clamp(10px, 1.5vw, 14px); text-transform: uppercase; letter-spacing: 0.5px; }
|
||||||
.section-title span { color: var(--orange); }
|
.section-title span { color: var(--orange); }
|
||||||
.section-subtitle { font-size: 1.05rem; color: var(--text-gray); max-width: 700px; margin-bottom: 45px; line-height: 1.7; }
|
.section-subtitle { font-size: 1.05rem; color: var(--text-gray); max-width: clamp(300px, 85vw, 700px); margin-bottom: clamp(28px, 5vw, 45px); line-height: 1.7; }
|
||||||
.section-header { margin-bottom: 45px; }
|
.section-header { margin-bottom: clamp(28px, 5vw, 45px); }
|
||||||
.section-header.center { text-align: center; }
|
.section-header.center { text-align: center; }
|
||||||
.section-header.center .section-subtitle { margin-left: auto; margin-right: auto; }
|
.section-header.center .section-subtitle { margin-left: auto; margin-right: auto; }
|
||||||
|
|
||||||
/* ========== ABOUT ========== */
|
/* ========== ABOUT ========== */
|
||||||
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
|
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 6vw, 50px); align-items: center; }
|
||||||
.about-image { border-radius: 12px; overflow: hidden; position: relative; border: 3px solid var(--border); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
|
.about-image { border-radius: 12px; overflow: hidden; position: relative; border: 3px solid var(--border); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
|
||||||
.about-image img { width: 100%; height: 450px; object-fit: cover; }
|
.about-image img { width: 100%; height: clamp(250px, 50vw, 450px); object-fit: cover; }
|
||||||
.about-text h3 { font-size: 1.4rem; margin-bottom: 18px; color: var(--orange-dark); }
|
.about-text h3 { font-size: 1.4rem; margin-bottom: clamp(12px, 2vw, 18px); color: var(--orange-dark); }
|
||||||
.about-text p { color: var(--text-gray); margin-bottom: 14px; line-height: 1.8; font-size: 1.02rem; }
|
.about-text p { color: var(--text-gray); margin-bottom: clamp(10px, 1.5vw, 14px); line-height: 1.8; font-size: 1.02rem; }
|
||||||
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
|
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(10px, 1.8vw, 16px); margin-top: clamp(16px, 3vw, 28px); }
|
||||||
.about-feature {
|
.about-feature {
|
||||||
display: flex; align-items: flex-start; gap: 12px; padding: 16px;
|
display: flex; align-items: flex-start; gap: clamp(8px, 1.4vw, 12px); padding: clamp(10px, 1.8vw, 16px);
|
||||||
background: var(--bg-white); border-radius: 8px; border: 1px solid var(--border); transition: all 0.3s;
|
background: var(--bg-white); border-radius: 8px; border: 1px solid var(--border); transition: all 0.3s;
|
||||||
}
|
}
|
||||||
.about-feature:hover { border-color: var(--orange); box-shadow: 0 4px 15px rgba(230,126,34,0.1); }
|
.about-feature:hover { border-color: var(--orange); box-shadow: 0 4px 15px rgba(230,126,34,0.1); }
|
||||||
@@ -214,14 +214,14 @@ img { max-width: 100%; display: block; }
|
|||||||
border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
|
border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
|
||||||
}
|
}
|
||||||
.about-feature-icon svg { width: 20px; height: 20px; fill: var(--orange); }
|
.about-feature-icon svg { width: 20px; height: 20px; fill: var(--orange); }
|
||||||
.about-feature-text { font-size: 13px; color: var(--text-gray); line-height: 1.5; }
|
.about-feature-text { font-size: clamp(11px, 1.4vw, 13px); color: var(--text-gray); line-height: 1.5; }
|
||||||
.about-feature-text strong { display: block; color: var(--text-dark); font-family: 'Montserrat', sans-serif; font-weight: 700; margin-bottom: 3px; font-size: 13px; }
|
.about-feature-text strong { display: block; color: var(--text-dark); font-family: 'Montserrat', sans-serif; font-weight: 700; margin-bottom: 3px; font-size: clamp(11px, 1.4vw, 13px); }
|
||||||
|
|
||||||
/* ========== SERVICES ========== */
|
/* ========== SERVICES ========== */
|
||||||
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
|
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2.5vw, 22px); }
|
||||||
.service-card {
|
.service-card {
|
||||||
background: var(--bg-white); border: 1px solid var(--border);
|
background: var(--bg-white); border: 1px solid var(--border);
|
||||||
border-radius: 12px; padding: 32px 26px; transition: all 0.4s; position: relative; overflow: hidden;
|
border-radius: 12px; padding: clamp(20px, 3.5vw, 32px) clamp(16px, 2.8vw, 26px); transition: all 0.4s; position: relative; overflow: hidden;
|
||||||
}
|
}
|
||||||
.service-card::before {
|
.service-card::before {
|
||||||
content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
|
content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
|
||||||
@@ -230,14 +230,14 @@ img { max-width: 100%; display: block; }
|
|||||||
.service-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.1); border-color: var(--orange); }
|
.service-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.1); border-color: var(--orange); }
|
||||||
.service-card:hover::before { transform: scaleX(1); }
|
.service-card:hover::before { transform: scaleX(1); }
|
||||||
.service-card.large { grid-column: span 2; }
|
.service-card.large { grid-column: span 2; }
|
||||||
.service-icon { width: 52px; height: 52px; background: rgba(230,126,34,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
|
.service-icon { width: 52px; height: 52px; background: rgba(230,126,34,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: clamp(12px, 2vw, 18px); }
|
||||||
.service-icon svg { width: 26px; height: 26px; fill: var(--orange); }
|
.service-icon svg { width: 26px; height: 26px; fill: var(--orange); }
|
||||||
.service-card h3 { font-size: 1.15rem; margin-bottom: 12px; color: var(--text-dark); }
|
.service-card h3 { font-size: 1.15rem; margin-bottom: clamp(8px, 1.4vw, 12px); color: var(--text-dark); }
|
||||||
.service-card p { color: var(--text-gray); font-size: 0.95rem; line-height: 1.7; margin-bottom: 10px; }
|
.service-card p { color: var(--text-gray); font-size: 0.95rem; line-height: 1.7; margin-bottom: clamp(6px, 1.2vw, 10px); }
|
||||||
.service-list { list-style: none; padding: 0; }
|
.service-list { list-style: none; padding: 0; }
|
||||||
.service-list li {
|
.service-list li {
|
||||||
position: relative; padding-left: 20px; color: var(--text-gray);
|
position: relative; padding-left: 20px; color: var(--text-gray);
|
||||||
font-size: 0.93rem; line-height: 1.6; margin-bottom: 5px;
|
font-size: 0.93rem; line-height: 1.6; margin-bottom: clamp(3px, 0.6vw, 5px);
|
||||||
}
|
}
|
||||||
.service-list li::before {
|
.service-list li::before {
|
||||||
content: ''; position: absolute; left: 0; top: 9px;
|
content: ''; position: absolute; left: 0; top: 9px;
|
||||||
@@ -250,10 +250,10 @@ img { max-width: 100%; display: block; }
|
|||||||
content: ''; position: absolute; left: 40px; top: 0; bottom: 0; width: 3px;
|
content: ''; position: absolute; left: 40px; top: 0; bottom: 0; width: 3px;
|
||||||
background: linear-gradient(to bottom, var(--orange), rgba(230,126,34,0.15));
|
background: linear-gradient(to bottom, var(--orange), rgba(230,126,34,0.15));
|
||||||
}
|
}
|
||||||
.process-step { display: flex; gap: 28px; margin-bottom: 36px; position: relative; }
|
.process-step { display: flex; gap: clamp(16px, 3vw, 28px); margin-bottom: clamp(20px, 4vw, 36px); position: relative; }
|
||||||
.process-step:last-child { margin-bottom: 0; }
|
.process-step:last-child { margin-bottom: 0; }
|
||||||
.process-number {
|
.process-number {
|
||||||
width: 78px; height: 78px;
|
width: clamp(50px, 8vw, 78px); height: clamp(50px, 8vw, 78px);
|
||||||
background: linear-gradient(135deg, var(--orange), var(--orange-dark));
|
background: linear-gradient(135deg, var(--orange), var(--orange-dark));
|
||||||
border-radius: 50%; display: flex; align-items: center; justify-content: center;
|
border-radius: 50%; display: flex; align-items: center; justify-content: center;
|
||||||
font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.7rem;
|
font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.7rem;
|
||||||
@@ -262,37 +262,37 @@ img { max-width: 100%; display: block; }
|
|||||||
}
|
}
|
||||||
.process-content {
|
.process-content {
|
||||||
background: var(--bg-white); border: 1px solid var(--border);
|
background: var(--bg-white); border: 1px solid var(--border);
|
||||||
border-radius: 12px; padding: 26px 30px; flex: 1;
|
border-radius: 12px; padding: clamp(16px, 2.8vw, 26px) clamp(18px, 3vw, 30px); flex: 1;
|
||||||
box-shadow: 0 4px 15px rgba(0,0,0,0.05);
|
box-shadow: 0 4px 15px rgba(0,0,0,0.05);
|
||||||
}
|
}
|
||||||
.process-content h3 { font-size: 1.15rem; margin-bottom: 8px; color: var(--orange-dark); }
|
.process-content h3 { font-size: 1.15rem; margin-bottom: clamp(5px, 1vw, 8px); color: var(--orange-dark); }
|
||||||
.process-content p { color: var(--text-gray); line-height: 1.7; }
|
.process-content p { color: var(--text-gray); line-height: 1.7; }
|
||||||
|
|
||||||
/* ========== EQUIPMENT ========== */
|
/* ========== EQUIPMENT ========== */
|
||||||
.equipment-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
|
.equipment-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(14px, 2.5vw, 22px); }
|
||||||
.equipment-card {
|
.equipment-card {
|
||||||
background: var(--bg-white); border: 1px solid var(--border);
|
background: var(--bg-white); border: 1px solid var(--border);
|
||||||
border-radius: 12px; overflow: hidden; transition: all 0.4s;
|
border-radius: 12px; overflow: hidden; transition: all 0.4s;
|
||||||
}
|
}
|
||||||
.equipment-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.1); border-color: var(--orange); }
|
.equipment-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.1); border-color: var(--orange); }
|
||||||
.equipment-card-image { height: 220px; overflow: hidden; position: relative; }
|
.equipment-card-image { height: clamp(160px, 25vw, 220px); overflow: hidden; position: relative; }
|
||||||
.equipment-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
|
.equipment-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
|
||||||
.equipment-card:hover .equipment-card-image img { transform: scale(1.05); }
|
.equipment-card:hover .equipment-card-image img { transform: scale(1.05); }
|
||||||
.equipment-card-image .equip-overlay {
|
.equipment-card-image .equip-overlay {
|
||||||
position: absolute; bottom: 0; left: 0; right: 0; padding: 10px 16px;
|
position: absolute; bottom: 0; left: 0; right: 0; padding: clamp(6px, 1.2vw, 10px) clamp(10px, 1.8vw, 16px);
|
||||||
background: linear-gradient(transparent, rgba(0,0,0,0.7));
|
background: linear-gradient(transparent, rgba(0,0,0,0.7));
|
||||||
}
|
}
|
||||||
.equipment-card-image .equip-overlay .brand {
|
.equipment-card-image .equip-overlay .brand {
|
||||||
color: var(--orange-light); font-family: 'Montserrat', sans-serif;
|
color: var(--orange-light); font-family: 'Montserrat', sans-serif;
|
||||||
font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px;
|
font-weight: 700; font-size: clamp(10px, 1.2vw, 12px); text-transform: uppercase; letter-spacing: 1.5px;
|
||||||
}
|
}
|
||||||
.equipment-card-body { padding: 22px; }
|
.equipment-card-body { padding: clamp(14px, 2.5vw, 22px); }
|
||||||
.equipment-card-body h3 { font-size: 1.05rem; margin-bottom: 14px; color: var(--text-dark); }
|
.equipment-card-body h3 { font-size: 1.05rem; margin-bottom: clamp(10px, 1.5vw, 14px); color: var(--text-dark); }
|
||||||
.equipment-age-badge {
|
.equipment-age-badge {
|
||||||
display: inline-flex; align-items: center; gap: 6px;
|
display: inline-flex; align-items: center; gap: clamp(4px, 0.8vw, 6px);
|
||||||
background: rgba(39,174,96,0.1); border: 1px solid rgba(39,174,96,0.3);
|
background: rgba(39,174,96,0.1); border: 1px solid rgba(39,174,96,0.3);
|
||||||
border-radius: 50px; padding: 4px 12px; margin-bottom: 12px;
|
border-radius: 50px; padding: clamp(3px, 0.5vw, 4px) clamp(8px, 1.4vw, 12px); margin-bottom: clamp(8px, 1.4vw, 12px);
|
||||||
font-size: 12px; font-weight: 700; color: #27AE60;
|
font-size: clamp(10px, 1.2vw, 12px); font-weight: 700; color: #27AE60;
|
||||||
font-family: 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: 0.5px;
|
font-family: 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: 0.5px;
|
||||||
}
|
}
|
||||||
.equipment-age-badge::before {
|
.equipment-age-badge::before {
|
||||||
@@ -302,44 +302,44 @@ img { max-width: 100%; display: block; }
|
|||||||
border-radius: 50%; font-size: 10px;
|
border-radius: 50%; font-size: 10px;
|
||||||
}
|
}
|
||||||
.equipment-qty {
|
.equipment-qty {
|
||||||
font-size: 14px; font-weight: 700; color: var(--orange);
|
font-size: clamp(12px, 1.5vw, 14px); font-weight: 700; color: var(--orange);
|
||||||
margin-bottom: 8px; font-family: 'Montserrat', sans-serif;
|
margin-bottom: clamp(5px, 1vw, 8px); font-family: 'Montserrat', sans-serif;
|
||||||
}
|
}
|
||||||
.equipment-specs { display: flex; flex-direction: column; gap: 6px; }
|
.equipment-specs { display: flex; flex-direction: column; gap: clamp(4px, 0.8vw, 6px); }
|
||||||
.equipment-spec {
|
.equipment-spec {
|
||||||
display: flex; justify-content: space-between; padding: 6px 0;
|
display: flex; justify-content: space-between; padding: clamp(4px, 0.8vw, 6px) 0;
|
||||||
border-bottom: 1px solid var(--border); font-size: 0.88rem;
|
border-bottom: 1px solid var(--border); font-size: 0.88rem;
|
||||||
}
|
}
|
||||||
.equipment-spec-label { color: var(--text-gray); }
|
.equipment-spec-label { color: var(--text-gray); }
|
||||||
.equipment-spec-value { color: var(--text-dark); font-weight: 600; }
|
.equipment-spec-value { color: var(--text-dark); font-weight: 600; }
|
||||||
|
|
||||||
/* ========== GEOGRAPHY ========== */
|
/* ========== GEOGRAPHY ========== */
|
||||||
.geo-content { display: grid; grid-template-columns: 1fr 1fr; gap: 45px; align-items: center; }
|
.geo-content { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 45px); align-items: center; }
|
||||||
.geo-regions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
|
.geo-regions { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(8px, 1.4vw, 12px); }
|
||||||
.geo-region {
|
.geo-region {
|
||||||
display: flex; align-items: center; gap: 10px; padding: 14px 16px;
|
display: flex; align-items: center; gap: clamp(6px, 1.2vw, 10px); padding: clamp(10px, 1.5vw, 14px) clamp(10px, 1.8vw, 16px);
|
||||||
background: var(--bg-white); border-radius: 8px; border: 1px solid var(--border); transition: all 0.3s;
|
background: var(--bg-white); border-radius: 8px; border: 1px solid var(--border); transition: all 0.3s;
|
||||||
}
|
}
|
||||||
.geo-region:hover { background: rgba(230,126,34,0.08); border-color: var(--orange); }
|
.geo-region:hover { background: rgba(230,126,34,0.08); border-color: var(--orange); }
|
||||||
.geo-region svg { width: 18px; height: 18px; fill: var(--orange); flex-shrink: 0; }
|
.geo-region svg { width: 18px; height: 18px; fill: var(--orange); flex-shrink: 0; }
|
||||||
.geo-region span { font-size: 0.95rem; color: var(--text-gray); }
|
.geo-region span { font-size: 0.95rem; color: var(--text-gray); }
|
||||||
.geo-hard {
|
.geo-hard {
|
||||||
margin-top: 28px; padding: 22px;
|
margin-top: clamp(16px, 3vw, 28px); padding: clamp(14px, 2.5vw, 22px);
|
||||||
background: rgba(230,126,34,0.06); border: 1px solid rgba(230,126,34,0.25);
|
background: rgba(230,126,34,0.06); border: 1px solid rgba(230,126,34,0.25);
|
||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
}
|
}
|
||||||
.geo-hard h4 { font-size: 1rem; color: var(--orange-dark); margin-bottom: 10px; }
|
.geo-hard h4 { font-size: 1rem; color: var(--orange-dark); margin-bottom: clamp(6px, 1.2vw, 10px); }
|
||||||
.geo-hard p { color: var(--text-gray); line-height: 1.7; font-size: 0.95rem; }
|
.geo-hard p { color: var(--text-gray); line-height: 1.7; font-size: 0.95rem; }
|
||||||
.geo-map {
|
.geo-map {
|
||||||
border-radius: 12px; overflow: hidden; height: 380px;
|
border-radius: 12px; overflow: hidden; height: clamp(240px, 45vw, 380px);
|
||||||
border: 2px solid var(--border); box-shadow: 0 8px 25px rgba(0,0,0,0.08);
|
border: 2px solid var(--border); box-shadow: 0 8px 25px rgba(0,0,0,0.08);
|
||||||
}
|
}
|
||||||
.geo-map img { width: 100%; height: 100%; object-fit: cover; }
|
.geo-map img { width: 100%; height: 100%; object-fit: cover; }
|
||||||
|
|
||||||
/* ========== LICENSES ========== */
|
/* ========== LICENSES ========== */
|
||||||
.licenses-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }
|
.licenses-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(12px, 2vw, 18px); }
|
||||||
.license-card {
|
.license-card {
|
||||||
display: flex; align-items: flex-start; gap: 16px; padding: 22px;
|
display: flex; align-items: flex-start; gap: clamp(10px, 1.8vw, 16px); padding: clamp(14px, 2.5vw, 22px);
|
||||||
background: var(--bg-white); border: 1px solid var(--border); border-radius: 12px; transition: all 0.3s;
|
background: var(--bg-white); border: 1px solid var(--border); border-radius: 12px; transition: all 0.3s;
|
||||||
}
|
}
|
||||||
.license-card:hover { border-color: var(--orange); box-shadow: 0 6px 20px rgba(0,0,0,0.06); }
|
.license-card:hover { border-color: var(--orange); box-shadow: 0 6px 20px rgba(0,0,0,0.06); }
|
||||||
@@ -348,17 +348,17 @@ img { max-width: 100%; display: block; }
|
|||||||
border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
|
border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
|
||||||
}
|
}
|
||||||
.license-icon svg { width: 22px; height: 22px; fill: var(--orange); }
|
.license-icon svg { width: 22px; height: 22px; fill: var(--orange); }
|
||||||
.license-card h4 { font-size: 0.95rem; margin-bottom: 5px; color: var(--text-dark); }
|
.license-card h4 { font-size: 0.95rem; margin-bottom: clamp(3px, 0.6vw, 5px); color: var(--text-dark); }
|
||||||
.license-card p { font-size: 0.88rem; color: var(--text-gray); line-height: 1.5; }
|
.license-card p { font-size: 0.88rem; color: var(--text-gray); line-height: 1.5; }
|
||||||
|
|
||||||
/* ========== LICENSE GALLERY ========== */
|
/* ========== LICENSE GALLERY ========== */
|
||||||
.license-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 20px; }
|
.license-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(14px, 2.5vw, 24px); margin-top: clamp(12px, 2vw, 20px); }
|
||||||
.license-gallery-item {
|
.license-gallery-item {
|
||||||
background: var(--bg-white); border: 1px solid var(--border);
|
background: var(--bg-white); border: 1px solid var(--border);
|
||||||
border-radius: 12px; overflow: hidden; transition: all 0.3s; cursor: pointer;
|
border-radius: 12px; overflow: hidden; transition: all 0.3s; cursor: pointer;
|
||||||
}
|
}
|
||||||
.license-gallery-item:hover { border-color: var(--orange); box-shadow: 0 8px 25px rgba(0,0,0,0.1); transform: translateY(-3px); }
|
.license-gallery-item:hover { border-color: var(--orange); box-shadow: 0 8px 25px rgba(0,0,0,0.1); transform: translateY(-3px); }
|
||||||
.license-gallery-thumb { height: 200px; overflow: hidden; position: relative; }
|
.license-gallery-thumb { height: clamp(140px, 22vw, 200px); overflow: hidden; position: relative; }
|
||||||
.license-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
|
.license-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
|
||||||
.license-gallery-item:hover .license-gallery-thumb img { transform: scale(1.05); }
|
.license-gallery-item:hover .license-gallery-thumb img { transform: scale(1.05); }
|
||||||
.license-gallery-thumb::after {
|
.license-gallery-thumb::after {
|
||||||
@@ -368,13 +368,13 @@ img { max-width: 100%; display: block; }
|
|||||||
.license-gallery-item:hover .license-gallery-thumb::after { background: rgba(0,0,0,0.25); }
|
.license-gallery-item:hover .license-gallery-thumb::after { background: rgba(0,0,0,0.25); }
|
||||||
.license-gallery-zoom {
|
.license-gallery-zoom {
|
||||||
position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
|
position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
|
||||||
width: 44px; height: 44px; background: rgba(230,126,34,0.9); border-radius: 50%;
|
width: clamp(34px, 5vw, 44px); height: clamp(34px, 5vw, 44px); background: rgba(230,126,34,0.9); border-radius: 50%;
|
||||||
display: flex; align-items: center; justify-content: center;
|
display: flex; align-items: center; justify-content: center;
|
||||||
opacity: 0; transition: opacity 0.3s; z-index: 2;
|
opacity: 0; transition: opacity 0.3s; z-index: 2;
|
||||||
}
|
}
|
||||||
.license-gallery-zoom svg { width: 20px; height: 20px; fill: #fff; }
|
.license-gallery-zoom svg { width: 20px; height: 20px; fill: #fff; }
|
||||||
.license-gallery-item:hover .license-gallery-zoom { opacity: 1; }
|
.license-gallery-item:hover .license-gallery-zoom { opacity: 1; }
|
||||||
.license-gallery-body { padding: 16px 18px; }
|
.license-gallery-body { padding: clamp(10px, 1.8vw, 16px) clamp(12px, 2vw, 18px); }
|
||||||
.license-gallery-body h4 { font-size: 0.95rem; margin-bottom: 5px; color: var(--text-dark); }
|
.license-gallery-body h4 { font-size: 0.95rem; margin-bottom: 5px; color: var(--text-dark); }
|
||||||
.license-gallery-body p { font-size: 0.85rem; color: var(--text-gray); line-height: 1.5; }
|
.license-gallery-body p { font-size: 0.85rem; color: var(--text-gray); line-height: 1.5; }
|
||||||
|
|
||||||
@@ -383,7 +383,7 @@ img { max-width: 100%; display: block; }
|
|||||||
position: fixed; inset: 0; background: rgba(0,0,0,0.92);
|
position: fixed; inset: 0; background: rgba(0,0,0,0.92);
|
||||||
z-index: 10000; display: flex; align-items: center; justify-content: center;
|
z-index: 10000; display: flex; align-items: center; justify-content: center;
|
||||||
opacity: 0; visibility: hidden; transition: all 0.3s; cursor: pointer;
|
opacity: 0; visibility: hidden; transition: all 0.3s; cursor: pointer;
|
||||||
padding: 20px;
|
padding: clamp(12px, 2vw, 20px);
|
||||||
}
|
}
|
||||||
.lightbox-overlay.open { opacity: 1; visibility: visible; }
|
.lightbox-overlay.open { opacity: 1; visibility: visible; }
|
||||||
.lightbox-content {
|
.lightbox-content {
|
||||||
@@ -396,7 +396,7 @@ img { max-width: 100%; display: block; }
|
|||||||
border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.5);
|
border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.5);
|
||||||
}
|
}
|
||||||
.lightbox-caption {
|
.lightbox-caption {
|
||||||
text-align: center; margin-top: 14px; color: rgba(255,255,255,0.8);
|
text-align: center; margin-top: clamp(8px, 1.5vw, 14px); color: rgba(255,255,255,0.8);
|
||||||
font-family: 'Montserrat', sans-serif; font-size: 0.9rem;
|
font-family: 'Montserrat', sans-serif; font-size: 0.9rem;
|
||||||
}
|
}
|
||||||
.lightbox-close {
|
.lightbox-close {
|
||||||
@@ -410,15 +410,15 @@ img { max-width: 100%; display: block; }
|
|||||||
.lightbox-close svg { width: 16px; height: 16px; fill: #fff; }
|
.lightbox-close svg { width: 16px; height: 16px; fill: #fff; }
|
||||||
.lightbox-info {
|
.lightbox-info {
|
||||||
background: rgba(255,255,255,0.05); border-radius: 8px;
|
background: rgba(255,255,255,0.05); border-radius: 8px;
|
||||||
padding: 14px 18px; margin-top: 10px; max-width: 700px;
|
padding: clamp(10px, 1.5vw, 14px) clamp(12px, 2vw, 18px); margin-top: clamp(6px, 1.2vw, 10px); max-width: min(700px, 90vw);
|
||||||
}
|
}
|
||||||
.lightbox-info h4 { font-size: 1rem; margin-bottom: 4px; color: #fff; }
|
.lightbox-info h4 { font-size: 1rem; margin-bottom: 4px; color: #fff; }
|
||||||
.lightbox-info p { font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.5; }
|
.lightbox-info p { font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.5; }
|
||||||
|
|
||||||
/* ========== CONTACTS ========== */
|
/* ========== CONTACTS ========== */
|
||||||
.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 45px; }
|
.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 45px); }
|
||||||
.contact-info-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
|
.contact-info-list { display: flex; flex-direction: column; gap: clamp(12px, 2vw, 18px); margin-bottom: clamp(16px, 3vw, 28px); }
|
||||||
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; }
|
.contact-info-item { display: flex; align-items: flex-start; gap: clamp(8px, 1.5vw, 14px); }
|
||||||
.contact-info-icon {
|
.contact-info-icon {
|
||||||
width: 46px; height: 46px; background: rgba(230,126,34,0.1);
|
width: 46px; height: 46px; background: rgba(230,126,34,0.1);
|
||||||
border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
|
border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
|
||||||
@@ -427,22 +427,22 @@ img { max-width: 100%; display: block; }
|
|||||||
.contact-info-item h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--orange); margin-bottom: 3px; font-weight: 700; }
|
.contact-info-item h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--orange); margin-bottom: 3px; font-weight: 700; }
|
||||||
.contact-info-item p, .contact-info-item a { color: var(--text-gray); font-size: 1rem; line-height: 1.5; }
|
.contact-info-item p, .contact-info-item a { color: var(--text-gray); font-size: 1rem; line-height: 1.5; }
|
||||||
.contact-info-item a:hover { color: var(--orange); }
|
.contact-info-item a:hover { color: var(--orange); }
|
||||||
.contact-map { border-radius: 12px; overflow: hidden; height: 220px; border: 2px solid var(--border); }
|
.contact-map { border-radius: 12px; overflow: hidden; height: clamp(160px, 25vw, 220px); border: 2px solid var(--border); }
|
||||||
.contact-map img { width: 100%; height: 100%; object-fit: cover; }
|
.contact-map img { width: 100%; height: 100%; object-fit: cover; }
|
||||||
.contact-form {
|
.contact-form {
|
||||||
background: var(--bg-white); border: 1px solid var(--border);
|
background: var(--bg-white); border: 1px solid var(--border);
|
||||||
border-radius: 16px; padding: 34px; box-shadow: 0 8px 25px rgba(0,0,0,0.06);
|
border-radius: 16px; padding: clamp(18px, 3.5vw, 34px); box-shadow: 0 8px 25px rgba(0,0,0,0.06);
|
||||||
}
|
}
|
||||||
.contact-form h3 { font-size: 1.3rem; margin-bottom: 6px; color: var(--text-dark); }
|
.contact-form h3 { font-size: 1.3rem; margin-bottom: clamp(4px, 0.8vw, 6px); color: var(--text-dark); }
|
||||||
.contact-form .form-subtitle { color: var(--text-gray); font-size: 0.93rem; margin-bottom: 22px; }
|
.contact-form .form-subtitle { color: var(--text-gray); font-size: 0.93rem; margin-bottom: clamp(14px, 2.5vw, 22px); }
|
||||||
.form-group { margin-bottom: 16px; }
|
.form-group { margin-bottom: clamp(10px, 1.8vw, 16px); }
|
||||||
.form-group label {
|
.form-group label {
|
||||||
display: block; font-family: 'Montserrat', sans-serif; font-weight: 700;
|
display: block; font-family: 'Montserrat', sans-serif; font-weight: 700;
|
||||||
font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.8px;
|
font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.8px;
|
||||||
color: var(--text-gray); margin-bottom: 7px;
|
color: var(--text-gray); margin-bottom: clamp(4px, 0.8vw, 7px);
|
||||||
}
|
}
|
||||||
.form-group input, .form-group textarea {
|
.form-group input, .form-group textarea {
|
||||||
width: 100%; padding: 13px 16px; background: var(--bg-light);
|
width: 100%; padding: clamp(10px, 1.5vw, 13px) clamp(12px, 1.8vw, 16px); background: var(--bg-light);
|
||||||
border: 1px solid var(--border); border-radius: 8px; color: var(--text-dark);
|
border: 1px solid var(--border); border-radius: 8px; color: var(--text-dark);
|
||||||
font-family: 'Roboto Condensed', sans-serif; font-size: 1rem;
|
font-family: 'Roboto Condensed', sans-serif; font-size: 1rem;
|
||||||
transition: all 0.3s; outline: none;
|
transition: all 0.3s; outline: none;
|
||||||
@@ -454,24 +454,24 @@ img { max-width: 100%; display: block; }
|
|||||||
.cookie-banner {
|
.cookie-banner {
|
||||||
position: fixed; bottom: 0; left: 0; right: 0; z-index: 10000;
|
position: fixed; bottom: 0; left: 0; right: 0; z-index: 10000;
|
||||||
background: rgba(26,42,58,0.97); border-top: 2px solid var(--orange);
|
background: rgba(26,42,58,0.97); border-top: 2px solid var(--orange);
|
||||||
padding: 14px 20px; display: flex; align-items: center; justify-content: center;
|
padding: clamp(8px, 2vw, 14px) clamp(12px, 3vw, 20px); display: flex; align-items: center; justify-content: center;
|
||||||
gap: 18px; flex-wrap: wrap; padding-bottom: calc(14px + env(safe-area-inset-bottom));
|
gap: clamp(10px, 2vw, 18px); flex-wrap: wrap; padding-bottom: calc(clamp(8px, 2vw, 14px) + env(safe-area-inset-bottom));
|
||||||
visibility: visible; opacity: 1;
|
visibility: visible; opacity: 1;
|
||||||
}
|
}
|
||||||
.cookie-banner p { color: #bdc3c7; font-size: 0.88rem; line-height: 1.5; margin: 0; max-width: 750px; }
|
.cookie-banner p { color: #bdc3c7; font-size: clamp(0.78rem, 1.4vw, 0.88rem); line-height: 1.5; margin: 0; max-width: 100%; }
|
||||||
.cookie-banner a { color: var(--orange-light); text-decoration: underline; }
|
.cookie-banner a { color: var(--orange-light); text-decoration: underline; }
|
||||||
.cookie-banner a:hover { color: var(--orange); }
|
.cookie-banner a:hover { color: var(--orange); }
|
||||||
.cookie-banner-btn {
|
.cookie-banner-btn {
|
||||||
background: linear-gradient(135deg, var(--orange), var(--orange-dark));
|
background: linear-gradient(135deg, var(--orange), var(--orange-dark));
|
||||||
color: #fff; border: none; border-radius: 4px; padding: 10px 24px;
|
color: #fff; border: none; border-radius: 4px; padding: clamp(8px, 1.5vw, 10px) clamp(16px, 3vw, 24px);
|
||||||
font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px;
|
font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: clamp(12px, 1.8vw, 13px);
|
||||||
text-transform: uppercase; letter-spacing: 1px; cursor: pointer;
|
text-transform: uppercase; letter-spacing: 1px; cursor: pointer;
|
||||||
white-space: nowrap; transition: all 0.3s; touch-action: manipulation;
|
white-space: nowrap; transition: all 0.3s; touch-action: manipulation;
|
||||||
}
|
}
|
||||||
.cookie-banner-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(230,126,34,0.3); }
|
.cookie-banner-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(230,126,34,0.3); }
|
||||||
@media (max-width: 480px) { .cookie-banner { flex-direction: column; text-align: center; padding: 14px 16px calc(14px + env(safe-area-inset-bottom)); } }
|
@media (max-width: 480px) { .cookie-banner { flex-direction: column; text-align: center; padding: clamp(10px, 4vw, 14px) clamp(12px, 4vw, 16px) calc(clamp(10px, 4vw, 14px) + env(safe-area-inset-bottom)); } }
|
||||||
.form-note { font-size: 0.78rem; color: var(--text-light); margin-top: 10px; }
|
.form-note { font-size: 0.78rem; color: var(--text-light); margin-top: clamp(6px, 1.2vw, 10px); }
|
||||||
.form-consent-label { display: flex; align-items: flex-start; gap: 10px; font-size: 0.83rem; color: var(--text-gray); cursor: pointer; line-height: 1.5; }
|
.form-consent-label { display: flex; align-items: flex-start; gap: clamp(6px, 1.2vw, 10px); font-size: 0.83rem; color: var(--text-gray); cursor: pointer; line-height: 1.5; }
|
||||||
.form-consent-label input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; accent-color: var(--orange); cursor: pointer; }
|
.form-consent-label input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; accent-color: var(--orange); cursor: pointer; }
|
||||||
.form-consent-label a { color: var(--orange); text-decoration: underline; }
|
.form-consent-label a { color: var(--orange); text-decoration: underline; }
|
||||||
.form-consent-label a:hover { color: var(--orange-dark); }
|
.form-consent-label a:hover { color: var(--orange-dark); }
|
||||||
@@ -479,11 +479,11 @@ img { max-width: 100%; display: block; }
|
|||||||
|
|
||||||
/* ========== FOOTER ========== */
|
/* ========== FOOTER ========== */
|
||||||
.footer { background: #0a0a0a; }
|
.footer { background: #0a0a0a; }
|
||||||
.footer-content { padding: 30px 20px; text-align: center; }
|
.footer-content { padding: clamp(20px, 3.5vw, 30px) clamp(12px, 2vw, 20px); text-align: center; }
|
||||||
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
|
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: clamp(12px, 2.5vw, 20px); }
|
||||||
.footer-copy { color: rgba(255,255,255,0.5); font-size: 0.88rem; }
|
.footer-copy { color: rgba(255,255,255,0.5); font-size: 0.88rem; }
|
||||||
.footer-links { display: flex; gap: 22px; }
|
.footer-links { display: flex; gap: clamp(12px, 2.5vw, 22px); flex-wrap: wrap; justify-content: center; }
|
||||||
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.88rem; transition: color 0.3s; }
|
.footer-links a { color: rgba(255,255,255,0.5); font-size: clamp(0.78rem, 1vw, 0.88rem); transition: color 0.3s; }
|
||||||
.footer-links a:hover { color: var(--orange-light); }
|
.footer-links a:hover { color: var(--orange-light); }
|
||||||
|
|
||||||
/* ========== SCROLL ANIMATIONS ========== */
|
/* ========== SCROLL ANIMATIONS ========== */
|
||||||
@@ -495,7 +495,7 @@ img { max-width: 100%; display: block; }
|
|||||||
.reveal-right.visible { opacity: 1; transform: translateX(0); }
|
.reveal-right.visible { opacity: 1; transform: translateX(0); }
|
||||||
|
|
||||||
.scroll-top {
|
.scroll-top {
|
||||||
position: fixed; bottom: calc(28px + env(safe-area-inset-bottom)); right: 28px; width: 48px; height: 48px;
|
position: fixed; bottom: calc(clamp(18px, 3vw, 28px) + env(safe-area-inset-bottom)); right: clamp(18px, 3vw, 28px); width: clamp(40px, 5.5vw, 48px); height: clamp(40px, 5.5vw, 48px);
|
||||||
background: linear-gradient(135deg, var(--orange), var(--orange-dark));
|
background: linear-gradient(135deg, var(--orange), var(--orange-dark));
|
||||||
border-radius: 50%; display: flex; align-items: center; justify-content: center;
|
border-radius: 50%; display: flex; align-items: center; justify-content: center;
|
||||||
cursor: pointer; opacity: 0; visibility: hidden; transition: all 0.3s;
|
cursor: pointer; opacity: 0; visibility: hidden; transition: all 0.3s;
|
||||||
@@ -506,7 +506,7 @@ img { max-width: 100%; display: block; }
|
|||||||
.scroll-top:hover { transform: translateY(-3px); }
|
.scroll-top:hover { transform: translateY(-3px); }
|
||||||
.scroll-top svg { width: 20px; height: 20px; fill: #fff; }
|
.scroll-top svg { width: 20px; height: 20px; fill: #fff; }
|
||||||
|
|
||||||
.form-success { display: none; text-align: center; padding: 40px 20px; }
|
.form-success { display: none; text-align: center; padding: clamp(24px, 4vw, 40px) clamp(14px, 2vw, 20px); }
|
||||||
.form-success.show { display: block; }
|
.form-success.show { display: block; }
|
||||||
.form-success svg { width: 60px; height: 60px; fill: #27AE60; margin-bottom: 14px; }
|
.form-success svg { width: 60px; height: 60px; fill: #27AE60; margin-bottom: 14px; }
|
||||||
.form-success h4 { font-size: 1.2rem; margin-bottom: 6px; }
|
.form-success h4 { font-size: 1.2rem; margin-bottom: 6px; }
|
||||||
@@ -516,33 +516,33 @@ img { max-width: 100%; display: block; }
|
|||||||
@media (max-width: 1024px) {
|
@media (max-width: 1024px) {
|
||||||
.nav, .header-phone { display: none; }
|
.nav, .header-phone { display: none; }
|
||||||
.burger { display: flex; }
|
.burger { display: flex; }
|
||||||
.about-grid { grid-template-columns: 1fr; gap: 28px; }
|
.about-grid { grid-template-columns: 1fr; gap: clamp(18px, 3vw, 28px); }
|
||||||
.about-image img { height: 320px; }
|
.about-image img { height: clamp(220px, 35vw, 320px); }
|
||||||
.services-grid { grid-template-columns: 1fr 1fr; }
|
.services-grid { grid-template-columns: 1fr 1fr; }
|
||||||
.service-card.large { grid-column: span 2; }
|
.service-card.large { grid-column: span 2; }
|
||||||
.geo-content { grid-template-columns: 1fr; }
|
.geo-content { grid-template-columns: 1fr; }
|
||||||
.contacts-grid { grid-template-columns: 1fr; }
|
.contacts-grid { grid-template-columns: 1fr; }
|
||||||
}
|
}
|
||||||
@media (max-width: 768px) {
|
@media (max-width: 768px) {
|
||||||
.section { padding: 65px 0; }
|
.section { padding: clamp(45px, 8vw, 65px) 0; }
|
||||||
.hero-content { padding: 28px 0; }
|
.hero-content { padding: clamp(18px, 3vw, 28px) 0; }
|
||||||
.hero-stats { gap: 18px; flex-wrap: wrap; }
|
.hero-stats { gap: clamp(12px, 2vw, 18px); flex-wrap: wrap; }
|
||||||
.hero-stat-number { font-size: 1.8rem; }
|
.hero-stat-number { font-size: 1.8rem; }
|
||||||
.hero-contacts { flex-direction: column; gap: 12px; }
|
.hero-contacts { flex-direction: column; gap: clamp(8px, 2vw, 12px); }
|
||||||
.services-grid { grid-template-columns: 1fr; }
|
.services-grid { grid-template-columns: 1fr; }
|
||||||
.service-card.large { grid-column: span 1; }
|
.service-card.large { grid-column: span 1; }
|
||||||
.about-features { grid-template-columns: 1fr; }
|
.about-features { grid-template-columns: 1fr; }
|
||||||
.geo-regions { grid-template-columns: 1fr; }
|
.geo-regions { grid-template-columns: 1fr; }
|
||||||
.equipment-grid { grid-template-columns: 1fr; }
|
.equipment-grid { grid-template-columns: 1fr; }
|
||||||
.licenses-grid { grid-template-columns: 1fr; }
|
.licenses-grid { grid-template-columns: 1fr; }
|
||||||
.process-timeline::before { left: 20px; }
|
.process-timeline::before { left: clamp(14px, 2.5vw, 20px); }
|
||||||
.process-number { width: 40px; height: 40px; font-size: 1rem; }
|
.process-number { width: clamp(34px, 5vw, 40px); height: clamp(34px, 5vw, 40px); font-size: 1rem; }
|
||||||
.process-step { gap: 14px; }
|
.process-step { gap: clamp(10px, 1.8vw, 14px); }
|
||||||
.process-content { padding: 18px; }
|
.process-content { padding: clamp(12px, 2vw, 18px); }
|
||||||
.contact-form { padding: 22px; }
|
.contact-form { padding: clamp(14px, 2.5vw, 22px); }
|
||||||
.footer-inner { flex-direction: column; text-align: center; }
|
.footer-inner { flex-direction: column; text-align: center; }
|
||||||
.partners-track { gap: 30px; animation-duration: 30s; }
|
.partners-track { gap: clamp(18px, 3vw, 30px); animation-duration: 30s; }
|
||||||
.partners-track img { height: 60px; }
|
.partners-track img { height: clamp(40px, 8vw, 60px); }
|
||||||
}
|
}
|
||||||
@media (max-width: 480px) {
|
@media (max-width: 480px) {
|
||||||
.hero-buttons { flex-direction: column; }
|
.hero-buttons { flex-direction: column; }
|
||||||
@@ -552,14 +552,14 @@ img { max-width: 100%; display: block; }
|
|||||||
.activity-cards {
|
.activity-cards {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
|
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
|
||||||
gap: 20px;
|
gap: clamp(12px, 2vw, 20px);
|
||||||
margin-top: 40px;
|
margin-top: clamp(24px, 4.5vw, 40px);
|
||||||
}
|
}
|
||||||
.activity-card {
|
.activity-card {
|
||||||
background: var(--bg-white);
|
background: var(--bg-white);
|
||||||
border: 1px solid var(--border);
|
border: 1px solid var(--border);
|
||||||
border-radius: 14px;
|
border-radius: 14px;
|
||||||
padding: 30px 24px;
|
padding: clamp(18px, 3vw, 30px) clamp(14px, 2.5vw, 24px);
|
||||||
transition: all 0.4s;
|
transition: all 0.4s;
|
||||||
position: relative;
|
position: relative;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
@@ -584,7 +584,7 @@ img { max-width: 100%; display: block; }
|
|||||||
background: linear-gradient(135deg, rgba(230,126,34,0.12), rgba(230,126,34,0.06));
|
background: linear-gradient(135deg, rgba(230,126,34,0.12), rgba(230,126,34,0.06));
|
||||||
border-radius: 14px;
|
border-radius: 14px;
|
||||||
display: flex; align-items: center; justify-content: center;
|
display: flex; align-items: center; justify-content: center;
|
||||||
margin-bottom: 18px;
|
margin-bottom: clamp(12px, 2vw, 18px);
|
||||||
transition: all 0.4s;
|
transition: all 0.4s;
|
||||||
}
|
}
|
||||||
.activity-card:hover .activity-card-icon {
|
.activity-card:hover .activity-card-icon {
|
||||||
@@ -595,7 +595,7 @@ img { max-width: 100%; display: block; }
|
|||||||
.activity-card h4 {
|
.activity-card h4 {
|
||||||
font-family: 'Montserrat', sans-serif;
|
font-family: 'Montserrat', sans-serif;
|
||||||
font-weight: 700; font-size: 1.05rem;
|
font-weight: 700; font-size: 1.05rem;
|
||||||
color: var(--text-dark); margin-bottom: 10px;
|
color: var(--text-dark); margin-bottom: clamp(6px, 1.2vw, 10px);
|
||||||
}
|
}
|
||||||
.activity-card p {
|
.activity-card p {
|
||||||
color: var(--text-gray);
|
color: var(--text-gray);
|
||||||
@@ -606,8 +606,8 @@ img { max-width: 100%; display: block; }
|
|||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
gap: 20px;
|
gap: clamp(12px, 2vw, 20px);
|
||||||
margin-top: 50px;
|
margin-top: clamp(30px, 5.5vw, 50px);
|
||||||
}
|
}
|
||||||
.activity-gallery .license-gallery-item {
|
.activity-gallery .license-gallery-item {
|
||||||
flex: 0 1 min(320px, 85vw);
|
flex: 0 1 min(320px, 85vw);
|
||||||
@@ -627,17 +627,17 @@ img { max-width: 100%; display: block; }
|
|||||||
|
|
||||||
.partners-scroll {
|
.partners-scroll {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
margin-top: 40px;
|
margin-top: clamp(24px, 4.5vw, 40px);
|
||||||
}
|
}
|
||||||
.partners-track {
|
.partners-track {
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: 60px;
|
gap: clamp(24px, 6vw, 60px);
|
||||||
animation: partners-scroll 20s linear infinite;
|
animation: partners-scroll 20s linear infinite;
|
||||||
width: max-content;
|
width: max-content;
|
||||||
}
|
}
|
||||||
.partners-track:hover { animation-play-state: paused; }
|
.partners-track:hover { animation-play-state: paused; }
|
||||||
.partners-track img {
|
.partners-track img {
|
||||||
height: 100px;
|
height: clamp(60px, 12vw, 100px);
|
||||||
width: auto;
|
width: auto;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user