:root {
    --primary-color: #1e293b;
    /* Deep Navy Blue */
    --secondary-color: #3b82f6;
    /* Bright Blue */
    --accent-color: #f59e0b;
    /* Amber Gold */
    --text-main: #334155;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.text-center {
    text-align: center;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.hidden {
    display: none;
}

/* Header/Nav */
header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.025em;
}

.nav-brand span {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 6rem 0 4rem;
    text-align: center;
    background: transparent;
    /* Changed from linear-gradient */
    overflow: hidden;
}

.video-hero {
    color: var(--white);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    /* Dark overlay for text readability */
    z-index: -1;
}

.relative-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.video-hero h1 {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: none;
    -webkit-text-fill-color: initial;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.video-hero p {
    color: #e2e8f0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Form Container */
.main-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-main);
    /* Reset text color inside card */
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.card-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #ecfdf5;
    /* Green very light */
    color: #059669;
    /* Green dark */
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Action Buttons */
.action-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .action-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.btn-accent {
    background-color: var(--white);
    border: 2px solid var(--accent-color);
    color: var(--text-main);
}

.btn-accent:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px -1px rgba(59, 130, 246, 0.5);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: #f1f5f9;
}

/* Features / Privacy */
.features {
    padding: 4rem 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: #e0f2fe;
    color: var(--secondary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Partners Section */
.partners {
    padding: 3rem 0;
    background-color: #f1f5f9;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.partners-title {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 3rem;
    align-items: center;
}

.partner-logo-img {
    height: 85px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy effect */
    cursor: pointer;
    padding: 0.5rem;
    /* Give it some breathing room for the hover effect */
    margin: 1rem;
}

.partner-logo-img:hover {
    filter: grayscale(0%) opacity(1) drop-shadow(0 8px 16px rgba(59, 130, 246, 0.2));
    /* Color + Glow */
    transform: translateY(-8px) scale(1.15);
    /* Lift up & Scale */
}

/* Product Catalog */
.products-section {
    padding: 3rem 0;
    background-color: var(--white);
    border-bottom: 1px solid #f1f5f9;
}

.products-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.product-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--bg-light);
    border: 1px solid #e2e8f0;
    border-radius: 9999px;
    font-weight: 600;
    color: var(--text-main);
    transition: all 0.3s ease;
    cursor: default;
}

.product-pill:hover {
    background-color: var(--white);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.product-pill i {
    color: var(--accent-color);
}

/* Tabs Section */
.tabs-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
    /* Slight contrast change since products is white */
}

.tabs-section h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.tabs-container {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 1rem 2rem;
    border: none;
    background: transparent;
    border-bottom: 3px solid transparent;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: var(--secondary-color);
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--accent-color);
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.tab-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

/* Blog/Info Cards */
.info-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-image-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #cbd5e1 0%, #94a3b8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
}

.info-content {
    padding: 1.5rem;
}

.info-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #e0f2fe;
    color: var(--secondary-color);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.info-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.info-link {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.info-link:hover {
    text-decoration: underline;
}

/* Testimonials */
.testimonials {
    text-align: center;
    padding: 3rem 0;
    background-color: #fff;
}

.stars {
    color: var(--accent-color);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.rating-text {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.rating-sub {
    color: var(--text-light);
}

/* Blog Slider Section (Dark) */
.blog-slider-section {
    padding: 5rem 0;
    background-color: #1A0B40;
    /* Deep indigo/purple from the image */
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.blog-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    padding: 0 1.5rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.blog-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    max-width: 600px;
    color: var(--white);
    position: relative;
}

.vertical-text-blog {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    position: absolute;
    left: -3rem;
    top: 0.5rem;
    height: 100px;
}

.btn-blog-header {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    border-radius: 999px;
    /* Pill shape */
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-blog-header:hover {
    background: var(--white);
    color: #1A0B40;
}

/* Slider Container */
.blog-carousel-container {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 1.5rem 4rem;
    /* Bottom padding for hover effects */
    scroll-behavior: smooth;
    max-width: 1400px;
    margin: 0 auto;
    scrollbar-width: none;
    /* Firefox */
}

.blog-carousel-container::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.blog-card-dark {
    min-width: 350px;
    max-width: 350px;
    background-color: #2D2455;
    /* Lighter slightly than bg */
    border-radius: 1.5rem;
    overflow: hidden;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.blog-card-dark:hover {
    transform: translateY(-10px);
}

.blog-card-img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

/* Gradients for cards if no image */
.bg-gradient-1 {
    background: linear-gradient(135deg, #6366f1, #a855f7);
}

/* Indigo-Purple */
.bg-gradient-2 {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

/* Blue-Cyan */
.bg-gradient-3 {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

/* Amber-Red */
.bg-gradient-4 {
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
}

/* Pink-Purple */

.blog-dark-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-dark-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--white);
}

.blog-dark-excerpt {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.btn-read-more-pill {
    align-self: flex-start;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-read-more-pill:hover {
    background: var(--white);
    color: #1A0B40;
    border-color: var(--white);
}

/* Nav Buttons */
.slider-nav-btn {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    color: #1A0B40;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
    font-size: 1.2rem;
    transition: transform 0.2s;
}

.slider-nav-btn:hover {
    transform: translateY(-50%) scale(1.1);
}

.nav-prev {
    left: 1rem;
}

.nav-next {
    right: 1rem;
}

@media (max-width: 768px) {
    .blog-main-title {
        font-size: 2.5rem;
    }

    .blog-slider-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .slider-nav-btn {
        display: none;
    }

    /* Hide arrows on mobile, just scroll */
    .vertical-text-blog {
        display: none;
    }
}

/* Contact */
.contact-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.contact-phones {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.phone-link:hover {
    color: var(--accent-color);
}

/* Footer */
footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 2rem 0;
    text-align: center;
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.footer-links a:hover {
    color: var(--white);
}

/* =========================================
   BACKGROUND DECORATION & PREMIUM CARDS
   ========================================= */

/* Background Decoration */
body {
    background-color: #f8fafc;
    background-image:
        radial-gradient(circle at 0% 0%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    background-attachment: fixed;
}

/* Premium Image Grid System */
.premium-grid-section {
    padding: 4rem 1.5rem;
    position: relative;
    z-index: 10;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Main card spans full width */
.premium-grid .card-full {
    grid-column: 1 / -1;
    height: 350px;
}

.premium-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 280px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
}

.premium-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.premium-card:hover img {
    transform: scale(1.05);
}

/* Overlay Gradient - Blue/Purple style */
.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(to top, rgba(30, 27, 75, 0.9) 0%, rgba(59, 130, 246, 0.4) 50%, rgba(59, 130, 246, 0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: white;
}

/* Text Styling */
.card-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.25rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    display: inline-block;
    width: fit-content;
    padding-bottom: 2px;
}

.card-title-lg {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card-title-lg span {
    color: #93c5fd;
    /* Light blue accent */
}

/* Specific Tints */
.tint-purple .card-overlay {
    background: linear-gradient(to top, rgba(88, 28, 135, 0.9) 0%, rgba(139, 92, 246, 0.4) 60%, transparent 100%);
}

.tint-blue .card-overlay {
    background: linear-gradient(to top, rgba(30, 58, 138, 0.9) 0%, rgba(59, 130, 246, 0.4) 60%, transparent 100%);
}

@media (max-width: 768px) {
    .premium-grid {
        grid-template-columns: 1fr;
    }

    .premium-grid .card-full {
        height: 250px;
    }
}