539 lines
8.2 KiB
CSS
539 lines
8.2 KiB
CSS
/* Home Page CSS */
|
|
|
|
/* Hero Section */
|
|
.hero {
|
|
min-height: 100vh;
|
|
background: linear-gradient(135deg, rgba(26, 95, 74, 0.9) 0%, rgba(45, 143, 111, 0.85) 100%),
|
|
url('https://images.unsplash.com/photo-1564013799919-ab600027ffc6?w=1920&q=80') center/cover no-repeat;
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
color: white;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.hero-content {
|
|
position: relative;
|
|
z-index: 2;
|
|
max-width: 700px;
|
|
}
|
|
|
|
.hero-badge {
|
|
display: inline-block;
|
|
background: rgba(255, 255, 255, 0.2);
|
|
backdrop-filter: blur(10px);
|
|
padding: 10px 25px;
|
|
border-radius: 50px;
|
|
font-size: 0.9rem;
|
|
margin-bottom: 20px;
|
|
animation: fadeInUp 0.8s ease;
|
|
}
|
|
|
|
.hero h1 {
|
|
font-size: 3.5rem;
|
|
font-weight: 800;
|
|
line-height: 1.2;
|
|
margin-bottom: 20px;
|
|
animation: fadeInUp 0.8s ease 0.2s both;
|
|
}
|
|
|
|
.hero-text {
|
|
font-size: 1.2rem;
|
|
opacity: 0.9;
|
|
margin-bottom: 30px;
|
|
animation: fadeInUp 0.8s ease 0.4s both;
|
|
}
|
|
|
|
.hero-buttons {
|
|
display: flex;
|
|
gap: 20px;
|
|
animation: fadeInUp 0.8s ease 0.6s both;
|
|
}
|
|
|
|
.hero-stats {
|
|
display: flex;
|
|
gap: 40px;
|
|
margin-top: 50px;
|
|
animation: fadeInUp 0.8s ease 0.8s both;
|
|
}
|
|
|
|
.hero-stat {
|
|
text-align: center;
|
|
}
|
|
|
|
.hero-stat-number {
|
|
font-size: 2.5rem;
|
|
font-weight: 800;
|
|
color: var(--secondary);
|
|
}
|
|
|
|
.hero-stat-label {
|
|
font-size: 0.9rem;
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.hero-image {
|
|
position: absolute;
|
|
right: -5%;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
width: 45%;
|
|
opacity: 0.2;
|
|
}
|
|
|
|
/* Advantages */
|
|
.advantages {
|
|
padding: 80px 0;
|
|
background: white;
|
|
}
|
|
|
|
.advantages-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 30px;
|
|
margin-top: 50px;
|
|
}
|
|
|
|
.advantage-card {
|
|
text-align: center;
|
|
padding: 40px 30px;
|
|
background: white;
|
|
border-radius: var(--radius-lg);
|
|
transition: all 0.4s ease;
|
|
box-shadow: var(--shadow);
|
|
}
|
|
|
|
.advantage-card:hover {
|
|
transform: translateY(-10px);
|
|
box-shadow: var(--shadow-lg);
|
|
}
|
|
|
|
.advantage-icon {
|
|
width: 80px;
|
|
height: 80px;
|
|
margin: 0 auto 25px;
|
|
background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.advantage-icon i {
|
|
font-size: 2rem;
|
|
color: white;
|
|
}
|
|
|
|
.advantage-title {
|
|
font-size: 1.3rem;
|
|
font-weight: 700;
|
|
margin-bottom: 15px;
|
|
font-family: 'Montserrat', sans-serif;
|
|
}
|
|
|
|
.advantage-text {
|
|
color: var(--gray);
|
|
line-height: 1.7;
|
|
}
|
|
|
|
/* Catalog */
|
|
.catalog {
|
|
padding: 80px 0;
|
|
background: #f8f9fa;
|
|
}
|
|
|
|
.catalog-filters {
|
|
background: white;
|
|
padding: 30px;
|
|
border-radius: var(--radius-lg);
|
|
box-shadow: var(--shadow);
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
.filters-row {
|
|
display: flex;
|
|
gap: 20px;
|
|
flex-wrap: wrap;
|
|
align-items: flex-end;
|
|
}
|
|
|
|
.filter-group {
|
|
flex: 1;
|
|
min-width: 200px;
|
|
}
|
|
|
|
.filter-label {
|
|
display: block;
|
|
font-weight: 600;
|
|
margin-bottom: 8px;
|
|
color: var(--dark);
|
|
}
|
|
|
|
.filter-select,
|
|
.filter-input {
|
|
width: 100%;
|
|
padding: 12px 15px;
|
|
border: 1px solid #e9ecef;
|
|
border-radius: var(--radius-sm);
|
|
font-size: 1rem;
|
|
transition: border-color 0.3s ease;
|
|
}
|
|
|
|
.filter-select:focus,
|
|
.filter-input:focus {
|
|
outline: none;
|
|
border-color: var(--primary);
|
|
}
|
|
|
|
.catalog-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
|
|
gap: 30px;
|
|
}
|
|
|
|
/* Statistics */
|
|
.statistics {
|
|
padding: 80px 0;
|
|
background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
|
|
color: white;
|
|
}
|
|
|
|
.stats-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, 1fr);
|
|
gap: 40px;
|
|
}
|
|
|
|
.stat-item {
|
|
text-align: center;
|
|
}
|
|
|
|
.stat-number {
|
|
font-size: 3rem;
|
|
font-weight: 800;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.stat-label {
|
|
font-size: 1rem;
|
|
opacity: 0.9;
|
|
}
|
|
|
|
/* Services */
|
|
.services {
|
|
padding: 80px 0;
|
|
background: white;
|
|
}
|
|
|
|
.services-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 30px;
|
|
margin-top: 50px;
|
|
}
|
|
|
|
.service-card {
|
|
padding: 40px;
|
|
background: #f8f9fa;
|
|
border-radius: var(--radius-lg);
|
|
text-align: center;
|
|
transition: all 0.4s ease;
|
|
}
|
|
|
|
.service-card:hover {
|
|
background: white;
|
|
box-shadow: var(--shadow-lg);
|
|
transform: translateY(-5px);
|
|
}
|
|
|
|
.service-icon {
|
|
width: 70px;
|
|
height: 70px;
|
|
margin: 0 auto 25px;
|
|
background: var(--primary);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.service-icon i {
|
|
font-size: 1.8rem;
|
|
color: white;
|
|
}
|
|
|
|
.service-title {
|
|
font-size: 1.2rem;
|
|
font-weight: 700;
|
|
margin-bottom: 15px;
|
|
font-family: 'Montserrat', sans-serif;
|
|
}
|
|
|
|
.service-text {
|
|
color: var(--gray);
|
|
line-height: 1.7;
|
|
}
|
|
|
|
/* CTA */
|
|
.cta-section {
|
|
padding: 100px 0;
|
|
background: var(--dark);
|
|
color: white;
|
|
text-align: center;
|
|
}
|
|
|
|
.cta-title {
|
|
font-size: 2.5rem;
|
|
font-weight: 700;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.cta-text {
|
|
font-size: 1.2rem;
|
|
opacity: 0.9;
|
|
margin-bottom: 30px;
|
|
max-width: 600px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
/* Testimonials */
|
|
.testimonials {
|
|
padding: 80px 0;
|
|
background: #f8f9fa;
|
|
}
|
|
|
|
.testimonials-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 30px;
|
|
margin-top: 50px;
|
|
}
|
|
|
|
.testimonial-card {
|
|
background: white;
|
|
padding: 30px;
|
|
border-radius: var(--radius-lg);
|
|
box-shadow: var(--shadow);
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.testimonial-card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: var(--shadow-lg);
|
|
}
|
|
|
|
.testimonial-header {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 15px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.testimonial-avatar {
|
|
width: 50px;
|
|
height: 50px;
|
|
border-radius: 50%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.testimonial-name {
|
|
font-weight: 700;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.testimonial-location {
|
|
font-size: 0.9rem;
|
|
color: var(--gray);
|
|
}
|
|
|
|
.testimonial-rating {
|
|
color: var(--secondary);
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.testimonial-text {
|
|
color: var(--text-muted);
|
|
line-height: 1.7;
|
|
font-style: italic;
|
|
}
|
|
|
|
/* FAQ */
|
|
.faq {
|
|
padding: 80px 0;
|
|
background: white;
|
|
}
|
|
|
|
/* Contact */
|
|
.contact {
|
|
padding: 80px 0;
|
|
background: #f8f9fa;
|
|
}
|
|
|
|
.contact-grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 50px;
|
|
}
|
|
|
|
.contact-info-grid {
|
|
display: grid;
|
|
gap: 25px;
|
|
}
|
|
|
|
.contact-item {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 20px;
|
|
}
|
|
|
|
.contact-icon {
|
|
width: 50px;
|
|
height: 50px;
|
|
background: var(--primary);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.contact-icon i {
|
|
font-size: 1.3rem;
|
|
color: white;
|
|
}
|
|
|
|
.contact-label {
|
|
font-size: 0.85rem;
|
|
color: var(--gray);
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.contact-value {
|
|
font-weight: 600;
|
|
color: var(--dark);
|
|
}
|
|
|
|
.contact-form {
|
|
background: white;
|
|
padding: 40px;
|
|
border-radius: var(--radius-lg);
|
|
box-shadow: var(--shadow);
|
|
}
|
|
|
|
.map-container {
|
|
height: 400px;
|
|
border-radius: var(--radius-lg);
|
|
overflow: hidden;
|
|
margin-top: 50px;
|
|
}
|
|
|
|
#map {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
/* Modal */
|
|
.property-modal .modal-dialog {
|
|
max-width: 900px;
|
|
}
|
|
|
|
.modal-features {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 15px;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.modal-feature {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
padding: 10px;
|
|
background: #f8f9fa;
|
|
border-radius: var(--radius-sm);
|
|
}
|
|
|
|
.modal-feature i {
|
|
color: var(--primary);
|
|
}
|
|
|
|
/* Animations */
|
|
@keyframes float {
|
|
0%, 100% { transform: translateY(0); }
|
|
50% { transform: translateY(-20px); }
|
|
}
|
|
|
|
@keyframes heroZoom {
|
|
0% { transform: scale(1); }
|
|
100% { transform: scale(1.1); }
|
|
}
|
|
|
|
.hero-float {
|
|
position: absolute;
|
|
opacity: 0.1;
|
|
animation: float 6s ease-in-out infinite;
|
|
}
|
|
|
|
/* Responsive */
|
|
@media (max-width: 991px) {
|
|
.hero h1 {
|
|
font-size: 2.5rem;
|
|
}
|
|
|
|
.advantages-grid,
|
|
.services-grid,
|
|
.testimonials-grid {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
}
|
|
|
|
.stats-grid {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
}
|
|
|
|
.contact-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.hero {
|
|
min-height: auto;
|
|
padding: 100px 0;
|
|
}
|
|
|
|
.hero h1 {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.hero-buttons {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.hero-stats {
|
|
flex-wrap: wrap;
|
|
gap: 20px;
|
|
}
|
|
|
|
.advantages-grid,
|
|
.services-grid,
|
|
.testimonials-grid,
|
|
.catalog-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.stats-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.filters-row {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.filter-group {
|
|
min-width: 100%;
|
|
}
|
|
}
|