* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--primary-50: #f5f3ff;
--primary-100: #ede9fe;
--primary-200: #ddd6fe;
--primary-400: #a78bfa;
--primary-600: #5328f1;
--primary-700: #4c1d95;
--primary-800: #3b0764;
--primary-900: #2e0554;
--gray-50: #f9fafb;
--gray-100: #f3f4f6;
--gray-200: #e5e7eb;
--gray-600: #4b5563;
--gray-700: #374151;
--gray-800: #1f2937;
--gray-900: #111827;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
line-height: 1.6;
color: var(--gray-800);
}
.container {
max-width: 1280px;
margin: 0 auto;
padding: 0 1.5rem;
}
.header {
background: white;
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
position: sticky;
top: 0;
z-index: 1000;
}
.header-top {
background: linear-gradient(to right, var(--primary-600), var(--primary-800));
color: white;
padding: 0.5rem 0;
}
.header-top-content {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 0.875rem;
}
.header-contacts {
display: flex;
gap: 1.5rem;
}
.header-contact-item {
display: flex;
align-items: center;
gap: 0.5rem;
color: white;
text-decoration: none;
transition: color 0.3s;
}
.header-contact-item:hover {
color: var(--primary-200);
}
.header-support {
font-size: 0.875rem;
}
.nav {
padding: 0;
}
.nav-content {
display: flex;
justify-content: space-between;
align-items: center;
height: 5rem;
}
.logo {
font-size: 1.5rem;
font-weight: 700;
background: linear-gradient(to right, var(--primary-600), var(--primary-800));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-decoration: none;
}
.logo span {
color: var(--primary-900);
}
.nav-links {
display: flex;
gap: 2rem;
}
.nav-link {
font-size: 1rem;
font-weight: 500;
color: var(--gray-700);
text-decoration: none;
padding-bottom: 0.25rem;
transition: color 0.3s;
}
.nav-link:hover {
color: var(--primary-600);
}
.nav-link.active {
color: var(--primary-600);
border-bottom: 2px solid var(--primary-600);
}
.mobile-menu-btn {
display: none;
padding: 0.5rem;
border-radius: 0.5rem;
background: transparent;
border: none;
cursor: pointer;
transition: background 0.3s;
}
.mobile-menu-btn:hover {
background: var(--gray-100);
}
.mobile-menu {
display: none;
padding: 1rem 0;
border-top: 1px solid var(--gray-100);
}
.mobile-menu.active {
display: block;
}
.mobile-menu a {
display: block;
padding: 0.75rem 1rem;
margin: 0.25rem 0;
border-radius: 0.5rem;
text-decoration: none;
color: var(--gray-700);
font-weight: 500;
transition: all 0.3s;
}
.mobile-menu a:hover {
background: var(--gray-50);
}
.mobile-menu a.active {
background: var(--primary-50);
color: var(--primary-700);
}
.mobile-menu .btn-primary {
margin-top: 0.5rem;
width: 100%;
}
@media (max-width: 768px) {
.nav-links {
display: none;
}
.mobile-menu-btn {
display: block;
}
}
.hero {
position: relative;
background: linear-gradient(135deg, var(--primary-600), var(--primary-700), var(--primary-900));
color: white;
overflow: hidden;
min-height: 500px;
}
.hero-bg {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0.2;
}
.hero-overlay {
position: absolute;
inset: 0;
background: linear-gradient(308deg, rgb(83 40 241 / 74%), rgb(76 29 149 / 13%), rgba(46, 5, 84, 0.9));
}
.hero-content {
position: relative;
padding: 6rem 1.5rem;
z-index: 10;
}
.hero-text {
max-width: 48rem;
}
.hero h1 {
font-size: 3.75rem;
font-weight: 700;
line-height: 1.2;
margin-bottom: 1.5rem;
}
.hero p {
font-size: 1.5rem;
color: var(--primary-100);
margin-bottom: 2rem;
line-height: 1.6;
}
.hero-small {
min-height: 300px;
}
.hero-small .hero-content {
padding: 5rem 1.5rem;
}
.hero-small h1 {
font-size: 3rem;
}
.hero-small p {
font-size: 1.25rem;
}
.hero-buttons {
display: flex;
flex-wrap: wrap;
gap: 1rem;
}
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
padding: 1rem 2rem;
border-radius: 0.5rem;
font-weight: 600;
font-size: 1.125rem;
text-decoration: none;
transition: all 0.3s;
cursor: pointer;
border: none;
}
.btn-primary {
background: white;
color: var(--primary-700);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.btn-primary:hover {
background: var(--primary-50);
}
.btn-secondary {
background: var(--primary-800);
color: white;
border: 2px solid rgba(255, 255, 255, 0.2);
}
.btn-secondary:hover {
background: var(--primary-900);
}
.btn-white {
background: white;
color: var(--primary-700);
}
.btn-white:hover {
background: var(--primary-50);
}
.btn-outline-white {
background: var(--primary-600);
color: white;
border: 2px solid rgba(255, 255, 255, 0.2);
}
.btn-outline-white:hover {
background: var(--primary-800);
}
.btn-full {
width: 100%;
}
.btn-large {
padding: 1.25rem 2.5rem;
font-size: 1.25rem;
}
.services-section {
padding: 4rem 0;
background: white;
}
.section-header {
text-align: center;
margin-bottom: 3rem;
}
.section-header h2 {
font-size: 2.25rem;
font-weight: 700;
color: var(--gray-900);
margin-bottom: 1rem;
}
.section-header p {
font-size: 1.25rem;
color: var(--gray-600);
max-width: 48rem;
margin: 0 auto;
}
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.service-card {
background: white;
padding: 2rem;
border-radius: 0.75rem;
border: 2px solid var(--gray-100);
transition: all 0.3s;
}
.service-card:hover {
border-color: var(--primary-200);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.service-icon {
width: 3.5rem;
height: 3.5rem;
background: var(--primary-100);
border-radius: 0.5rem;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1rem;
transition: all 0.3s;
}
.service-card:hover .service-icon {
background: var(--primary-600);
}
.service-icon svg {
stroke: var(--primary-600);
transition: all 0.3s;
}
.service-card:hover .service-icon svg {
stroke: white;
}
.service-card h3 {
font-size: 1.25rem;
font-weight: 700;
color: var(--gray-900);
margin-bottom: 0.75rem;
}
.service-card p {
color: var(--gray-600);
line-height: 1.6;
}
.section-footer {
text-align: center;
margin-top: 3rem;
}
.link-arrow {
display: inline-flex;
align-items: center;
gap: 0.5rem;
color: var(--primary-600);
font-weight: 600;
font-size: 1.125rem;
text-decoration: none;
transition: color 0.3s;
}
.link-arrow:hover {
color: var(--primary-800);
}
.why-choose-section,
.support-section {
padding: 4rem 0;
background: var(--gray-50);
}
.support-section {
background: white;
}
.two-column {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 3rem;
align-items: center;
}
.two-column .column h2 {
font-size: 2.25rem;
font-weight: 700;
color: var(--gray-900);
margin-bottom: 1.5rem;
}
.two-column .column p {
font-size: 1.125rem;
color: var(--gray-600);
line-height: 1.6;
margin-bottom: 1.5rem;
}
.two-column .column .lead {
font-size: 1.125rem;
color: var(--gray-600);
margin-bottom: 2rem;
}
.rounded-image {
border-radius: 1rem;
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
width: 100%;
height: 500px;
object-fit: cover;
}
.check-list {
list-style: none;
}
.check-list li {
display: flex;
align-items: flex-start;
gap: 0.75rem;
margin-bottom: 1rem;
color: var(--gray-700);
}
.check-list li::before {
content: '';
display: inline-block;
width: 1.5rem;
height: 1.5rem;
background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%235328f1" stroke-width="2"><path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"></path><polyline points="22 4 12 14.01 9 11.01"></polyline></svg>') no-repeat center;
flex-shrink: 0;
margin-top: 0.125rem;
}
.gallery-section {
padding: 4rem 0;
background: var(--gray-50);
}
.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 1.5rem;
}
.gallery-item {
position: relative;
height: 320px;
border-radius: 0.75rem;
overflow: hidden;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.gallery-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s;
}
.gallery-item:hover img {
transform: scale(1.1);
}
.gallery-overlay {
position: absolute;
inset: 0;
background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
display: flex;
align-items: flex-end;
}
.gallery-text {
padding: 1.5rem;
color: white;
}
.gallery-text h3 {
font-size: 1.25rem;
font-weight: 700;
margin-bottom: 0.5rem;
}
.gallery-text p {
font-size: 0.875rem;
color: var(--gray-200);
}
.cta-split-section {
padding: 4rem 0;
background: white;
}
.cta-box {
background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
color: white;
padding: 2.5rem;
border-radius: 1rem;
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.cta-box h3 {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 1rem;
}
.cta-box p {
color: var(--primary-100);
margin-bottom: 1.5rem;
line-height: 1.6;
}
.cta-buttons-stacked {
display: flex;
flex-direction: column;
gap: 1rem;
}
.cta-section {
padding: 4rem 0;
background: var(--gray-50);
}
.cta-content {
background: linear-gradient(135deg, var(--primary-600), var(--primary-900));
border-radius: 1rem;
padding: 3rem;
text-align: center;
color: white;
}
.cta-content h2 {
font-size: 2.25rem;
font-weight: 700;
margin-bottom: 1rem;
}
.cta-content p {
font-size: 1.25rem;
color: var(--primary-100);
margin-bottom: 2rem;
max-width: 42rem;
margin-left: auto;
margin-right: auto;
}
.cta-buttons {
display: flex;
flex-wrap: wrap;
gap: 1rem;
justify-content: center;
}
.services-detail-section {
padding: 4rem 0;
background: white;
}
.service-detail {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 0;
background: white;
border-radius: 1rem;
border: 2px solid var(--gray-100);
overflow: hidden;
margin-bottom: 3rem;
transition: box-shadow 0.3s;
}
.service-detail:hover {
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.service-detail-image {
position: relative;
min-height: 320px;
}
.service-detail-image img {
width: 100%;
height: 100%;
object-fit: cover;
}
.service-detail-overlay {
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgb(83 40 241 / 58%), rgba(76, 29, 149, 0.9));
display: flex;
flex-direction: column;
justify-content: center;
padding: 2.5rem;
color: white;
}
.service-icon-large {
width: 4rem;
height: 4rem;
background: rgba(255, 255, 255, 0.2);
backdrop-filter: blur(10px);
border-radius: 0.75rem;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1.5rem;
}
.service-detail-overlay h3 {
font-size: 1.875rem;
font-weight: 700;
margin-bottom: 1rem;
}
.service-detail-overlay p {
color: var(--primary-100);
font-size: 1.125rem;
line-height: 1.6;
}
.service-detail-content {
padding: 2.5rem;
}
.service-detail-content h4 {
font-size: 1.25rem;
font-weight: 700;
color: var(--gray-900);
margin-bottom: 1.5rem;
}
.bullet-list {
list-style: none;
}
.bullet-list li {
display: flex;
align-items: flex-start;
gap: 0.75rem;
margin-bottom: 1rem;
color: var(--gray-700);
}
.bullet-list li::before {
content: '';
display: inline-block;
width: 1.5rem;
height: 1.5rem;
background: var(--primary-100);
border-radius: 50%;
flex-shrink: 0;
margin-top: 0.125rem;
position: relative;
}
.bullet-list li::after {
content: '';
position: absolute;
width: 0.5rem;
height: 0.5rem;
background: var(--primary-600);
border-radius: 50%;
margin-left: 8px;
margin-top: 0.625rem;
}
.contact-info-section {
padding: 4rem 0;
background: white;
}
.contact-info-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
}
.contact-info-card {
background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
padding: 2rem;
border-radius: 1rem;
color: white;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.contact-info-icon {
width: 3.5rem;
height: 3.5rem;
background: rgba(255, 255, 255, 0.2);
backdrop-filter: blur(10px);
border-radius: 0.75rem;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1.5rem;
}
.contact-info-card h3 {
font-size: 1.25rem;
font-weight: 700;
margin-bottom: 0.75rem;
}
.contact-info-card p {
color: var(--primary-100);
margin-bottom: 0.5rem;
}
.contact-info-link {
font-size: 1.5rem;
font-weight: 700;
color: white;
text-decoration: none;
transition: color 0.3s;
}
.contact-info-link:hover {
color: var(--primary-200);
}
.contact-form-section {
padding: 4rem 0;
background: white;
}
.contact-form {
margin-top: 2rem;
}
.form-group {
margin-bottom: 1.5rem;
}
.form-group label {
display: block;
font-weight: 600;
font-size: 0.875rem;
color: var(--gray-700);
margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
width: 100%;
padding: 0.75rem 1rem;
border: 2px solid var(--gray-200);
border-radius: 0.5rem;
font-size: 1rem;
transition: border-color 0.3s;
font-family: inherit;
}
.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--primary-600);
}
.form-group textarea {
resize: vertical;
}
.form-message {
padding: 1rem;
border-radius: 0.5rem;
margin-bottom: 1rem;
border: 2px solid;
}
.form-message.success {
background: #d1fae5;
border-color: #6ee7b7;
color: #065f46;
}
.form-message.error {
background: #fee2e2;
border-color: #fca5a5;
color: #991b1b;
}
.map-container {
background: var(--gray-100);
border-radius: 1rem;
overflow: hidden;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
margin-bottom: 2rem;
height: 384px;
}
.why-contact-box {
background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
padding: 2rem;
border-radius: 1rem;
border: 2px solid var(--primary-200);
}
.why-contact-box h3 {
font-size: 1.5rem;
font-weight: 700;
color: var(--gray-900);
margin-bottom: 1rem;
}
.footer {
background: var(--gray-900);
color: var(--gray-200);
padding: 3rem 0 0;
}
.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
padding-bottom: 2rem;
}
.footer-col h3 {
color: white;
font-size: 1.25rem;
font-weight: 700;
margin-bottom: 1rem;
}
.footer-col h4 {
color: white;
font-size: 1.125rem;
font-weight: 600;
margin-bottom: 1rem;
}
.footer-col p {
font-size: 0.875rem;
line-height: 1.6;
margin-bottom: 1rem;
}
.footer-col ul {
list-style: none;
}
.footer-col ul li {
margin-bottom: 0.5rem;
}
.footer-col ul li a {
color: var(--gray-200);
text-decoration: none;
font-size: 0.875rem;
transition: color 0.3s;
}
.footer-col ul li a:hover {
color: var(--primary-400);
}
.contact-list li {
display: flex;
align-items: flex-start;
gap: 0.75rem;
margin-bottom: 0.75rem;
}
.contact-list svg {
stroke: var(--primary-400);
flex-shrink: 0;
margin-top: 0.125rem;
}
.footer-bottom {
border-top: 1px solid var(--gray-800);
padding: 2rem 0;
text-align: center;
font-size: 0.875rem;
}
@media (max-width: 768px) {
.header-support {
display: none;
}
.header-contacts {
gap: 1rem;
}
.hero h1 {
font-size: 2.5rem;
}
.hero p {
font-size: 1.25rem;
}
.hero-small h1 {
font-size: 2rem;
}
.hero-buttons {
flex-direction: column;
}
.btn {
width: 100%;
}
.section-header h2 {
font-size: 1.875rem;
}
.two-column {
grid-template-columns: 1fr;
}
.two-column .column h2 {
font-size: 1.875rem;
}
.cta-content h2 {
font-size: 1.875rem;
}
.services-grid {
grid-template-columns: 1fr;
}
.service-detail {
grid-template-columns: 1fr;
}
.rounded-image {
height: 300px;
}
}
@media (max-width: 480px) {
.nav-links {
gap: 1rem;
}
.nav-link {
font-size: 0.875rem;
}
.hero h1 {
font-size: 2rem;
}
.hero p {
font-size: 1.125rem;
}
}