* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
}

.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    text-decoration: none;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.phone-btn {
    background: linear-gradient(135deg, #FF3B30 0%, #D32F2F 100%);
    color: white;
}

.float-btn:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.top-bar {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    text-align: center;
    padding: 12px;
    font-weight: 700;
    font-size: 15px;
}

.header {
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 9999;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 30px;
    position: relative;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #1e3c72;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    position: relative;
}

.nav-link:hover {
    color: #FF6B35;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #FF6B35;
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #1e3c72;
    border-radius: 2px;
    transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.logo {
    font-size: 20px;
    font-weight: 900;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-number {
    font-size: 14px;
    font-weight: 800;
    color: #1e3c72;
    text-decoration: none;
}

.header-cta {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(255,107,53,0.4);
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.hero {
    background: linear-gradient(135deg, rgba(30,60,114,0.96) 0%, rgba(42,82,152,0.96) 100%);
    color: white;
    padding: 80px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,107,53,0.9);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(255,107,53,0.4);
}

.hero h1 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.15;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
}

.hero-highlight {
    color: #FFD700;
    text-shadow: 0 0 30px rgba(255,215,0,0.6);
}

.hero p {
    font-size: 22px;
    margin-bottom: 35px;
    font-weight: 500;
    opacity: 0.95;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta {
    padding: 20px 45px;
    font-size: 19px;
    font-weight: 800;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta-primary {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(255,107,53,0.5);
}

.hero-cta-secondary {
    background: white;
    color: #1e3c72;
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

.hero-trust {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-number {
    font-size: 38px;
    font-weight: 900;
    color: #FFD700;
    display: block;
    text-shadow: 0 0 20px rgba(255,215,0,0.5);
}

.trust-label {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 5px;
}

.urgent-bar {
    background: linear-gradient(135deg, #FF3B30 0%, #D32F2F 100%);
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 18px;
    font-weight: 700;
}

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

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

.section-title {
    font-size: 42px;
    font-weight: 900;
    color: #1e3c72;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s;
    border: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-12px);
    border-color: #FF6B35;
}

.feature-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #1e3c72;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
}

.price-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 80px 30px;
    color: white;
}

.price-highlight {
    background: rgba(255,215,0,0.2);
    border: 3px solid #FFD700;
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.price-tag {
    font-size: 72px;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 0 0 30px rgba(255,215,0,0.6);
    margin: 20px 0;
}

.price-old {
    font-size: 32px;
    text-decoration: line-through;
    opacity: 0.6;
    color: #ff6b6b;
}

.price-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 30px;
    text-align: left;
}

.price-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
}

.price-feature::before {
    content: '✓';
    background: #4CAF50;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-section {
    background: white;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 38px;
    font-weight: 900;
    color: #1e3c72;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.stat-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border-left: 4px solid #FF6B35;
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: #1e3c72;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.about-badge {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 15px 40px rgba(255,107,53,0.3);
    line-height: 1.4;
}

.about-badge-number {
    font-size: 72px;
    display: block;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255,215,0,0.5);
}

.service-regions {
    background: #f8f9fa;
}

.regions-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.region-tab {
    padding: 15px 40px;
    background: white;
    border: 3px solid #e0e0e0;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.region-tab.active {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    border-color: #1e3c72;
}

.region-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.region-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    color: #1e3c72;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

.region-item:hover {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    transform: translateY(-5px) scale(1.05);
    border-color: #FFD700;
    box-shadow: 0 10px 25px rgba(255,107,53,0.3);
}

.testimonials-slider {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 80px 30px;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    animation: slideTestimonials 40s linear infinite;
    width: max-content;
}

@keyframes slideTestimonials {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.testimonials-slider:hover .testimonials-track {
    animation-play-state: paused;
}

.testimonial-slide {
    background: white;
    padding: 40px;
    border-radius: 20px;
    min-width: 400px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    flex-shrink: 0;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-stars {
    color: #FFD700;
    font-size: 24px;
}

.testimonial-date {
    color: #999;
    font-size: 13px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    font-weight: 700;
}

.testimonial-name {
    font-weight: 700;
    color: #1e3c72;
    font-size: 16px;
}

.testimonial-location {
    color: #666;
    font-size: 14px;
}

.map-section {
    background: white;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
    height: 500px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 80px 30px;
    color: white;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.form-title {
    font-size: 32px;
    font-weight: 900;
    color: #1e3c72;
    text-align: center;
    margin-bottom: 35px;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #1e3c72;
    font-weight: 700;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6B35;
    box-shadow: 0 0 0 4px rgba(255,107,53,0.1);
}

.form-submit {
    width: 100%;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer {
    background: #1a1a1a;
    color: white;
    padding: 50px 30px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #FFD700;
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* Services Section */
.services-section {
    background: white;
    padding: 80px 30px;
}

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

.service-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px 30px;
    border-radius: 20px;
    border-left: 5px solid #FF6B35;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 24px;
    font-weight: 800;
    color: #1e3c72;
    margin-bottom: 15px;
}

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

.service-benefits {
    list-style: none;
    margin-bottom: 25px;
}

.service-benefits li {
    padding: 8px 0;
    color: #555;
    font-size: 14px;
    font-weight: 600;
}

.service-btn {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(255,107,53,0.3);
}

.service-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255,107,53,0.4);
}

/* Contact Info Section */
.contact-info-section {
    background: white;
    padding: 80px 30px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.contact-info-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-top: 3px solid #FF6B35;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.contact-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.contact-info-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: #1e3c72;
    margin-bottom: 15px;
}

.contact-link {
    display: inline-block;
    color: #FF6B35;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
}

.contact-link:hover {
    color: #F7931E;
    text-decoration: underline;
}

/* Why Us Section */
.why-us-section {
    background: #f8f9fa;
    padding: 80px 30px;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 36px; }
    .hero p { font-size: 18px; }
    .price-tag { font-size: 48px; }
    .section-title { font-size: 32px; }
    .header-content { flex-direction: row; gap: 15px; padding: 15px; flex-wrap: wrap; }
    .about-content { grid-template-columns: 1fr; gap: 40px; }
    .testimonial-slide { min-width: 300px; }
    .map-wrapper { height: 350px; }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 9998;
    }
    
    .nav-menu.active {
        max-height: 400px;
    }
    
    .nav-link {
        padding: 15px 30px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .header-phone {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        order: 3;
    }
}