/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header */
.header-land {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a5f 100%);
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    height: 40px;
    width: auto;
}

.logo-icon {
    font-size: 32px;
    color: #4ecdc4;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.phone-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #4ecdc4;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.phone-btn:hover {
    background: #45b7b8;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4ecdc4;
    font-weight: 500;
}

.feature i {
    font-size: 18px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    align-items: center;
}

.cta-primary {
    background: linear-gradient(135deg, #4ecdc4 0%, #45b7b8 100%);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

.cta-secondary {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    padding: 16px 24px;
    border: 2px solid #2c5aa0;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #2c5aa0;
    color: white;
    transform: translateY(-2px);
}

/* Hero Form */
.hero-form {
    position: relative;
}

.form-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.form-card h3 {
    color: #2c5aa0;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4ecdc4;
    background: white;
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
}

.form-submit {
    background: linear-gradient(135deg, #4ecdc4 0%, #45b7b8 100%);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
}

/* Trust Signals */
.trust-signals {
    background: white;
    padding: 60px 0;
    border-bottom: 1px solid #e9ecef;
}

.trust-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.trust-icon {
    background: linear-gradient(135deg, #4ecdc4 0%, #45b7b8 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.trust-text h4 {
    color: #2c5aa0;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.trust-text p {
    color: #666;
    font-size: 14px;
}

/* Services Section */
.services {
    background: #f8f9fa;
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 20px;
    color: #666;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-icon {
    background: linear-gradient(135deg, #4ecdc4 0%, #45b7b8 100%);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 25px;
}

.service-card h3 {
    color: #2c5aa0;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    color: #666;
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.service-card li::before {
    content: "✓";
    color: #4ecdc4;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Testimonials Section */
.testimonials {
    background: white;
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.testimonial-content {
    margin-bottom: 30px;
}

.quote-icon {
    color: #4ecdc4;
    font-size: 24px;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    background: linear-gradient(135deg, #4ecdc4 0%, #45b7b8 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.author-info h4 {
    color: #2c5aa0;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.author-info span {
    color: #666;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a5f 100%);
    color: white;
    padding: 80px 0;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-text p {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}

.large {
    padding: 20px 40px;
    font-size: 18px;
}

.cta-secondary.large {
    border-color: white;
    color: white;
}

.cta-secondary.large:hover {
    background: white;
    color: #2c5aa0;
}

/* Footer */
.footer-land {
    background: #1e3a5f;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-info .logo {
    margin-bottom: 20px;
}

.footer-info p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-contact h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #4ecdc4;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-item i {
    color: #4ecdc4;
    width: 20px;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #4ecdc4;
}

.footer-bottom {
    border-top: 1px solid #2c5aa0;
    padding-top: 30px;
    text-align: center;
    opacity: 0.7;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px 20px;
    border-bottom: 1px solid #e9ecef;
}

.modal-header h3 {
    color: #2c5aa0;
    font-size: 24px;
    font-weight: 600;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #2c5aa0;
}

.modal .contact-form {
    padding: 20px 40px 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .logo-text {
        align-items: center;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 16px;
    }
    
    .form-card {
        padding: 30px 20px;
    }
    
    .form-card h3 {
        font-size: 20px;
    }
    
    .trust-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .trust-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .large {
        padding: 18px 32px;
        font-size: 16px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .modal-header,
    .modal .contact-form {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .cta-text h2 {
        font-size: 28px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 25px 15px;
    }
    
    .form-card {
        padding: 25px 15px;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .phone-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .logo-image {
        height: 30px;
    }
    
    .hero-features {
        gap: 12px;
    }
    
    .feature {
        font-size: 14px;
    }
    
    .feature i {
        font-size: 16px;
    }
}

.header--bind,
.page-topper,
.footer,
.copyright {
    display: none !important;
}