/*
Theme Name: novaaxis Theme
Author: Shameem
Version: 1.0
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #3b82f6; /* Form Submit Button */
    --primary-yellow: #facc15; /* Buttons, Highlights */
    --dark-blue: #111827; /* Dark backgrounds, default text */
    --light-gray: #f9fafb; /* Services background */
    --border-color: #e5e7eb;
    --text-muted: #6b7280;
    --green-whatsapp: #10b981;
    --font-family: 'Inter', sans-serif;
}

body {
    font-family: var(--font-family);
    color: var(--dark-blue);
    line-height: 1.6;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography elements */
.text-yellow {
    color: var(--primary-yellow);
}
.stars i {
    color: var(--primary-yellow);
    font-size: 0.9rem;
    margin-right: 3px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}
.btn-primary-yellow {
    background-color: var(--primary-yellow);
    color: var(--dark-blue);
}
.btn-primary-yellow:hover {
    background-color: #eab308;
}
.btn-yellow-large {
    background-color: var(--primary-yellow);
    color: var(--dark-blue);
    padding: 14px 28px;
    font-size: 1rem;
}
.btn-yellow-large i {
    margin-left: 8px;
}
.btn-green-whatsapp {
    background-color: var(--green-whatsapp);
    color: #fff;
    padding: 14px 28px;
    font-size: 1rem;
}
.btn-green-whatsapp i {
    margin-right: 8px;
    font-size: 1.2rem;
}
.btn-blue-block {
    display: block;
    width: 100%;
    background-color: #3b82f6;
    color: #fff;
    padding: 14px;
    font-size: 1rem;
    border-radius: 6px;
    margin-top: 10px;
}
.btn-blue-block:hover {
    background-color: #2563eb;
}
.btn-dark-full {
    display: block;
    width: 100%;
    background-color: #111827;
    color: #fff;
    padding: 14px;
    border-radius: 8px;
    text-align: center;
    font-size: 0.95rem;
}
.btn-dark-full:hover {
    background-color: #1f2937;
}

/* Announcement Bar */
.bottom-bar-announcement {
    background-color: #3b82f6;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
}
.announcement-text {
    display: inline-block;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Header */
.header {
    background-color: #ffffff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    color: #1e3a8a;
}
.header-logo-img {
    height: 50px;
    object-fit: contain;
}
.logo-nova {
    font-weight: 800;
}
.logo-axis {
    font-weight: 500;
}
.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}
.phone-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    gap: 8px;
}
.phone-link i {
    color: #3b82f6;
}

/* Hero Section */
.hero {
    position: relative;
    background: url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&q=80&w=1920') no-repeat center center/cover;
    padding: 80px 0;
    color: #fff;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.7) 100%);
    z-index: 1;
}
.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}
.hero-content {
    flex: 1;
    max-width: 600px;
}
.badge {
    display: inline-block;
    background-color: #3b82f6;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero-subtitle {
    font-size: 1.1rem;
    color: #d1d5db;
    margin-bottom: 35px;
    max-width: 450px;
}
.hero-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}
.hero-rating {
    display: flex;
    align-items: center;
    gap: 15px;
}
.rating-text {
    font-size: 0.85rem;
    color: #d1d5db;
}
.rating-text strong {
    color: #fff;
}

/* Hero Form Card */
.hero-form-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 35px;
    width: 420px;
    color: var(--dark-blue);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.hero-form-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}
.form-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}
.form-group {
    margin-bottom: 15px;
    position: relative;
}
.form-group input, 
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: var(--font-family);
    color: var(--dark-blue);
    background-color: #ffffff;
    appearance: none; /* Hide default select arrow */
}
.form-group input:focus, 
.form-group select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.select-wrapper {
    position: relative;
}
.select-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}
.form-guarantee {
    text-align: center;
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-top: 15px;
}

/* Partners Section */
.partners {
    background-color: #f8fafc;
    padding: 25px 0;
    border-bottom: 1px solid var(--border-color);
}
.partners-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.partner-item {
    font-weight: 700;
    font-size: 0.95rem;
    color: #64748b;
    letter-spacing: 1px;
    font-style: italic;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #f8fafc;
}
.section-heading {
    text-align: center;
    margin-bottom: 60px;
}
.section-heading h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
}
.section-heading h2 span {
    color: #1e3a8a; /* Darker blue */
}
.section-heading p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.service-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.icon-blue { background-color: #e0e7ff; color: #4f46e5; }
.icon-yellow { background-color: #fef3c7; color: #d97706; }
.icon-purple { background-color: #f3e8ff; color: #9333ea; }
.icon-green { background-color: #dcfce7; color: #16a34a; }

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0f172a;
}
.service-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    flex-grow: 1;
}
.service-fees {
    font-size: 0.75rem;
    margin-bottom: 20px;
    color: #3b82f6;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.service-fees strong {
    font-size: 1.1rem;
    color: #1e3a8a;
}

/* Professional Difference Section */
.difference {
    background-color: #0f172a;
    color: #ffffff;
    padding: 100px 0;
}
.difference-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}
.difference-content {
    flex: 1;
    max-width: 550px;
}
.difference-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 50px;
    line-height: 1.2;
}
.difference-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.difference-item {
    display: flex;
    gap: 20px;
}
.diff-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}
.diff-text h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.diff-text p {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* Testimonial Card */
.difference-testimonial {
    flex: 1;
    max-width: 500px;
}
.testimonial-card {
    background-color: #1e293b;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #334155;
}
.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: #cbd5e1;
    margin: 25px 0;
    line-height: 1.6;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #e2e8f0;
}
.author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.author-info span {
    font-size: 0.7rem;
    color: #94a3b8;
    letter-spacing: 1px;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: #ffffff;
}
.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}
.section-header-center h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    text-transform: uppercase;
}
.header-line {
    width: 60px;
    height: 4px;
    background-color: #3b82f6;
    margin: 15px auto 25px auto;
}
.section-header-center p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.step-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.step-img-wrapper {
    position: relative;
    height: 180px;
    width: 100%;
}
.step-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.step-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #3b82f6;
    color: #ffffff;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    letter-spacing: 0.5px;
}
.step-content {
    padding: 25px 20px;
    text-align: center;
}
.step-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}
.step-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Consultation Form Section */
.consultation-section {
    background-color: #2e4374; /* Matches design dark blue */
    padding: 80px 0;
    text-align: center;
}
.consultation-container {
    max-width: 800px;
    margin: 0 auto;
}
.consultation-section h2 {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.2);
}
.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}
.consultation-form .form-row input,
.consultation-form .form-row select {
    width: 100%;
    padding: 16px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-family);
    color: #0f172a;
    background-color: #ffffff;
    appearance: none;
}
.consultation-form .form-row input:focus,
.consultation-form .form-row select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.4);
}
.consultation-form .select-wrapper {
    position: relative;
}
.consultation-form .select-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}
.btn-submit-large {
    background-color: #facc15;
    color: #0f172a;
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 8px;
    border: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
}
.btn-submit-large:hover {
    background-color: #eab308;
}
.secure-text {
    color: #94a3b8;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Footer Section */
.footer {
    background-color: #ffffff;
    padding: 50px 0 30px;
    border-top: 1px solid #e5e7eb;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}
.footer-left {
    flex: 1;
    min-width: 250px;
    max-width: 400px;
}
.footer-left .logo {
    margin-bottom: 15px;
}
.footer-left p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}
.footer-center {
    flex: 1;
    min-width: 250px;
    text-align: center;
}
.footer-center h4 {
    font-size: 1rem;
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 12px;
}
.footer-center p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 4px;
}
.footer-center a {
    color: #3b82f6;
    font-size: 0.85rem;
    font-weight: 600;
}
.footer-center a:hover {
    text-decoration: underline;
}
.footer-right {
    flex: 1;
    min-width: 150px;
    display: flex;
    justify-content: flex-end;
}
.footer-right .social-icons {
    display: flex;
    gap: 15px;
}
.footer-right .social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f1f5f9;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}
.footer-right .social-icons a:hover {
    background-color: #3b82f6;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid, .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-container {
        gap: 30px;
    }
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .bottom-bar-announcement {
        padding: 10px 0;
        text-align: left;
    }
    .announcement-text {
        padding-left: 100%;
        animation: marquee 20s linear infinite;
    }
    .header {
        padding: 10px 0;
    }
    .header-right {
        gap: 15px;
    }
    .header-right .btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    .header-logo-img {
        height: 40px;
    }
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-content {
        margin-bottom: 40px;
    }
    .hero-subtitle {
        margin: 0 auto 30px auto;
    }
    .hero-cta {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }
    .hero-rating {
        justify-content: center;
    }
    .hero-form-card {
        width: 100%;
        max-width: 420px;
    }
    .partners-container {
        justify-content: center;
        gap: 30px;
    }
    .difference-container {
        flex-direction: column;
    }
    .difference-content {
        max-width: 100%;
    }
    .difference-content h2 {
        text-align: center;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .footer-right {
        justify-content: center;
        width: 100%;
    }
    .footer-right .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .header-right .btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    .header-logo-img {
        height: 35px;
    }
    .bottom-bar-announcement {
        font-size: 0.75rem;
        padding: 8px 10px;
    }
    .services-grid, .steps-grid {
        grid-template-columns: 1fr;
    }
    .header-right .phone-link {
        display: none; /* Hide phone on very small screens to save space */
    }
    .hero-title {
        font-size: 2.3rem;
    }
    .section-header-center h2 {
        font-size: 2rem;
    }
    .consultation-section h2 {
        font-size: 1.8rem;
    }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}
.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0,0,0,0.4);
    color: #ffffff;
}

/* Ensure the icon fits well on mobile */
@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
}
