* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #111;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(47, 128, 237, 0.1);
}

.navbar-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2F80ED;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.navbar-logo-img {
    height: 40px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.navbar-logo:hover .navbar-logo-img {
    transform: scale(1.1);
}

.navbar-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.navbar-links a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #2F80ED, #56CCF2);
    transition: width 0.3s ease;
}

.navbar-links a:hover {
    color: #2F80ED;
}

.navbar-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, #2F80ED, #56CCF2) !important;
    color: white !important;
    padding: 0.75rem 2rem !important;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(47, 128, 237, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(47, 128, 237, 0.4) !important;
}

.nav-cta::after {
    display: none !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 5% 4rem;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('media/hero.jpg') no-repeat center/cover;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-left h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero-left p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-checklist {
    list-style: none;
    margin-bottom: 2.5rem;
}

.hero-checklist li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
}

.hero-checklist li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #56CCF2, #2F80ED);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, #2F80ED, #56CCF2);
    color: white;
    box-shadow: 0 4px 15px rgba(47, 128, 237, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(47, 128, 237, 0.4);
}

.btn-secondary {
    background: white;
    color: #2F80ED;
    border: 2px solid #2F80ED;
}

.btn-secondary:hover {
    background: #2F80ED;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(47, 128, 237, 0.2);
}

.hero-right {
    display: none;
}

.hero-image-card {
    display: none;
}

.hero-image-card img {
    display: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section Styles */
section {
    padding: 5rem 5%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s, transform 0.8s;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
}

/* Services Section */
.services {
    background: linear-gradient(180deg, #ffffff, #F8FBFF);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(47, 128, 237, 0.1);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, #2F80ED, #56CCF2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(47, 128, 237, 0.25);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #111;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* Why Choose Us Section */
.why-choose {
    background: #111;
    color: white;
}

.why-choose .section-header h2,
.why-choose .section-header p {
    color: white;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.why-features {
    display: grid;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2F80ED, #56CCF2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #aaa;
    line-height: 1.7;
}

.why-image {
    position: relative;
}

.why-image-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.why-image-card img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

.metric-card {
    position: absolute;
    bottom: 2rem;
    right: -1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.metric-card h4 {
    font-size: 2rem;
    color: #2F80ED;
    margin-bottom: 0.25rem;
}

.metric-card p {
    color: #666;
    font-size: 0.9rem;
}

/* How It Works Section */
.how-it-works {
    background: linear-gradient(180deg, #F8FBFF, #ffffff);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.step-card {
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2F80ED, #56CCF2);
    color: white;
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(47, 128, 237, 0.3);
}

.step-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #111;
}

.step-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

.how-it-works .btn-container {
    text-align: center;
}

/* About Section */
.about {
    background: white;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.9;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(180deg, #ffffff, #F8FBFF);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(47, 128, 237, 0.1);
}

.testimonial-card p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2F80ED, #56CCF2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 0.2rem;
}

.author-info p {
    font-size: 0.9rem;
    color: #999;
    margin: 0;
}

/* Contact Section */
.contact {
    background: linear-gradient(180deg, #F8FBFF, #ffffff);
    padding: 5rem 5%;
}

.contact-content {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(47, 128, 237, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-left {
    padding: 1rem 0;
}

.contact-header {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-accent-bar {
    width: 60px;
    height: 12px;
    background: linear-gradient(135deg, #2F80ED, #56CCF2);
    border-radius: 6px;
    flex-shrink: 0;
}

.contact-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #111;
    margin: 0;
}

.contact-left p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    margin: 1.5rem 0 2rem 0;
}

.contact-checklist {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
}

.contact-checklist li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #333;
}

.contact-checklist li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #2F80ED, #56CCF2);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-availability {
    font-size: 0.9rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.contact-availability::before {
    content: '✓';
    color: #56CCF2;
    font-weight: bold;
    flex-shrink: 0;
}

.contact-right {
    position: relative;
}

.contact-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.contact-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.satisfaction-card {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: white;
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
    border: 1px solid rgba(47, 128, 237, 0.1);
}

.satisfaction-label {
    font-size: 0.85rem;
    color: #999;
    margin: 0 0 0.5rem 0;
}

.satisfaction-card h3 {
    font-size: 2rem;
    color: #111;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.stars {
    color: #FFB800;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.success-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #56CCF2, #2F80ED);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(47, 128, 237, 0.3);
}

/* Contact Modal */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.contact-modal.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 251, 255, 0.95));
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 3.5rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2), 0 0 1px rgba(47, 128, 237, 0.5);
    position: relative;
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(47, 128, 237, 0.15);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(47, 128, 237, 0.1);
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: linear-gradient(135deg, #2F80ED, #56CCF2);
    color: white;
    transform: scale(1.1) rotate(90deg);
}

.modal-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #111;
    background: linear-gradient(135deg, #2F80ED, #56CCF2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-content > p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.success-message {
    position: fixed;
    top: 100px;
    right: 2rem;
    background: linear-gradient(135deg, #2F80ED, #56CCF2);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(47, 128, 237, 0.4);
    z-index: 2000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.5s;
}

.success-message.show {
    opacity: 1;
    transform: translateX(0);
}

/* Footer */
.footer {
    background: #0a0e27;
    color: white;
    padding: 4rem 5% 2rem;
    border-top: 1px solid rgba(47, 128, 237, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-img {
    height: 32px;
    width: auto;
    display: block;
}

.footer-tagline {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: #2F80ED;
}

.footer-links li:not(a) {
    color: #aaa;
    font-size: 0.95rem;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(47, 128, 237, 0.2), transparent);
    margin-bottom: 2rem;
}

.footer-bottom {
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom p {
    color: #888;
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.footer-legal {
    color: #666;
    font-size: 0.85rem !important;
    font-style: italic;
}

.contact-form {
    background: transparent;
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #111;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(47, 128, 237, 0.2);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    color: #111;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #ccc;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2F80ED;
    background: white;
    box-shadow: 0 0 0 3px rgba(47, 128, 237, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #2F80ED, #56CCF2);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 15px rgba(47, 128, 237, 0.3);
    margin-top: 0.5rem;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(47, 128, 237, 0.4);
}

.form-submit:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .navbar-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-left h1 {
        font-size: 2.8rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-left h2 {
        font-size: 2rem;
    }

    .modal-content {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 4%;
    }

    .navbar-links {
        display: none;
    }

    .hero {
        padding: 6rem 4% 3rem;
    }

    .hero-left h1 {
        font-size: 2.2rem;
    }

    .hero-left p {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .contact-form {
        padding: 2rem;
    }

    .success-message {
        right: 1rem;
        left: 1rem;
    }

    .contact-card {
        padding: 2rem;
    }

    .contact-left h2 {
        font-size: 1.5rem;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .satisfaction-card {
        position: static;
        margin-top: 1.5rem;
    }

    .modal-content {
        width: 95%;
        padding: 1.5rem;
    }

    .modal-close {
        top: 1rem;
        right: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        padding: 0 1rem;
    }
}
