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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #5423c6 100%);
    position: relative;
    padding: 100px 0 120px;
    text-align: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1)"/><stop offset="100%" style="stop-color:rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="600" cy="700" r="120" fill="url(%23a)"/></svg>') no-repeat center;
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 400;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #fff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Main Content */
.main-content {
    /* padding: 20px 20px 20px 20px; */
    background: #ffffff;
}


.content-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.section-subtitle {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 50px;
    line-height: 1.7;
}

.contact-cards {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

.contact-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #5423c6);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.12);
    border-color: #667eea;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #667eea, #5423c6);
    border-radius: 50%;
    /* Makes it perfectly round */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    /* Remove bottom margin */
    margin-right: 16px;
    /* Add right margin for spacing */
    flex-shrink: 0;
    /* Prevent icon from shrinking */
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
}

.contact-card p {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 12px;
}

.contact-card a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #5423c6;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.trust-indicators {
    background: white;
    padding: 32px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    text-align: center;
}

.trust-indicators h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 24px;
    align-items: center;
    opacity: 0.6;
}

.trust-logo {
    width: 80px;
    height: 40px;
    background: #f3f4f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: #6b7280;
}


.contact-info-section .section-title {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #2c2c51;
    /* LeadXcel purple or deep slate */
}

.contact-info-section .section-detail {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.contact-info-section .section-link {
    font-size: 0.9rem;
    color: #5b3cc4;
    font-weight: 500;
    text-decoration: none;
}

.contact-info-section .section-link:hover {
    text-decoration: underline;
    color: #3d28a0;
}


/* Contact Form */
.form-container {
    background: white;
    padding: 50px 30px 30px 30px;
    border-radius: 24px;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
}

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


.form-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.form-subtitle {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 32px;

}

.value-props {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.value-prop {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #059669;
    font-size: 0.95rem;
    font-weight: 500;
}

.value-prop svg {
    width: 20px;
    height: 20px;
}

.form-grid {
    display: grid;
    gap: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    position: relative;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.form-label .required {
    color: #ef4444;
    margin-left: 4px;
}

.form-input {
    width: 100%;
    padding: 8px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 0.8rem;
    background: #fafbfc;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #1a1a1a;
}

.form-input:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.form-input::placeholder {
    color: #9ca3af;
}

textarea.form-input {
    resize: vertical;
    min-height: 100px;
}

.form-select {
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7"/></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px;
    padding-right: 50px;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #5423c6 100%);
    color: white;
    padding: 10px 35px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(102, 126, 234, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.privacy-note {
    text-align: center;
    color: #6b7280;
    font-size: 0.9rem;
    margin-top: 24px;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
}

.privacy-note svg {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    vertical-align: middle;
}

/* Response guarantee */
.guarantee-badge {
    display: inline-flex;
    /* align-items: center; */
    gap: 8px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 12px 69px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 20px;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.3);
}

.guarantee-badge svg {
    width: 20px;
    height: 20px;
}

.map-marker {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #6f42c1;
    /* LeadXcel purple */
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 10px rgba(111, 66, 193, 0.4);
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s ease;
}

.map-marker:hover {
    transform: translate(-50%, -50%) scale(1.15);
}

.map-marker::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    background: rgba(111, 66, 193, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-ring 1.6s ease-out infinite;
    z-index: -1;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

.map-marker .tooltip {
    display: none;
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: #6f42c1;
    color: #fff;
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 4px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 20;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map-marker:hover .tooltip {
    display: block;
    opacity: 1;
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-info {
        position: static;
        order: 2;
    }

    .form-container {
        order: 1;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .form-container {
        padding: 40px 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .value-props {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .form-title {
        font-size: 2rem;
    }
}

/* Loading state */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 900px) {

    .contact-cards {
        gap: 42px;
        margin-bottom: 50px;
        margin-top: -55px;
        flex-wrap: wrap;
    }

    .contact-card {
        padding: 15px;
        border-radius: 15px;
    }

    .contact-card h3 {
        font-size: 18px;
    }

    .contact-card p {

        font-size: 14px;
    }

    .btn.btn-primary {
        font-size: 15px;
    }

    .form-label {
        font-size: 0.8rem;
    }

    .form-row {

        gap: 0px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-grid {
        gap: 0px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
    }


    .contact-info-section .section-detail {
        font-size: 0.9rem;
    }

    .section-title {

        margin-bottom: -30px;
    }

    .form-title {
        font-size: 1.2rem;
    }

    .submit-btn {

        font-size: 0.9rem;
    }
}

.form-message {
    margin-top: 15px;
    font-weight: bold;
}

.success {
    color: green;
}

.error {
    color: red;
}