first commit

This commit is contained in:
adlevin
2025-07-27 15:47:34 +03:00
commit 1811c43e7a
17 changed files with 2793 additions and 0 deletions

979
assets/css/main.css Normal file
View File

@@ -0,0 +1,979 @@
/* Reset and Base Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--primary-color: #81C784;
--primary-dark: #4CAF50;
--primary-light: #A5D6A7;
--secondary-color: #ffffff;
--text-dark: #2c3e50;
--text-light: #7f8c8d;
--bg-light: #f8f9fa;
--bg-gray: #ecf0f1;
--shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
--shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
--border-radius: 8px;
--transition: all 0.3s ease;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
line-height: 1.6;
color: var(--text-dark);
background-color: var(--secondary-color);
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
font-weight: 600;
line-height: 1.2;
margin-bottom: 1rem;
}
h1 {
font-size: 3rem;
font-weight: 700;
}
h2 {
font-size: 2.5rem;
}
h3 {
font-size: 1.75rem;
}
h4 {
font-size: 1.25rem;
}
p {
margin-bottom: 1rem;
color: var(--text-light);
}
a {
text-decoration: none;
color: var(--primary-color);
transition: var(--transition);
}
a:hover {
color: var(--primary-dark);
}
/* Buttons */
.btn {
display: inline-block;
padding: 12px 24px;
border-radius: var(--border-radius);
font-weight: 500;
text-align: center;
cursor: pointer;
border: 2px solid transparent;
transition: var(--transition);
text-decoration: none;
}
.btn-primary {
background-color: var(--primary-color);
color: var(--secondary-color);
border-color: var(--primary-color);
}
.btn-primary:hover {
background-color: var(--primary-dark);
border-color: var(--primary-dark);
color: var(--secondary-color);
transform: translateY(-2px);
box-shadow: var(--shadow-hover);
}
.btn-outline {
background-color: transparent;
color: var(--primary-color);
border-color: var(--primary-color);
}
.btn-outline:hover {
background-color: var(--primary-color);
color: var(--secondary-color);
transform: translateY(-2px);
box-shadow: var(--shadow-hover);
}
/* Header */
.header {
background-color: var(--secondary-color);
box-shadow: var(--shadow);
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
}
.navbar {
padding: 1rem 0;
}
.navbar .container {
display: flex;
align-items: center;
justify-content: space-between;
}
.navbar-brand {
display: flex;
align-items: center;
gap: 12px;
}
.logo {
height: 40px;
width: auto;
}
.brand-text {
font-size: 1.5rem;
font-weight: 700;
color: var(--primary-color);
}
.navbar-menu {
display: flex;
align-items: center;
}
.navbar-nav {
display: flex;
list-style: none;
gap: 2rem;
}
.nav-link {
color: var(--text-dark);
font-weight: 500;
transition: var(--transition);
position: relative;
}
.nav-link:hover {
color: var(--primary-color);
}
.nav-link::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background-color: var(--primary-color);
transition: var(--transition);
}
.nav-link:hover::after {
width: 100%;
}
.header-contact {
display: flex;
align-items: center;
gap: 8px;
color: var(--primary-color);
font-weight: 500;
}
.mobile-menu-toggle {
display: none;
flex-direction: column;
background: none;
border: none;
cursor: pointer;
padding: 5px;
gap: 4px;
}
.mobile-menu-toggle span {
width: 25px;
height: 3px;
background-color: var(--text-dark);
transition: var(--transition);
}
/* Hero Section */
.hero {
position: relative;
height: 100vh;
overflow: hidden;
margin-top: 80px;
}
.hero-slider {
position: relative;
height: 100%;
}
.hero-slide {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
align-items: center;
opacity: 0;
transition: opacity 0.8s ease-in-out;
background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}
.hero-slide.active {
opacity: 1;
}
.hero-slide::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(33, 143, 54, 0.1);
z-index: 1;
}
.hero-content {
position: relative;
z-index: 2;
width: 50%;
padding: 2rem;
}
.hero-text {
color: var(--secondary-color);
}
.hero-title {
font-size: 3.5rem;
margin-bottom: 1.5rem;
line-height: 1.1;
}
.hero-subtitle {
font-size: 1.25rem;
margin-bottom: 2rem;
opacity: 0.9;
}
.hero-buttons {
display: flex;
gap: 1rem;
flex-wrap: wrap;
}
.hero-image {
position: absolute;
top: 0;
right: 0;
width: 50%;
height: 100%;
z-index: 1;
}
.hero-image img {
width: 100%;
height: 100%;
object-fit: cover;
}
.hero-nav {
position: absolute;
bottom: 30px;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 10px;
z-index: 3;
}
.hero-nav-btn {
width: 12px;
height: 12px;
border-radius: 50%;
border: 2px solid var(--secondary-color);
background: transparent;
cursor: pointer;
transition: var(--transition);
}
.hero-nav-btn.active,
.hero-nav-btn:hover {
background-color: var(--secondary-color);
}
.hero-arrows {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 100%;
display: flex;
justify-content: space-between;
padding: 0 20px;
z-index: 3;
}
.hero-arrow {
width: 50px;
height: 50px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.1);
border: 2px solid var(--secondary-color);
color: var(--secondary-color);
cursor: pointer;
transition: var(--transition);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
}
.hero-arrow:hover {
background-color: var(--secondary-color);
color: var(--primary-color);
}
/* Section Headers */
.section-header {
text-align: center;
margin-bottom: 4rem;
}
.section-title {
color: var(--text-dark);
margin-bottom: 1rem;
}
.section-subtitle {
font-size: 1.1rem;
color: var(--text-light);
max-width: 600px;
margin: 0 auto;
}
/* Services Section */
.services {
padding: 5rem 0;
background-color: var(--bg-light);
}
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.service-card {
background-color: var(--secondary-color);
padding: 2rem;
border-radius: var(--border-radius);
box-shadow: var(--shadow);
text-align: center;
transition: var(--transition);
cursor: pointer;
position: relative;
}
.service-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-hover);
}
/* Service Modal */
.service-modal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1000;
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
}
.service-modal.active {
opacity: 1;
visibility: visible;
}
.modal-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.8);
backdrop-filter: blur(5px);
}
.modal-card {
background-color: var(--secondary-color);
border-radius: var(--border-radius);
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
max-width: 600px;
width: 90%;
max-height: 80vh;
overflow-y: auto;
position: relative;
transform: scale(0.7) translateY(50px);
transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.service-modal.active .modal-card {
transform: scale(1) translateY(0);
}
.modal-header {
display: flex;
align-items: flex-start;
gap: 1.5rem;
padding: 2rem 2rem 1rem;
border-bottom: 1px solid var(--bg-gray);
}
.modal-icon {
width: 80px;
height: 80px;
background-color: var(--primary-color);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--secondary-color);
font-size: 2rem;
flex-shrink: 0;
}
.modal-title-section {
flex: 1;
}
.modal-title {
color: var(--text-dark);
margin-bottom: 0.5rem;
font-size: 1.5rem;
}
.modal-description {
color: var(--text-light);
line-height: 1.6;
margin: 0;
}
.modal-close {
background: none;
border: none;
font-size: 1.5rem;
color: var(--text-light);
cursor: pointer;
padding: 0.5rem;
border-radius: 50%;
transition: var(--transition);
flex-shrink: 0;
}
.modal-close:hover {
background-color: var(--bg-gray);
color: var(--text-dark);
}
.modal-content {
padding: 2rem;
}
.procedures-title {
color: var(--text-dark);
margin-bottom: 1.5rem;
font-size: 1.2rem;
}
.modal-content .procedures-list {
list-style: none;
padding: 0;
margin: 0;
display: grid;
gap: 0.8rem;
}
.modal-content .procedures-list li {
padding: 1rem;
background-color: var(--bg-light);
border-radius: var(--border-radius);
border-left: 4px solid var(--primary-color);
color: var(--text-dark);
transition: var(--transition);
}
.modal-content .procedures-list li:hover {
background-color: var(--primary-light);
transform: translateX(5px);
}
.modal-footer {
padding: 1rem 2rem 2rem;
text-align: center;
border-top: 1px solid var(--bg-gray);
}
.modal-btn {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 1rem 2rem;
font-size: 1.1rem;
}
.service-icon {
width: 80px;
height: 80px;
background-color: var(--primary-color);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.5rem;
color: var(--secondary-color);
font-size: 2rem;
}
.service-title {
color: var(--text-dark);
margin-bottom: 1rem;
}
.service-description {
color: var(--text-light);
line-height: 1.6;
}
/* About Section */
.about {
padding: 5rem 0;
background-color: var(--secondary-color);
}
.about-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}
.about-features {
margin-top: 2rem;
}
.feature {
display: flex;
align-items: flex-start;
gap: 1rem;
margin-bottom: 1.5rem;
}
.feature i {
color: var(--primary-color);
font-size: 1.5rem;
margin-top: 0.1rem;
flex-shrink: 0;
width: 24px;
height: 24px;
display: flex;
align-items: center;
justify-content: center;
}
.feature h4 {
color: var(--text-dark);
margin-bottom: 0.5rem;
line-height: 1.2;
}
.feature p {
margin: 0;
font-size: 0.9rem;
line-height: 1.4;
}
.about-image img {
width: 100%;
height: 400px;
object-fit: cover;
border-radius: var(--border-radius);
box-shadow: var(--shadow);
}
/* Contact Section */
.contact {
padding: 5rem 0;
background-color: var(--bg-light);
}
.contact-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
margin-top: 3rem;
}
.contact-item {
display: flex;
gap: 1rem;
margin-bottom: 2rem;
}
.contact-icon {
width: 50px;
height: 50px;
background-color: var(--primary-color);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--secondary-color);
flex-shrink: 0;
}
.contact-details h4 {
color: var(--text-dark);
margin-bottom: 0.5rem;
}
.contact-details p {
margin-bottom: 0.25rem;
}
.contact-details a {
color: var(--primary-color);
font-weight: 500;
}
.map-container {
background-color: var(--bg-gray);
border-radius: var(--border-radius);
overflow: hidden;
height: 400px;
}
#map {
width: 100%;
height: 100%;
}
/* Footer */
.footer {
background-color: var(--text-dark);
color: var(--secondary-color);
padding: 3rem 0 1rem;
}
.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
}
.footer-brand {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 1rem;
}
.footer-logo {
height: 30px;
width: auto;
}
.footer-brand h3 {
color: var(--secondary-color);
margin: 0;
}
.footer-section h4 {
color: var(--secondary-color);
margin-bottom: 1rem;
}
.footer-section ul {
list-style: none;
}
.footer-section li {
margin-bottom: 0.5rem;
display: flex;
align-items: center;
gap: 0.5rem;
}
.footer-section a {
color: #bdc3c7;
transition: var(--transition);
}
.footer-section a:hover {
color: var(--secondary-color);
}
.partner-logo-small {
display: flex;
align-items: center;
gap: 0.5rem;
margin-top: 1rem;
}
.partner-logo-small img {
height: 25px;
width: auto;
}
.partner-logo-small span {
font-size: 0.8rem;
color: #bdc3c7;
}
.footer-bottom {
border-top: 1px solid #34495e;
padding-top: 1rem;
text-align: center;
}
.footer-bottom p {
margin: 0;
color: #bdc3c7;
font-size: 0.9rem;
}
/* Responsive Design */
@media (max-width: 768px) {
.container {
padding: 0 15px;
}
.navbar-menu {
position: fixed;
top: 80px;
left: -100%;
width: 100%;
height: calc(100vh - 80px);
background-color: var(--secondary-color);
flex-direction: column;
justify-content: flex-start;
padding: 2rem;
transition: var(--transition);
box-shadow: var(--shadow);
}
.navbar-menu.active {
left: 0;
}
.navbar-nav {
flex-direction: column;
}
.nav-link {
font-size: 1.1rem;
padding: 1rem 0;
border-bottom: 1px solid var(--bg-gray);
width: 100%;
}
.header-contact {
display: none;
}
.mobile-menu-toggle {
display: flex;
}
.hero {
height: 80vh;
margin-top: 80px;
}
.hero-slide {
flex-direction: column;
text-align: center;
padding: 2rem 0;
}
.hero-content {
width: 100%;
padding: 1rem;
}
.hero-image {
position: relative;
width: 100%;
height: 50%;
order: -1;
}
.hero-title {
font-size: 2.5rem;
}
.hero-buttons {
justify-content: center;
}
.services-grid {
grid-template-columns: 1fr;
gap: 1.5rem;
}
.about-content {
grid-template-columns: 1fr;
gap: 2rem;
}
.about-image {
order: -1;
}
.contact-content {
grid-template-columns: 1fr;
gap: 2rem;
}
.footer-content {
grid-template-columns: 1fr;
gap: 2rem;
text-align: center;
}
h1 {
font-size: 2.5rem;
}
h2 {
font-size: 2rem;
}
.service-card {
padding: 1.5rem;
}
/* Modal Mobile Styles */
.modal-card {
width: 95%;
max-height: 90vh;
margin: 0 auto;
}
.modal-header {
padding: 1.5rem 1.5rem 1rem;
flex-direction: column;
text-align: center;
gap: 1rem;
}
.modal-icon {
width: 60px;
height: 60px;
font-size: 1.5rem;
margin: 0 auto;
}
.modal-title {
font-size: 1.3rem;
}
.modal-content {
padding: 1.5rem;
}
.modal-content .procedures-list {
gap: 0.6rem;
}
.modal-content .procedures-list li {
padding: 0.8rem;
font-size: 0.9rem;
}
.modal-footer {
padding: 1rem 1.5rem 1.5rem;
}
.modal-close {
position: absolute;
top: 1rem;
right: 1rem;
}
}
@media (max-width: 480px) {
.hero-title {
font-size: 2rem;
}
.hero-subtitle {
font-size: 1rem;
}
.btn {
padding: 10px 20px;
font-size: 0.9rem;
}
.service-card {
padding: 1.5rem;
}
.service-icon {
width: 60px;
height: 60px;
font-size: 1.5rem;
}
}
/* Animations */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.fade-in-up {
animation: fadeInUp 0.6s ease-out;
}
/* Smooth scrolling offset for fixed header */
section {
scroll-margin-top: 100px;
}