/* ==========================================================================
   DESIGN SYSTEM & VARIABLES (Kotak-Inspired Premium Theme)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --primary-color: #E31E24;      /* Kotak Red */
    --primary-hover: #c11419;
    --primary-light: rgba(227, 30, 36, 0.08);
    --secondary-color: #003366;    /* Deep Trust Blue */
    --secondary-hover: #002244;
    --secondary-light: rgba(0, 51, 102, 0.06);
    
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-card: rgba(255, 255, 255, 0.85);
    
    --text-dark: #0f172a;          /* Slate 900 */
    --text-muted: #475569;         /* Slate 600 */
    --text-light: #94a3b8;         /* Slate 400 */
    
    --border-color: #e2e8f0;
    --border-focus: rgba(227, 30, 36, 0.25);
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Effects & Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 10px 25px -5px rgba(0, 51, 102, 0.08), 0 8px 10px -6px rgba(0, 51, 102, 0.04);
    --shadow-lg: 0 20px 40px -15px rgba(0, 51, 102, 0.12), 0 10px 15px -10px rgba(0, 51, 102, 0.06);
    --shadow-glow-red: 0 8px 20px rgba(227, 30, 36, 0.25);
    --shadow-glow-blue: 0 8px 20px rgba(0, 51, 102, 0.2);
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
}

/* ==========================================================================
   GLOBAL RESET & INITIAL SETUP
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

section {
    scroll-margin-top: 100px; /* Offset to prevent sticky navbar overlap */
}

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

/* Dynamic Particle Canvas Overlay Background */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none; /* Allows user to click elements underneath */
}

/* Base structural wrapper to overlay canvas */
main, footer {
    position: relative;
    z-index: 1;
}

header {
    position: relative;
    z-index: 1040; /* Higher than main to ensure navbar floats above content and remains clickable */
}

/* Typography styles */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-weight: 700;
    line-height: 1.25;
}

p {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   UTILITIES & REUSABLE LAYOUT STYLES
   ========================================================================== */
.section-padding {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

.bg-section-light {
    background-color: var(--bg-light);
}

.text-red { color: var(--primary-color) !important; }
.text-blue { color: var(--secondary-color) !important; }

/* Custom Buttons */
.btn-premium {
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 14px 32px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-premium-red {
    background: var(--primary-color);
    color: var(--bg-white);
    box-shadow: var(--shadow-glow-red);
}

.btn-premium-red:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    color: var(--bg-white);
    box-shadow: 0 12px 25px rgba(227, 30, 36, 0.35);
}

.btn-premium-blue {
    background: var(--secondary-color);
    color: var(--bg-white);
    box-shadow: var(--shadow-glow-blue);
}

.btn-premium-blue:hover {
    background: var(--secondary-hover);
    transform: translateY(-3px);
    color: var(--bg-white);
    box-shadow: 0 12px 25px rgba(0, 51, 102, 0.3);
}

.btn-premium-outline {
    background: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.btn-premium-outline:hover {
    background: var(--secondary-color);
    color: var(--bg-white);
    transform: translateY(-3px);
}

/* Glassmorphism Panel Template */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-md);
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(227, 30, 36, 0.15);
}

/* Section Header Styling */
.section-title-wrapper {
    margin-bottom: 60px;
    text-align: center;
}

.section-tag {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 12px;
    display: inline-block;
    background: var(--primary-light);
    padding: 6px 16px;
    border-radius: 50px;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.75rem;
    }
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 12px auto 0 auto;
    border-radius: 2px;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ==========================================================================
   HEADER & GLASS NAVIGATION
   ========================================================================== */
.custom-navbar {
    padding: 20px 0;
    transition: var(--transition-smooth);
    background: transparent;
    border-bottom: 1px solid transparent;
}

.custom-navbar.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-color);
}

.brand-logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 1.3rem;
    font-weight: 800;
    box-shadow: var(--shadow-sm);
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.1;
}

.brand-subtitle {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-link-premium {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark) !important;
    padding: 8px 16px !important;
    border-radius: var(--border-radius-sm);
    position: relative;
}

.nav-link-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition-fast);
    transform-origin: right;
}

.nav-link-premium:hover {
    color: var(--primary-color) !important;
}

.nav-link-premium:hover::after,
.nav-link-premium.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link-premium.active {
    color: var(--primary-color) !important;
}

.navbar-toggler-premium {
    border: none;
    padding: 5px;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.navbar-toggler-premium:focus {
    box-shadow: none;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 60px;
    background: radial-gradient(circle at 80% 20%, rgba(0, 51, 102, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(227, 30, 36, 0.02) 0%, transparent 40%);
}

@media (max-width: 991px) {
    .hero-wrapper {
        padding-top: 100px;
        min-height: auto;
    }
}

.hero-tag {
    background: var(--primary-light);
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.15;
    margin-bottom: 20px;
}

@media (max-width: 1200px) {
    .hero-title { font-size: 2.75rem; }
}
@media (max-width: 576px) {
    .hero-title { font-size: 2.15rem; }
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 580px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

/* Advisor Profile Display Box */
.advisor-card-wrapper {
    perspective: 1000px;
}

.advisor-card {
    border-left: 5px solid var(--primary-color);
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.advisor-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--secondary-light) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.advisor-photo-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
}

.advisor-photo-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    padding: 4px;
    box-shadow: var(--shadow-md);
}

.advisor-photo-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.advisor-avatar-fallback {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.advisor-experience-badge {
    position: absolute;
    bottom: 0;
    right: -10px;
    background: var(--primary-color);
    color: var(--bg-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 50px;
    box-shadow: var(--shadow-glow-red);
    text-transform: uppercase;
}

.advisor-name {
    font-size: 1.8rem;
    margin-bottom: 4px;
}

.advisor-designation {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.advisor-org {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.advisor-quick-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    border-top: 1px dashed var(--border-color);
    padding-top: 20px;
}

.stat-mini-card {
    text-align: center;
}

.stat-mini-val {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
}

.stat-mini-lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-image-stack {
    position: relative;
    padding-bottom: 40px;
}

.about-shape-bg {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, var(--secondary-light) 0%, rgba(227, 30, 36, 0.02) 100%);
    border-radius: var(--border-radius-lg);
    z-index: -1;
}

.about-profile-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    border-top: 6px solid var(--secondary-color);
}

.about-quote-mark {
    font-size: 3rem;
    line-height: 1;
    color: rgba(227, 30, 36, 0.15);
    font-family: Georgia, serif;
    margin-bottom: -15px;
}

.about-profile-text {
    font-size: 1.08rem;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-achievements {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.achievement-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.achievement-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.achievement-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 2px;
}

.achievement-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================================
   PLANS SECTION
   ========================================================================== */
.plan-card {
    height: 100%;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: var(--border-radius-md);
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.plan-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(227, 30, 36, 0.15);
}

.plan-card:hover::after {
    transform: scaleX(1);
}

.plan-icon-wrapper {
    width: 64px;
    height: 64px;
    background: var(--secondary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.75rem;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.plan-card:hover .plan-icon-wrapper {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow-red);
}

.plan-card-title {
    font-size: 1.35rem;
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.plan-card:hover .plan-card-title {
    color: var(--primary-color);
}

.plan-card-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 25px;
    flex-grow: 1;
}

.plan-learn-more {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--secondary-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
}

.plan-learn-more i {
    transition: var(--transition-fast);
}

.plan-card:hover .plan-learn-more {
    color: var(--primary-color);
}

.plan-card:hover .plan-learn-more i {
    transform: translateX(5px);
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.why-feature-card {
    padding: 30px;
    border-radius: var(--border-radius-md);
    height: 100%;
}

.why-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 20px;
    box-shadow: var(--shadow-glow-red);
}

.why-feature-card:nth-child(even) .why-icon-box {
    background: var(--secondary-color);
    box-shadow: var(--shadow-glow-blue);
}

.why-card-title {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.why-card-desc {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ==========================================================================
   BENEFITS (STATISTICS) SECTION
   ========================================================================== */
.stats-section-bg {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #001f40 100%);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.stats-section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.stat-box {
    text-align: center;
    padding: 30px 15px;
    position: relative;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    opacity: 0.95;
    margin-bottom: 5px;
}

.stat-description {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 0;
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonial-card {
    padding: 40px;
    height: 100%;
}

.testimonial-quote-icon {
    font-size: 2.2rem;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 15px;
}

.testimonial-rating {
    color: #ffb800;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.testimonial-feedback {
    font-size: 1rem;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 25px;
}

.testimonial-user-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--secondary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-color);
}

.testimonial-user-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 2px;
}

.testimonial-user-location {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-accordion-wrapper .accordion-item {
    background: var(--bg-card);
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: var(--border-radius-md) !important;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.faq-accordion-wrapper .accordion-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(227, 30, 36, 0.15);
}

.faq-accordion-wrapper .accordion-button {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    padding: 22px 25px;
    background: transparent;
    border: none;
    transition: var(--transition-fast);
}

.faq-accordion-wrapper .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    box-shadow: none;
}

.faq-accordion-wrapper .accordion-button:focus {
    box-shadow: none;
}

.faq-accordion-wrapper .accordion-body {
    padding: 0 25px 25px 25px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-accordion-wrapper .accordion-button::after {
    background-size: 1.1rem;
    transition: var(--transition-smooth);
}

/* ==========================================================================
   ENQUIRY FORM SECTION
   ========================================================================== */
.form-panel-wrapper {
    padding: 50px;
    border-top: 6px solid var(--primary-color);
}

@media (max-width: 576px) {
    .form-panel-wrapper {
        padding: 30px 20px;
    }
}

.form-title {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.form-desc {
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.form-floating-premium {
    position: relative;
    margin-bottom: 20px;
}

.form-control-premium {
    width: 100%;
    padding: 14px 20px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    outline: none;
    transition: var(--transition-fast);
    background: rgba(255, 255, 255, 0.7);
    color: var(--text-dark);
}

.form-control-premium:focus {
    border-color: var(--primary-color);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px var(--border-focus);
}

select.form-control-premium {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 14px;
    padding-right: 45px;
    cursor: pointer;
}

textarea.form-control-premium {
    resize: none;
    min-height: 120px;
}

.form-label-premium {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Beautiful dynamic Success Toast/Modal alerts */
.toast-success-card {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    z-index: 1050;
    background: var(--bg-white);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-radius: var(--border-radius-md);
    padding: 40px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-success-card.active {
    display: block;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.success-icon-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 24px auto;
    position: relative;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.3); }
    70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.success-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(5px);
    z-index: 1040;
}

.success-overlay.active {
    display: block;
}

/* Beautiful dynamic Error Toast/Modal alerts */
.toast-error-card {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    z-index: 1050;
    background: var(--bg-white);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-radius: var(--border-radius-md);
    padding: 40px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-error-card.active {
    display: block;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.error-icon-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(227, 30, 36, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 24px auto;
    position: relative;
    animation: pulse-ring-error 2s infinite;
}

@keyframes pulse-ring-error {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(227, 30, 36, 0.3); }
    70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(227, 30, 36, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(227, 30, 36, 0); }
}


/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-info-panel {
    padding: 40px;
    height: 100%;
}

.contact-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

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

.contact-info-icon-wrapper {
    width: 52px;
    height: 52px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-info-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-info-value {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-info-value a:hover {
    color: var(--primary-color);
}

.map-container-wrapper {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    height: 100%;
    min-height: 350px;
}

.map-container-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================================================
   FLOATING ACTION BUTTONS (WhatsApp / Mail with dynamic ripple pulses)
   ========================================================================== */
.floating-actions-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

@media (max-width: 576px) {
    .floating-actions-container {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 1.6rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
    position: relative;
}

.float-btn::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 1px solid inherit;
    opacity: 0;
    pointer-events: none;
    transform: scale(1);
    transition: var(--transition-smooth);
}

.float-btn:hover {
    transform: scale(1.15) translateY(-5px);
    color: var(--bg-white);
}

.float-whatsapp {
    background-color: #25D366;
}

.float-whatsapp::before {
    border-color: #25D366;
    animation: ripple-pulse 1.8s infinite ease-out;
}

.float-email {
    background-color: var(--primary-color);
}

.float-email::before {
    border-color: var(--primary-color);
    animation: ripple-pulse 1.8s infinite ease-out 0.9s;
}

@keyframes ripple-pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.custom-footer {
    background-color: var(--secondary-color);
    color: rgba(255, 255, 255, 0.85);
    padding-top: 80px;
    padding-bottom: 30px;
    border-top: 5px solid var(--primary-color);
    font-size: 0.9rem;
}

.custom-footer p, 
.custom-footer small, 
.custom-footer span, 
.custom-footer .footer-text {
    color: rgba(255, 255, 255, 0.9) !important; /* Force high-contrast white/light-gray text */
}

.footer-widget-title {
    color: var(--bg-white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-text {
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-links-list {
    list-style: none;
    padding-left: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links-list a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact-details {
    list-style: none;
    padding-left: 0;
}

.footer-contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.75);
}

.footer-contact-details i {
    color: var(--primary-color);
    margin-top: 4px;
    font-size: 1rem;
}

.footer-contact-details a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 50px;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
}

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

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

/* ==========================================================================
   SCROLL ELEMENT ANIMATIONS & MICROS
   ========================================================================== */
.animate-fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-scale-up {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-fade-in.animated,
.animate-scale-up.animated {
    opacity: 1;
    transform: none;
}

/* Delay Utilites for scroll triggers */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* Custom Premium Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-light);
    border: 2px solid var(--bg-light);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* ==========================================================================
   EXTRA MOBILE & RESOLUTION RESPONSIVENESS AUDIT
   ========================================================================== */
@media (max-width: 1200px) {
    .brand-name {
        font-size: 1.15rem;
    }
    .brand-subtitle {
        font-size: 0.6rem;
    }
    .nav-link-premium {
        font-size: 0.85rem;
        padding: 6px 10px !important;
    }
    .nav-link-premium::after {
        left: 10px;
        right: 10px;
    }
}

@media (max-width: 991px) {
    .custom-navbar {
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-bottom: 1px solid var(--border-color);
        padding: 15px 0;
    }
    
    .navbar-collapse {
        background: var(--bg-white);
        border-radius: var(--border-radius-md);
        margin-top: 15px;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--border-color);
    }
    
    .nav-link-premium {
        padding: 10px 15px !important;
        font-size: 1rem;
    }
    
    .nav-link-premium::after {
        display: none; /* Hide hover line on collapsed mobile menu */
    }
    
    .nav-link-premium.active {
        background: var(--primary-light);
        color: var(--primary-color) !important;
    }
    
    .hero-wrapper {
        text-align: center;
        padding-top: 120px;
        padding-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .floating-actions-container {
        bottom: 15px;
        right: 15px;
    }
    .float-btn {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }
    .float-btn::before {
        display: none; /* Remove high-power ripples on tiny mobile screens to save resources */
    }
}
