﻿
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* Light Theme */
[data-theme="light"] {
    --bg-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --bg-secondary: #f8fafc;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --card-bg: #ffffff;
    --input-bg: #ffffff;
    --input-border: #e2e8f0;
    --navbar-bg: rgba(255, 255, 255, 0.95);
    --navbar-text: #1e293b;
    --dropdown-bg: #ffffff;
    --slab-table-header: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --result-bg: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

/* Dark Theme */
[data-theme="dark"] {
    --bg-primary: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    --bg-secondary: #0f172a;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --card-bg: #1e293b;
    --input-bg: #334155;
    --input-border: #475569;
    --navbar-bg: rgba(30, 41, 59, 0.98);
    --navbar-text: #f1f5f9;
    --dropdown-bg: #334155;
    --slab-table-header: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --result-bg: linear-gradient(135deg, #1e3a8a 0%, #312e81 100%);
}

/* Gradient Theme */
[data-theme="gradient"] {
    --bg-primary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --bg-secondary: #fef3c7;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --card-bg: #ffffff;
    --input-bg: #ffffff;
    --input-border: #fbbf24;
    --navbar-bg: rgba(255, 255, 255, 0.95);
    --navbar-text: #1e293b;
    --dropdown-bg: #ffffff;
    --slab-table-header: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --result-bg: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

/* Ocean Theme */
[data-theme="ocean"] {
    --bg-primary: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --bg-secondary: #ecfeff;
    --text-primary: #0e7490;
    --text-secondary: #0891b2;
    --card-bg: #ffffff;
    --input-bg: #ffffff;
    --input-border: #06b6d4;
    --navbar-bg: rgba(255, 255, 255, 0.95);
    --navbar-text: #0e7490;
    --dropdown-bg: #ffffff;
    --slab-table-header: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    --result-bg: linear-gradient(135deg, #cffafe 0%, #a5f3fc 100%);
}
.slab-details-table .table td {
    background-color: var(--card-bg) !important;
}
.slab-details-table .table th {
    background-color: var(--input-bg) !important;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-primary);
    min-height: 100vh;
    color: var(--text-primary);
}
.lang-hi body {
    font-family: 'Noto Sans Devanagari', 'Hind', 'Poppins', sans-serif !important;
}

/* Animated Background Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: float 15s infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

/* Stunning Navbar */
.navbar-custom {
    background: var(--navbar-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navbar-text) !important;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.5px;
    text-decoration: none;
}

.brand-logo {
    height: 40px; /* adjust size */
    width: auto;
    border-radius: 8px; /* optional */
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.navbar-menu {
    display: flex;
    gap: 25px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .navbar-menu li a {
        color: var(--navbar-text);
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        padding: 8px 16px;
        border-radius: 10px;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .navbar-menu li a:hover {
            background: var(--primary-gradient);
            color: white;
            transform: translateY(-2px);
        }

.navbar-controls {
    display: flex;
    gap: 15px;
    align-items: center;
}

.theme-switcher, .language-switcher {
    position: relative;
}

.dropdown-toggle-custom {
    background: var(--card-bg);
    border: 2px solid var(--input-border);
    color: var(--text-primary);
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 0.95rem;
}

    .dropdown-toggle-custom:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        border-color: #667eea;
    }

    .dropdown-toggle-custom i:first-child {
        font-size: 1.2rem;
    }

    .dropdown-toggle-custom i:last-child {
        font-size: 0.8rem;
        transition: transform 0.3s ease;
    }

.dropdown.show .dropdown-toggle-custom i:last-child {
    transform: rotate(180deg);
}

.dropdown-menu-custom {
    background: var(--dropdown-bg);
    border: 2px solid var(--input-border);
    border-radius: 20px;
    padding: 15px;
    min-width: 220px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    margin-top: 12px;
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
}

    .dropdown-menu-custom.show {
        display: block;
        animation: dropdownSlide 0.3s ease-out;
    }

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item-custom {
    color: var(--text-primary);
    padding: 12px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 5px;
}
.dropdown-item-custom-btn {
    background: none;
    border: none;
   
    cursor: pointer;
}

    .dropdown-item-custom:last-child {
        margin-bottom: 0;
    }

    .dropdown-item-custom:hover {
        background: var(--primary-gradient);
        color: white;
        transform: translateX(5px);
    }

    .dropdown-item-custom.active {
        background: var(--primary-gradient);
        color: white;
    }

    .dropdown-item-custom i {
        font-size: 1.2rem;
        width: 20px;
        text-align: center;
    }

/* Mobile Menu Toggle */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--bs-light);
    padding: 10px 0;
    border-top: 1px solid #ddd;
}

    .mobile-menu a {
        padding: 12px 20px;
        display: block;
        text-decoration: none;
        color: #333;
        font-weight: 500;
    }

    .mobile-menu.active {
        display: flex;
    }

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    padding: 10px 15px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Hero Section */
.hero-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: white;
    padding: 60px 20px;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    letter-spacing: -2px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.4rem;
    opacity: 0.95;
    font-weight: 400;
    margin-bottom: 30px;
}

/* Main Container */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 15px;
    position: relative;
    z-index: 1;
}

/* Calculator Card */
.calculator-card {
    background: var(--card-bg);
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
    transition: all 0.4s ease;
    margin-bottom: 30px;
}

    .calculator-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 40px 80px rgba(0,0,0,0.4);
    }

.card-header-custom {
    background: var(--slab-table-header);
    color: white;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .card-header-custom::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        animation: rotate 10s linear infinite;
    }

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.card-header-custom .icon {
    font-size: 3rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.card-header-custom h2, .card-header-custom .h2 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    position: relative;
    z-index: 1;
}

.card-header-custom p {
    position: relative;
    z-index: 1;
    opacity: 0.9;
    font-size: 1rem;
    margin-top: 10px;
}

.card-body-custom {
    padding: 40px;
}

.form-label {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-control, .form-select {
    background: var(--input-bg);
    border: 2px solid var(--input-border);
    border-radius: 15px;
    padding: 14px 20px;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

    .form-control:focus, .form-select:focus {
        background: var(--input-bg);
        border-color: #667eea;
        box-shadow: 0 0 0 0.3rem rgba(102, 126, 234, 0.25);
        transform: translateY(-2px);
    }

.input-group-text {
    background: var(--slab-table-header);
    color: white;
    border: none;
    font-weight: 700;
    border-radius: 0 15px 15px 0;
    padding: 14px 20px;
    font-size: 1rem;
}

.btn-calculate {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 15px;
    width: 100%;
    margin-top: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .btn-calculate::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .btn-calculate:hover::before {
        width: 300px;
        height: 300px;
    }

    .btn-calculate:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
    }

/* Slab Editor */
#slabList .d-flex {
    background: var(--result-bg);
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
    transition: all 0.3s ease;
    padding: 15px;
    margin-bottom: 10px;
}

    #slabList .d-flex:hover {
        transform: translateX(5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

/* Result Section */
.result-section {
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.result-header {
    text-align: center;
    margin-bottom: 30px;
}

    .result-header h3 {
        color: var(--text-primary);
        font-weight: 900;
        font-size: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

.slab-details-table {
    background: var(--card-bg);
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

    .slab-details-table thead {
        background: var(--slab-table-header);
        color: white;
    }

    .slab-details-table th {
        font-weight: 800;
        padding: 18px;
        font-size: 1rem;
    }

    .slab-details-table td {
        padding: 16px 18px;
        color: var(--text-primary);
        font-weight: 600;
        font-size: 0.95rem;
    }

    .slab-details-table tbody tr {
        border-bottom: 2px solid var(--input-border);
        transition: all 0.3s ease;
    }

        .slab-details-table tbody tr:hover {
            background: var(--input-border);
            transform: scale(1.02);
        }

.charges-breakdown {
    background: var(--card-bg);
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    margin-bottom: 25px;
}

    .charges-breakdown h5 {
        color: var(--text-primary);
        font-weight: 800;
        margin-bottom: 25px;
        font-size: 1.3rem;
        text-align: center;
    }

.charge-item {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 2px solid var(--input-border);
    font-size: 1rem;
    align-items: center;
}

    .charge-item:last-child {
        border-bottom: none;
    }

.charge-label {
    color: var(--text-secondary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.charge-value {
    color: var(--text-primary);
    font-weight: 800;
    font-size: 1.1rem;
}

.total-amount {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 25px;
    border-radius: 25px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 900;
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.4);
    position: relative;
    overflow: hidden;
}

    .total-amount::before {
        content: '₹';
        position: absolute;
        font-size: 15rem;
        opacity: 0.05;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-weight: 900;
    }

    .total-amount .label {
        font-size: 1.1rem;
        opacity: 0.95;
        font-weight: 700;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

/* Modal Styling */
.custom-modal {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    border: 2px solid var(--input-border);
}

.custom-modal-header {
    background: var(--slab-table-header);
    color: white;
    border-bottom: 2px solid var(--input-border);
    padding: 20px;
}

.table-custom-header {
    background: var(--slab-table-header);
    color: white;
}

    .table-custom-header th {
        font-weight: 700;
        padding: 15px;
    }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .navbar-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .card-body-custom {
        padding: 25px;
    }

    .card-header-custom {
        padding: 30px 20px;
    }

        .card-header-custom h2 {
            font-size: 1.6rem;
        }

    .navbar-controls {
        gap: 10px;
    }

    .dropdown-toggle-custom {
        border: none;
        background: none;
        cursor: pointer;
        font-size: 18px;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .navbar-brand {
        font-size: 1.3rem;
    }

        .navbar-brand i {
            font-size: 1.8rem;
        }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-calculate {
        padding: 14px 30px;
        font-size: 1.1rem;
    }
}


.states-section {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    color: var(--text-primary);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    /*    background: var(--result-bg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;*/
    letter-spacing: -1px;
    opacity: 0.8;
    text-shadow: 0 0 2px rgba(0,0,0,0.2);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
    opacity:0.7;
}

.states-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.state-card {
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 2px solid var(--input-border);
}

    .state-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.2);
        border-color: #667eea;
    }

.state-link {
    display: flex;
    align-items: center;
    padding: 25px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    height: 100%;
}

    .state-link:hover {
        color: var(--text-primary);
        text-decoration: none;
    }

.state-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

    .state-icon i {
        font-size: 1.5rem;
        color: white;
    }

.state-card:hover .state-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.state-content {
    flex: 1;
}

.state-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.state-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.state-arrow {
    width: 40px;
    height: 40px;
    background: var(--result-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

    .state-arrow i {
        font-size: 1rem;
        color: var(--text-secondary);
        transition: all 0.3s ease;
    }

.state-card:hover .state-arrow {
    background: var(--primary-gradient);
    transform: translateX(5px);
}

    .state-card:hover .state-arrow i {
        color: white;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .states-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }

    .state-link {
        padding: 20px;
    }

    .state-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }

        .state-icon i {
            font-size: 1.3rem;
        }

    .state-name {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .states-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .state-link {
        padding: 15px;
    }
}



.blog-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.blog-header {
    color: var(--text-primary);
}

.blog-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
    /*    background: var(--result-bg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;*/
    letter-spacing: -1px;
    opacity: 0.8;
    text-shadow: 0 0 2px rgba(0,0,0,0.2);
}

.blog-subtitle {
    font-size: 1.3rem;
    color: var(--text-primary);
    font-weight: 500;
    opacity: 0.7;
}

.blog-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 0;
}

.steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    margin-bottom: 15px;
    background: var(--result-bg);
    border-radius: 15px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

    .step-item:hover {
        transform: translateX(10px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }

    .step-item:last-child {
        margin-bottom: 0;
    }

.step-icon {
    font-size: 1.5rem;
    color: #667eea;
    width: 40px;
    text-align: center;
}

.language-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: var(--result-bg);
    border-radius: 10px;
    font-weight: 600;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--result-bg);
    border-radius: 12px;
    border-left: 4px solid #10b981;
    transition: all 0.3s ease;
}

    .benefit-item:hover {
        transform: translateX(5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

.benefit-icon {
    color: #10b981;
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

/* Tip Card Styling */
.tip-card {
    background: var(--result-bg);
    border-left: 6px solid #f59e0b;
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

    .tip-card:hover {
        transform: translateX(10px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    }

    .tip-card .icon {
        color: #f59e0b;
        font-size: 2rem;
        margin-bottom: 15px;
        display: block;
    }

    .tip-card strong {
        color: var(--text-primary);
        font-size: 1.3rem;
        display: block;
        margin-bottom: 10px;
        font-weight: 800;
    }

    .tip-card p {
        color: var(--text-secondary);
        margin: 0;
        line-height: 1.7;
        font-size: 1rem;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .blog-title {
        font-size: 2.2rem;
    }

    .blog-subtitle {
        font-size: 1.1rem;
    }

    .step-item {
        padding: 15px;
        gap: 15px;
    }

    .step-icon {
        font-size: 1.3rem;
        width: 30px;
    }

    .benefit-item {
        padding: 12px 15px;
        gap: 12px;
    }

    .tip-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .blog-section {
        padding: 10px;
    }

    .blog-title {
        font-size: 1.8rem;
    }

    .card-body-custom {
        padding: 25px;
    }
}


.footer-custom {
    background: var(--card-bg);
    border-top: 3px solid var(--input-border);
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    padding: 50px 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer-brand {
    display: flex;
    align-items: start;
    gap: 20px;
}

/*.brand-logo {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

    .brand-logo i {
        font-size: 2rem;
        color: white;
    }*/

.brand-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-info p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 8px 10px;
    border-radius: 10px;
}

    .footer-link:hover {
        color: var(--text-primary);
        background: var(--result-bg);
        transform: translateY(-2px);
    }

    .footer-link i {
        width: 16px;
        text-align: center;
        color: #667eea;
    }

.footer-bottom {
    border-top: 1px solid var(--input-border);
    padding: 20px 0;
    text-align: center;
}

.copyright p {
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 0 25px;
    }

    .footer-brand {
        flex-direction: column;
        gap: 15px;
        align-items:center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .brand-logo {
        text-align:center
    }

        .brand-logo i {
            font-size: 1.5rem;
        }

    .brand-info h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .footer-content {
        padding: 0 15px;
    }

    .footer-links {
        gap: 15px;
    }

    .footer-link {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
}



.policy-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.policy-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-align: center;
    margin-bottom: 40px;
}

.policy-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.policy-section {
    margin-bottom: 30px;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

    .policy-list li {
        padding: 15px 20px;
        margin-bottom: 10px;
        background: var(--result-bg);
        border-radius: 12px;
        border-left: 4px solid #667eea;
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }

        .policy-list li i {
            color: #667eea;
            margin-top: 3px;
            flex-shrink: 0;
        }




.terms-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.terms-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-align: center;
    margin-bottom: 40px;
}

.terms-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.terms-section {
    margin-bottom: 30px;
}

.terms-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

    .terms-list li {
        padding: 15px 20px;
        margin-bottom: 10px;
        background: var(--result-bg);
        border-radius: 12px;
        border-left: 4px solid #667eea;
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }

        .terms-list li i {
            color: #667eea;
            margin-top: 3px;
            flex-shrink: 0;
        }

.warning-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
}

[data-theme="dark"] .warning-box {
    background: linear-gradient(135deg, #78350f 0%, #92400e 100%);
    border-color: #d97706;
}

.warning-box i {
    color: #d97706;
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: block;
}



/* Responsive Design */
@media (max-width: 768px) {
    .terms-title {
        font-size: 2.2rem;
    }

    .terms-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {


    .terms-title {
        font-size: 1.8rem;
    }
}



.contact-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.contact-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-align: center;
    margin-bottom: 40px;
}

.contact-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.form-label {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-control, .form-select, .form-textarea {
    background: var(--input-bg);
    border: 2px solid var(--input-border);
    border-radius: 15px;
    padding: 16px 22px;
    font-size: 1.05rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    width: 100%;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

    .form-control:focus, .form-select:focus, .form-textarea:focus {
        background: var(--input-bg);
        border-color: #667eea;
        box-shadow: 0 0 0 0.3rem rgba(102, 126, 234, 0.25);
        transform: translateY(-2px);
        outline: none;
    }

.btn-submit {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 18px 45px;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 15px;
    width: 100%;
    margin-top: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

    .btn-submit::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .btn-submit:hover::before {
        width: 300px;
        height: 300px;
    }

    .btn-submit:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
    }

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.contact-info-card {
    background: var(--result-bg);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

    .contact-info-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

    .contact-icon i {
        font-size: 1.8rem;
        color: white;
    }

.contact-detail {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.contact-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.success-message {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    margin-top: 20px;
    display: none;
}


/* Responsive Design */
@media (max-width: 768px) {
    .contact-title {
        font-size: 2.2rem;
    }

    .contact-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .main-container {
        padding: 20px 15px;
    }

    .contact-title {
        font-size: 1.8rem;
    }


    .form-control, .form-select, .form-textarea {
        padding: 14px 18px;
    }
}




