/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

:root {
    --primary: #5384c4;
    --dark: #1b1a2e;
    --light: #ffffff;
    --gray: #f7f7f7;
    --text-dark: #333333;
    --text-light: #ffffff;
    --text-gray: #666666;
}

body {
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

button {
    cursor: pointer;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-gray);
}

/* Contact Bar */
.contact-bar {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 10px 0;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.contact-info div {
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 8px;
}

.separator {
    margin: 0 15px;
}

/* Header */
header {
    background-color: var(--dark);
    color: var(--text-light);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    margin-right: 15px;
}

.logo-container h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.logo-container p {
    font-size: 0.8rem;
    opacity: 0.8;
}

.desktop-nav {
    display: none;
}

.desktop-nav a {
    margin-left: 20px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.desktop-nav a:hover {
    opacity: 1;
}

.contact-button {
    background-color: var(--primary);
    padding: 8px 16px;
    border-radius: 4px;
    opacity: 1 !important;
}

.menu-button {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.2rem;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background-color: var(--dark);
    padding: 15px 20px;
}

.mobile-nav a {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav.show {
    display: flex;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(27, 26, 46, 0.8), rgba(27, 26, 46, 0.8)), url('https://images.unsplash.com/photo-1497366754035-f200fff6aa51f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    text-align: center;
    padding: 100px 0;
}

.hero h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 25px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.primary-button {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.primary-button:hover {
    background-color: #4375b5;
}

.secondary-button {
    background-color: var(--light);
    color: var(--dark);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.secondary-button:hover {
    background-color: #f0f0f0;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: var(--light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.benefit-card {
    background-color: var(--gray);
    padding: 25px;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    background-color: rgba(83, 132, 196, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-icon i {
    color: var(--primary);
    font-size: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--text-gray);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: rgba(83, 132, 196, 0.05);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.service-card {
    background-color: var(--light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}

.service-content p {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.service-content ul {
    margin-bottom: 20px;
}

.service-content ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
}

.service-content ul li i {
    color: var(--primary);
    margin-right: 10px;
    margin-top: 5px;
}

.learn-more {
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
}

.learn-more i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* Process Section */
.process {
    padding: 80px 0;
    background-color: var(--light);
}

.process-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.process-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    position: relative;
}

.step-number {
    background-color: var(--primary);
    color: var(--text-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 40px;
    bottom: -30px;
    width: 2px;
    background-color: var(--primary);
    z-index: 0;
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.step-content p {
    color: var(--text-gray);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.founder-info {
    background-color: rgba(83, 132, 196, 0.05);
    padding: 20px;
    border-radius: 8px;
    margin-top: 25px;
    display: flex;
    align-items: flex-start;
}

.founder-info img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.founder-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.founder-info p {
    margin-bottom: 5px;
}

.quote {
    font-style: italic;
    color: var(--text-gray);
}

.about-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.about-gallery img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
}

.about-gallery img:hover {
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: rgba(83, 132, 196, 0.05);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.contact-form {
    background-color: var(--light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: border-color 0.3s, box-shadow 0.3s;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(83, 132, 196, 0.2);
    outline: none;
}

.submit-button {
    background-color: var(--primary);
    color: var(--text-light);
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: 600;
    width: 100%;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #4375b5;
}

.contact-info > div {
    margin-bottom: 30px;
}

.contact-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

.info-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.info-icon {
    background-color: rgba(83, 132, 196, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.info-icon i {
    color: var(--primary);
}

.info-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.regions-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.regions-list li {
    display: flex;
    align-items: center;
}

.regions-list li i {
    color: var(--primary);
    margin-right: 8px;
}

.urgent-box {
    background-color: var(--dark);
    color: var(--text-light);
    padding: 25px;
    border-radius: 8px;
}

.urgent-box h3 {
    color: var(--text-light);
}

.urgent-box p {
    margin-bottom: 15px;
}

.call-button {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary);
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.call-button i {
    margin-right: 8px;
}

.call-button:hover {
    background-color: #4375b5;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: #aaa;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-about {
    max-width: 300px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 15px;
}

.footer-about p {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: var(--primary);
    color: var(--text-light);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.footer-column h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--primary);
}

.footer-column ul li i {
    color: var(--primary);
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Media Queries */
@media (max-width: 767px) {
    .separator {
        display: none;
    }
    
    .contact-info div:last-child {
        margin-top: 10px;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
}

@media (min-width: 768px) {
    .menu-button {
        display: none;
    }
    
    .desktop-nav {
        display: flex;
        align-items: center;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .regions-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 2fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}