/* assets/css/style.css - Sacred Vastu Lightish Green, Orange & White Premium Theme System */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Outfit:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    /* Theme Color Tokens */
    --light-mint-bg: #f0fdf4;
    --light-mint-soft: #ecfdf5;
    --light-mint-card: #ffffff;
    --light-mint-border: #bbf7d0;

    --emerald-primary: #10b981;
    --emerald-dark: #047857;
    --emerald-deep: #062d1f;
    --emerald-gradient: linear-gradient(135deg, #10b981 0%, #047857 100%);
    --emerald-glow: rgba(16, 185, 129, 0.25);

    --orange-primary: #f97316;
    --orange-dark: #ea580c;
    --orange-light: #fb923c;
    --orange-gradient: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    --orange-glow: rgba(249, 115, 22, 0.35);

    /* Strict Readability Text Tokens */
    --text-heading: #062d1f;
    --text-body: #1e293b;
    --text-muted: #64748b;
    --text-emerald: #047857;
    --text-orange: #ea580c;
    --text-white: #ffffff;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--light-mint-bg);
    color: var(--text-body);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-heading);
    letter-spacing: -0.01em;
}

.font-subheading {
    font-family: 'Outfit', sans-serif;
}

/* Glassmorphism / Elevated Light Cards */
.glass-card {
    background: var(--light-mint-card);
    border: 1px solid var(--light-mint-border);
    border-radius: 18px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.08);
}

.glass-card:hover {
    border-color: var(--orange-primary);
    box-shadow: 0 16px 45px rgba(249, 115, 22, 0.18), 0 0 20px var(--orange-glow);
    transform: translateY(-5px);
}

/* Vibrant Orange & Emerald Buttons */
.btn-orange, .btn-gold {
    background: var(--orange-gradient) !important;
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    padding: 10px 24px;
    box-shadow: 0 4px 18px var(--orange-glow);
    transition: all 0.3s ease;
}

.btn-orange:hover, .btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(249, 115, 22, 0.5);
    color: #ffffff !important;
}

.btn-emerald {
    background: var(--emerald-gradient) !important;
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    padding: 10px 24px;
    box-shadow: 0 4px 18px var(--emerald-glow);
    transition: all 0.3s ease;
}

.btn-emerald:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(16, 185, 129, 0.45);
    color: #ffffff !important;
}

.btn-outline-orange, .btn-outline-gold {
    background: transparent !important;
    border: 2px solid var(--orange-primary) !important;
    color: var(--orange-dark) !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    border-radius: 12px;
    padding: 8px 22px;
    transition: all 0.3s ease;
}

.btn-outline-orange:hover, .btn-outline-gold:hover {
    background: var(--orange-gradient) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: 0 4px 18px var(--orange-glow);
}

.btn-outline-emerald {
    background: transparent !important;
    border: 2px solid var(--emerald-primary) !important;
    color: var(--emerald-dark) !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    border-radius: 12px;
    padding: 8px 22px;
    transition: all 0.3s ease;
}

.btn-outline-emerald:hover {
    background: var(--emerald-gradient) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: 0 4px 18px var(--emerald-glow);
}

/* Main Header Sticky Container */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1080;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(6, 45, 31, 0.08);
    transition: all 0.3s ease;
}

.header-sticky {
    position: relative;
    width: 100%;
    background: #ffffff;
}

/* Navbar Navbar */
.navbar-vastu {
    background: #ffffff;
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
    padding: 12px 0;
}

.navbar-vastu .nav-link {
    color: var(--text-heading);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    margin: 0 4px;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.navbar-vastu .nav-link:hover,
.navbar-vastu .nav-link.active {
    color: var(--orange-dark) !important;
    background: rgba(249, 115, 22, 0.1);
}

/* Topbar Styling & Bullet Reset */
.topbar, .top-bar {
    background: var(--emerald-deep) !important;
    color: #ffffff !important;
    font-size: 0.88rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(249, 115, 22, 0.3);
    position: relative;
    z-index: 1081;
}

.topbar-contact-info ul, .top-bar ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 24px !important;
}

.topbar-contact-info li, .top-bar li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
}

.topbar-contact-info a, .top-bar a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    transition: color 0.25s ease;
}

.topbar-contact-info a:hover, .top-bar a:hover {
    color: var(--orange-light) !important;
}

/* Section Padding Utility */
.section-padding {
    padding: 80px 0;
}

/* Card Alignment & Equal Heights */
.product-card, .service-card, .blog-card, .team-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card .card-body, .service-card .card-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

/* Hero Section */
.hero-wrapper {
    position: relative;
    padding: 90px 0 75px;
    background: linear-gradient(135deg, #dcfce7 0%, #f0fdf4 50%, #fff7ed 100%);
}

.hero-title {
    font-size: 3.3rem;
    font-weight: 800;
    color: var(--emerald-deep);
    line-height: 1.18;
}

.hero-title span {
    color: var(--orange-primary);
}

/* Badges */
.badge-emerald, .badge-gold {
    background: var(--emerald-gradient) !important;
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    padding: 6px 14px;
    border-radius: 20px;
}

.badge-orange, .badge-indigo {
    background: var(--orange-gradient) !important;
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    padding: 6px 14px;
    border-radius: 20px;
}

/* Price Tags */
.price-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--orange-dark) !important;
}

.price-tag-old {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-left: 6px;
}

/* Section Titles */
.section-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--emerald-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 8px;
    display: inline-block;
}

/* Accordion Styling */
.accordion-vastu .accordion-item {
    background: #ffffff;
    border: 1px solid var(--light-mint-border);
    margin-bottom: 12px;
    border-radius: 14px !important;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.accordion-vastu .accordion-button {
    background: #ffffff;
    color: var(--text-heading);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    padding: 18px 22px;
    box-shadow: none;
}

.accordion-vastu .accordion-button:not(.collapsed) {
    color: var(--orange-dark);
    background: rgba(249, 115, 22, 0.08);
}

.accordion-vastu .accordion-body {
    color: var(--text-body);
    padding: 16px 22px 22px;
    line-height: 1.7;
}

/* Table Styling for Clear Visibility */
.table-vastu {
    color: var(--text-body);
    border-color: var(--light-mint-border);
}

.table-vastu th {
    background: #ecfdf5;
    color: var(--emerald-deep);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    border-bottom: 2px solid var(--emerald-primary);
}

.table-vastu td {
    background: #ffffff;
    vertical-align: middle;
}

/* Form Controls with Sharp Contrast */
.form-control, .form-select {
    background-color: #ffffff !important;
    color: #0f172a !important;
    border: 1px solid #a7f3d0 !important;
    border-radius: 10px;
}

.form-control:focus, .form-select:focus {
    border-color: var(--orange-primary) !important;
    box-shadow: 0 0 0 0.25rem rgba(249, 115, 22, 0.2) !important;
}

.form-control::placeholder {
    color: #94a3b8 !important;
}

/* Keyframe Micro-Animations */
@keyframes floatAnim {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.floating-element {
    animation: floatAnim 4s ease-in-out infinite;
}

/* Footer Styling */
.footer-vastu {
    background: var(--emerald-deep);
    color: #ffffff;
    padding: 60px 0 25px;
    border-top: 3px solid var(--orange-primary);
}

.footer-title {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--orange-light);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.25s ease;
}

.footer-links a:hover {
    color: var(--orange-light);
    padding-left: 5px;
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .section-title {
        font-size: 1.75rem;
    }
    .topbar-contact-info ul, .top-bar ul {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 6px !important;
    }
}
