@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');

:root {
    --primary: #22c55e;
    --primary-dark: #16a34a;
    --secondary: #0f172a;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    --text-main: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.6);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.topbar {
    background: #102a43;
    color: var(--white);
    padding: 0.45rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.topbar a {
    color: var(--white);
    text-decoration: none;
}

.header-select {
    min-height: 32px;
    border: 1px solid rgba(255,255,255,0.28);
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border-radius: 6px;
    padding: 0 0.5rem;
}

.header-select option {
    color: var(--text-main);
}

/* Navigation */
.navbar {
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar .logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 0;
}

.nav-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 5% 2rem;
    background: linear-gradient(135deg, rgba(230, 240, 255, 0.8) 0%, rgba(240, 255, 240, 0.8) 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(var(--primary), 0.1) 0%, transparent 70%);
    z-index: -1;
    animation: rotate 30s linear infinite;
}

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

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease forwards;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(50, 100, 255, 0.3);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(50, 100, 255, 0.4);
    background: var(--primary-dark);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections */
.section {
    padding: 6rem 5%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-main);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.product-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: calc(var(--radius) - 4px);
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.product-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Location Banner */
.location-banner {
    background: var(--text-main);
    color: var(--white);
    text-align: center;
    padding: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 4rem 5% 2rem;
    text-align: center;
}

.footer p {
    color: #888;
    margin-top: 2rem;
}

/* Utilities */
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); }
.text-white { color: var(--white); }
.text-primary { color: var(--primary); }

/* Swiper Hero */
.hero-slider {
    width: 100%;
    height: 78vh;
    min-height: 560px;
}
.hero-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
}
.hero-slider .swiper-button-next, .hero-slider .swiper-button-prev {
    color: var(--white);
}
.hero-slider .swiper-pagination-bullet {
    background: var(--white);
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.feature-card {
    background: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}
.feature-card:hover {
    transform: translateY(-5px);
}
.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--text-main);
}
.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials-slider {
    padding: 2rem 1rem 4rem;
}
.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
}
.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--primary);
}
.testimonial-message {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #e2e8f0;
}
.testimonial-name {
    color: var(--primary);
    font-weight: 600;
}
.testimonial-company {
    font-size: 0.85rem;
    color: #94a3b8;
}
.testimonials-slider .swiper-pagination-bullet {
    background: var(--primary);
}

/* Blogs & News Container */
.news-blog-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}
@media (max-width: 992px) {
    .news-blog-container {
        grid-template-columns: 1fr;
    }
}
.grid-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.post-card {
    display: flex;
    gap: 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    padding: 1rem;
    align-items: center;
}
.post-card.news {
    padding: 1.5rem;
}
.post-img {
    width: 150px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}
.post-date {
    background: var(--primary);
    color: var(--white);
    min-width: 70px;
    height: 70px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}
.post-date .day { font-size: 1.5rem; line-height: 1; }
.post-date .month { font-size: 0.85rem; text-transform: uppercase; }
.post-content h4 {
    margin-bottom: 0.5rem;
    color: var(--text-main);
    font-size: 1.1rem;
}
.post-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.post-content a {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}
@media (max-width: 576px) {
    .post-card { flex-direction: column; }
    .post-img { width: 100%; height: 200px; }
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
@media (max-width: 768px) {
    .contact-container { grid-template-columns: 1fr; gap: 2rem; padding: 1.5rem; }
}
.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}
.contact-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
}
.contact-info ul {
    list-style: none;
}
.contact-info li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    font-weight: 600;
}
.contact-info i {
    color: var(--primary);
    font-size: 1.2rem;
    width: 20px;
}
.contact-form .form-group {
    margin-bottom: 1.5rem;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}
.contact-form .btn {
    width: 100%;
    border: none;
    cursor: pointer;
    text-align: center;
}

/* Process Timeline */
.process-timeline {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
    padding: 2rem 0;
}
@media (max-width: 768px) {
    .process-timeline {
        flex-direction: column;
        gap: 2rem;
    }
}
.process-step {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 1;
}
.process-step::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #cbd5e1;
    z-index: -1;
}
.process-step:last-child::before {
    display: none;
}
@media (max-width: 768px) {
    .process-step::before { display: none; }
}
.step-icon {
    width: 70px;
    height: 70px;
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0 auto 1rem;
    box-shadow: var(--shadow);
}
.process-step h4 { margin-bottom: 0.5rem; }
.process-step p { font-size: 0.9rem; color: var(--text-light); }

/* Trust Badges */
.pb-0 { padding-bottom: 0 !important; }
.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}
.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-main);
}
.badge i {
    color: var(--primary);
    font-size: 1.5rem;
}

.builder-hero {
    min-height: 68vh;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #102a43, #1f7a5a);
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 5rem 5%;
}

.builder-inner {
    max-width: 760px;
}

.builder-inner h1 {
    font-size: clamp(2.25rem, 5vw, 4.75rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.builder-inner p {
    font-size: 1.2rem;
    max-width: 640px;
    margin-bottom: 2rem;
    color: #e2e8f0;
}

.content-wrap {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 3rem;
    align-items: center;
}

.content-wrap img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.content-wrap h2,
.cta-band h2 {
    font-size: 2.4rem;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.content-wrap p,
.cta-band p {
    color: var(--text-light);
}

.cta-band {
    text-align: center;
    background: #102a43;
    color: var(--white);
}

.cta-band p {
    color: #dbeafe;
    max-width: 680px;
    margin: 0 auto 2rem;
}

@media (max-width: 900px) {
    .topbar,
    .navbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero-slider {
        height: auto;
        min-height: 600px;
    }

    .content-wrap {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 4rem 1rem;
    }

    .navbar .logo {
        font-size: 1.35rem;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }
}

/* Custom Pagination Styling */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 3.5rem 0 1rem;
    user-select: none;
}

.pagination-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.75rem;
    height: 2.75rem;
    padding: 0 0.5rem;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.pagination-item:hover:not(.disabled):not(.active) {
    background: var(--bg-light);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.15);
}

.pagination-item.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.3);
}

.pagination-item.disabled {
    opacity: 0.45;
    cursor: not-allowed;
    background: var(--bg-light);
    border-color: rgba(0, 0, 0, 0.04);
    color: var(--text-light);
}

.pagination-prev,
.pagination-next {
    font-size: 1.25rem;
    font-weight: 700;
}

.pagination-pages {
    display: flex;
    gap: 0.35rem;
    align-items: center;
}

