/* Modern Premium CSS Stylesheet for Home Loan DSA Website */

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

:root {
    /* Color Palette */
    --primary: #2563eb;        /* Royal Blue */
    --primary-hover: #1d4ed8;
    --secondary: #06b6d4;      /* Vibrant Cyan */
    --dark-bg: #0f172a;        /* Deep Slate Blue */
    --dark-card: #1e293b;
    --light-bg: #f8fafc;       /* Off-White Slate */
    --light-card: #ffffff;
    --text-dark: #0f172a;
    --text-muted: #475569;
    --text-light: #f8fafc;
    --accent: #f59e0b;         /* Gold/Amber */
    --success: #10b981;        /* Emerald Green */
    --danger: #ef4444;
    --border-color: #e2e8f0;
    
    /* Layout Helpers */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* Global Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

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

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.py-section { padding: 80px 0; }
.my-5 { margin: 40px 0; }
.mb-2 { margin-bottom: 10px; }
.mb-4 { margin-bottom: 20px; }
.mb-5 { margin-bottom: 40px; }
.d-flex { display: flex; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }
.flex-column { flex-direction: column; }
.grid { display: grid; }
.gap-2 { gap: 15px; }
.gap-3 { gap: 30px; }

/* Grid Layouts */
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 992px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
    .grid-4, .grid-3 { grid-template-columns: 1fr; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: var(--text-light);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6);
    color: var(--text-light);
}

.btn-secondary {
    background: var(--light-card);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: var(--border-color);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
}

/* Header & Nav */
.header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.25rem;
    font-family: var(--font-heading);
}

.logo-img {
    height: 40px;
    width: 40px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.logo-section:hover .logo-img {
    transform: scale(1.08) rotate(2deg);
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--primary);
}

.navbar {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-link-item {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.nav-link-item:hover, .nav-link-item.active {
    color: var(--primary);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--light-card);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        gap: 15px;
        border-bottom: 1px solid var(--border-color);
    }
    .navbar.active {
        display: flex;
    }
}

/* Marquee Announcement Bar */
.marquee-bar {
    background: linear-gradient(90deg, var(--dark-bg) 0%, var(--primary) 100%);
    color: var(--text-light);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 25s linear infinite;
    font-size: 0.9rem;
    font-weight: 500;
}

@keyframes marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 58, 138, 0.9) 100%), 
                url('../images/hero_home.jpg') center/cover no-repeat;
    color: var(--text-light);
    padding: 120px 0;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: white;
}

.hero-text h1 span {
    background: linear-gradient(135deg, var(--secondary) 0%, #a5f3fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.15rem;
    color: #94a3b8;
    margin-bottom: 35px;
    max-width: 600px;
}

@media (max-width: 992px) {
    .hero-text p {
        margin: 0 auto 35px;
    }
}

.hero-cta {
    display: flex;
    gap: 15px;
}

@media (max-width: 992px) {
    .hero-cta {
        justify-content: center;
    }
}

/* Deal Card (Hero Right Panel) */
.deal-card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.deal-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.deal-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.deal-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: white;
}

.deal-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.deal-stat:last-of-type {
    border-bottom: none;
    margin-bottom: 20px;
}

.deal-stat-label {
    color: #94a3b8;
    font-size: 0.95rem;
}

.deal-stat-val {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

.deal-stat-val.highlight {
    color: var(--secondary);
}

/* Feature Boxes */
.features-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.feature-box {
    background: var(--light-card);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.feature-box h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.feature-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .features-strip {
        grid-template-columns: 1fr;
        margin-top: 30px;
        padding: 0 20px;
    }
}

/* Loan Products Section */
.section-title {
    font-size: 2.25rem;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 50px;
}

.product-card {
    background: var(--light-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.product-card-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: var(--transition);
}

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

.product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 25px;
    transition: var(--transition);
}

.product-card:hover .product-icon {
    transform: scale(1.1) rotate(5deg);
}

.product-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.product-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.product-card .btn {
    margin-top: auto;
    width: 100%;
}

/* Calculators Section */
.calculator-box {
    background: var(--light-card);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.calc-nav {
    display: flex;
    background: var(--light-bg);
    border-bottom: 1px solid var(--border-color);
}

.calc-nav-tab {
    flex: 1;
    text-align: center;
    padding: 20px;
    font-family: var(--font-heading);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-muted);
    border-bottom: 3px solid transparent;
}

.calc-nav-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: white;
}

.calc-body {
    padding: 40px;
}

.calc-panel {
    display: none;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}

.calc-panel.active {
    display: grid;
}

@media (max-width: 992px) {
    .calc-panel.active {
        grid-template-columns: 1fr;
    }
}

.calc-inputs {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.calc-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.calc-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calc-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.calc-value-box {
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
}

/* Range Input Style */
.slider-input {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: #e2e8f0;
    outline: none;
    cursor: pointer;
}

.slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.slider-input::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    background: var(--primary-hover);
}

/* Results Display Card */
.calc-results {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1e293b 100%);
    color: white;
    border-radius: var(--border-radius);
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.result-main {
    text-align: center;
    margin-bottom: 30px;
}

.result-main-label {
    color: #94a3b8;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.result-main-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    font-family: var(--font-heading);
}

.result-main-value.saving {
    color: var(--success);
}

.result-breakdown {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.breakdown-row:last-child {
    border-bottom: none;
}

.breakdown-label {
    color: #94a3b8;
}

.breakdown-val {
    font-weight: 600;
}

/* Visual Breakdown Bar */
.visual-breakdown-bar {
    display: flex;
    height: 10px;
    border-radius: 5px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 10px 0 10px 0;
}

.visual-bar-principal {
    background: linear-gradient(90deg, var(--primary) 0%, #3b82f6 100%);
    transition: width 0.3s ease;
}

.visual-bar-interest {
    background: linear-gradient(90deg, var(--secondary) 0%, #22d3ee 100%);
    transition: width 0.3s ease;
}

.visual-breakdown-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 25px;
}

.v-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.color-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot-p {
    background-color: var(--primary);
}

.dot-i {
    background-color: var(--secondary);
}

/* Bank Comparison Area */
.filter-btn {
    background: var(--light-card);
    border: 1px solid var(--border-color);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    color: var(--text-muted);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.bank-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.bank-card {
    background: var(--light-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 25px 30px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.bank-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.bank-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bank-logo-placeholder {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f1f5f9, #cbd5e1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
}

.bank-name {
    font-size: 1.15rem;
    font-weight: 700;
}

.bank-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    text-align: center;
}

.bank-detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bank-detail-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
}

.bank-detail-val {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
}

.bank-action {
    text-align: right;
}

@media (max-width: 992px) {
    .bank-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px 20px;
    }
    .bank-info {
        flex-direction: column;
    }
    .bank-details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .bank-action {
        text-align: center;
    }
}

.btn-show-more {
    display: block;
    margin: 30px auto 0;
}

/* FAQs Section */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--light-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-header {
    padding: 20px 25px;
    font-weight: 600;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-icon {
    font-size: 1.3rem;
    transition: var(--transition);
}

.faq-body {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    color: var(--text-muted);
    font-size: 0.95rem;
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-item.active .faq-body {
    padding: 5px 25px 25px;
    max-height: 200px;
}

/* About Us Section Page & Styles */
.about-hero {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 58, 138, 0.9) 100%),
                url('../images/about_advisors.jpg') center/cover no-repeat;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .about-split {
        grid-template-columns: 1fr;
    }
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

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

.stat-num {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Founders / Advisors Profiles */
.advisors-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .advisors-grid {
        grid-template-columns: 1fr;
    }
}

.advisor-card {
    background: var(--light-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.advisor-photo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    box-shadow: var(--shadow);
}

.advisor-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.advisor-role {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.advisor-bio {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

/* Contact Us Styles */
.contact-hero {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 58, 138, 0.9) 100%),
                url('../images/contact_banner.jpg') center/cover no-repeat;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.contact-split {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
}

@media (max-width: 992px) {
    .contact-split {
        grid-template-columns: 1fr;
    }
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    background: var(--light-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.contact-info-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 8px;
    color: var(--primary);
}

.contact-person {
    margin-bottom: 20px;
}

.contact-person:last-child {
    margin-bottom: 0;
}

.contact-person-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.contact-person-phone {
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-form-panel {
    background: var(--light-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.form-group input, .form-group select, .form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background-color: var(--light-bg);
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* Footer Styles */
.footer {
    background-color: var(--dark-bg);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
}

@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}

.footer-logo-desc h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-logo-desc h3 span {
    color: var(--secondary);
}

.footer-logo-desc p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-column h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
}

.footer-contact-item i {
    color: var(--secondary);
    margin-top: 4px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a:hover {
    color: white;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Legal Pages Styling (Terms and Privacy) */
.legal-container {
    max-width: 900px;
    margin: 50px auto;
    background-color: white;
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .legal-container {
        padding: 30px 20px;
        margin: 20px 10px;
    }
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.legal-last-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.legal-container h2 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary);
}

.legal-container p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.legal-container ul {
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.legal-container li {
    margin-bottom: 8px;
}

/* Floating Contact Widget */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: var(--transition);
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-3px);
}

.floating-whatsapp {
    background-color: #25d366;
}

.floating-phone {
    background-color: var(--primary);
}

/* Blog Specific Styles */
.blog-table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
}

.blog-table th, .blog-table td {
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.blog-table th {
    background-color: var(--primary);
    color: white;
    font-weight: 700;
}

.blog-table tr:nth-child(even) {
    background-color: rgba(15, 23, 42, 0.02);
}

.blog-cta {
    background: var(--light-card);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: var(--border-radius);
    margin: 40px 0;
    text-align: center;
    box-shadow: var(--shadow);
}

.blog-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.blog-cta p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 20px;
}

.blog-body-text p {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.blog-body-text h2 {
    font-size: 1.75rem;
    margin: 35px 0 15px 0;
    color: var(--primary);
}

.blog-body-text h3 {
    font-size: 1.35rem;
    margin: 25px 0 10px 0;
}

.blog-body-text ul, .blog-body-text ol {
    margin-bottom: 25px;
    padding-left: 20px;
}

.blog-body-text li {
    margin-bottom: 10px;
    color: var(--text-dark);
}

/* Magazine Style Grid on Home Page */
.magazine-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .magazine-grid {
        grid-template-columns: 1fr;
    }
}

.magazine-featured {
    background: var(--light-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
}

.magazine-featured:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.magazine-featured-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    transition: var(--transition);
}

.magazine-featured:hover .magazine-featured-img {
    transform: scale(1.02);
}

.magazine-featured-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.magazine-featured-content h3 {
    font-size: 1.6rem;
    margin: 15px 0;
    line-height: 1.3;
}

.magazine-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.magazine-sidebar-item {
    background: var(--light-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: center;
    transition: var(--transition);
    height: 120px;
}

.magazine-sidebar-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.magazine-sidebar-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.magazine-sidebar-content {
    padding: 20px;
}

.magazine-sidebar-content h4 {
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--text-dark);
    margin: 5px 0 0 0;
    font-weight: 700;
}

/* Grid 5 Layout and Compact Products Grid */
.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1200px) {
    .grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .grid-5 {
        grid-template-columns: 1fr;
    }
}

/* Simple Product Cards matching user screenshot */
.product-simple-card {
    background: var(--light-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
}

.product-simple-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    background-color: white;
}

.product-simple-icon {
    width: 70px;
    height: 70px;
    background: rgba(37, 99, 235, 0.05);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.product-simple-card:hover .product-simple-icon {
    transform: scale(1.1);
    background-color: var(--primary);
    color: white;
}

.product-simple-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 700;
    margin: 0;
    font-family: var(--font-heading);
}

/* Expert Pill Button matching screenshot */
.btn-expert-pill {
    display: inline-flex;
    align-items: center;
    background: var(--primary);
    color: white;
    font-weight: 700;
    padding: 2px 2px 2px 25px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-expert-pill span {
    margin-right: 20px;
    font-family: var(--font-heading);
}

.btn-expert-pill .btn-arrow-icon {
    width: 44px;
    height: 44px;
    background-color: #1e293b; /* Dark slate circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-expert-pill:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.btn-expert-pill:hover .btn-arrow-icon {
    transform: translateX(3px);
}

/* Image Card variants for services */
.product-image-card {
    background: var(--light-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
}

.product-image-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    background-color: white;
}

.product-image-card-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-image-card-body {
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

.product-image-card-body h3 {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 700;
    margin: 0;
    font-family: var(--font-heading);
    text-align: center;
}

.product-image-card-body .product-simple-icon {
    margin-bottom: 12px;
}

/* Replicated Premium Deal of the Day Card */
.premium-deal-card {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 24px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 50px 25px 25px 25px;
    position: relative;
    width: 100%;
    max-width: 440px;
    margin: 20px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Ribbons for Deal of the Day header */
.premium-deal-header-ribbon {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: #3b82f6; /* Bright blue flag */
    color: white;
    font-size: 1.15rem;
    font-weight: 900;
    padding: 10px 30px;
    border-radius: 4px;
    box-shadow: var(--shadow);
    letter-spacing: 1px;
    white-space: nowrap;
    z-index: 10;
    text-transform: uppercase;
}

/* Ribbon folded corners shadow */
.premium-deal-header-ribbon::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 10px;
    border-width: 8px 8px 0 0;
    border-color: #1e3a8a transparent transparent transparent;
    border-style: solid;
}

.premium-deal-header-ribbon::before {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 10px;
    border-width: 8px 0 0 8px;
    border-color: #1e3a8a transparent transparent transparent;
    border-style: solid;
}

/* White rows inside the card */
.premium-deal-row {
    background: white;
    border-radius: 14px;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), inset 0 2px 4px rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    text-decoration: none;
}

.premium-deal-row:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.premium-deal-val {
    font-size: 1.85rem;
    font-weight: 800;
    color: #1e3a8a; /* Deep Navy Blue */
    font-family: var(--font-heading);
}

.premium-deal-lbl-container {
    text-align: right;
}

.premium-deal-lbl {
    font-size: 0.75rem;
    font-weight: 800;
    color: #475569; /* Slate */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.premium-deal-desc {
    font-size: 0.7rem;
    color: #94a3b8; /* Light slate */
    font-weight: 500;
}

/* Action button at the bottom */
.btn-premium-deal {
    background: #1e3a8a; /* Navy background button */
    color: white;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.5px;
    padding: 18px;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    text-transform: uppercase;
    box-shadow: var(--shadow);
    margin-top: 10px;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
}

.btn-premium-deal:hover {
    background: #1e293b; /* Hover to slate-800 */
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
